Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/app/install_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func TestInstallCommandHelp(t *testing.T) {

// Test that help contains expected content
assert.Contains(t, cmd.Short, "Install ArgoCD")
assert.Contains(t, cmd.Long, "ArgoCD (version 10.1.3)")
assert.Contains(t, cmd.Long, "ArgoCD (version 10.1.4)")
assert.Contains(t, cmd.Long, "openframe app install")
assert.Contains(t, cmd.Long, "openframe app install my-cluster")
}
Expand Down
2 changes: 1 addition & 1 deletion internal/chart/providers/argocd/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const (
ArgoCDNamespace = "argocd"
ArgoCDReleaseName = "argo-cd"
ArgoCDChartRef = "argo/argo-cd"
ArgoCDChartVersion = "10.1.3"
ArgoCDChartVersion = "10.1.4"
ArgoHelmRepoURL = "https://argoproj.github.io/argo-helm"
)

Expand Down
2 changes: 1 addition & 1 deletion internal/chart/providers/helm/manager_args_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ func TestArgoCDInstallArgs(t *testing.T) {

for _, want := range []string{
"upgrade --install argo-cd argo/argo-cd",
"--version=10.1.3",
"--version=10.1.4",
"--namespace argocd",
"--create-namespace",
"--wait",
Expand Down