Skip to content

Commit 017be24

Browse files
committed
Update to latest Argo CD
1 parent 22be9f6 commit 017be24

File tree

7 files changed

+15
-6
lines changed

7 files changed

+15
-6
lines changed

cluster-agent/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.19
44

55
require (
66
github.com/argoproj-labs/argocd-operator v0.5.0
7-
github.com/argoproj/argo-cd/v2 v2.8.3
7+
github.com/argoproj/argo-cd/v2 v2.8.8
88
github.com/argoproj/gitops-engine v0.7.1-0.20230607163028-425d65e07695
99
github.com/coreos/go-oidc/v3 v3.6.0
1010
github.com/go-logr/logr v1.3.0

cluster-agent/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kd
9393
github.com/antlr/antlr4/runtime/Go/antlr v0.0.0-20210826220005-b48c857c3a0e/go.mod h1:F7bn7fEU90QkQ3tnmaTx3LTKLEDqnwWODIYppRQ5hnY=
9494
github.com/argoproj-labs/argocd-operator v0.5.0 h1:dJIjEL4uy/H5PKf75AqTkNQctfXESy6ctRTwMnokxIQ=
9595
github.com/argoproj-labs/argocd-operator v0.5.0/go.mod h1:/sMLNAq4teuLSbAx/+pMBZM7ENLsXxrLjsG7E8NcSGI=
96-
github.com/argoproj/argo-cd/v2 v2.8.3 h1:ybJ7eNoP7/u5Vqncais6WeVRBEGmZmriAIwLEKmWHIA=
97-
github.com/argoproj/argo-cd/v2 v2.8.3/go.mod h1:Pkw7r6HKh5k/5Ynl4MvwCG79ktYBk+7PbJxCjXSlT30=
96+
github.com/argoproj/argo-cd/v2 v2.8.8 h1:nqHLdAkx55W3W9JyugGvcQuTU/P47hXzogIZoS77AUI=
97+
github.com/argoproj/argo-cd/v2 v2.8.8/go.mod h1:3CwkG1Grwn5WPNnkPFmHhwpH1j3LIK64j4TUqFxzq+4=
9898
github.com/argoproj/gitops-engine v0.7.1-0.20230607163028-425d65e07695 h1:w8OPbqHyhWxLyC4LZgs5JBUe7AOkJpNZqFa92yy7Kmc=
9999
github.com/argoproj/gitops-engine v0.7.1-0.20230607163028-425d65e07695/go.mod h1:WpA/B7tgwfz+sdNE3LqrTrb7ArEY1FOPI2pAGI0hfPc=
100100
github.com/argoproj/pkg v0.13.7-0.20230627120311-a4dd357b057e h1:kuLQvJqwwRMQTheT4MFyKVM8Txncu21CHT4yBWUl1Mk=

cluster-agent/utils/argocd_login_credentials_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ var _ = Describe("ArgoCD Login Credentials", func() {
3636
Name: "openshift-gitops-cluster",
3737
Namespace: "openshift-gitops",
3838
},
39+
Type: "Opaque",
3940
Data: map[string][]byte{
4041
"admin.password": []byte("a1Y4c0RvdkgxcHFPUTNJYWxSaDRubXlaZ3c3QUJGcmQ="),
4142
},

cluster-agent/utils/argocd_sync_command_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ var _ = Describe("ArgoCD AppSync Command", func() {
5959
Name: "openshift-gitops-cluster",
6060
Namespace: "openshift-gitops",
6161
},
62+
Type: "Opaque",
6263
Data: map[string][]byte{
6364
"admin.password": []byte("a1Y4c0RvdkgxcHFPUTNJYWxSaDRubXlaZ3c3QUJGcmQ="),
6465
},

cluster-agent/utils/utils_suite_test.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,15 @@ import (
55

66
. "github.com/onsi/ginkgo/v2"
77
. "github.com/onsi/gomega"
8+
"go.uber.org/zap/zapcore"
9+
logf "sigs.k8s.io/controller-runtime/pkg/log"
10+
"sigs.k8s.io/controller-runtime/pkg/log/zap"
811
)
912

13+
var _ = BeforeSuite(func() {
14+
logf.SetLogger(zap.New(zap.WriteTo(GinkgoWriter), zap.UseDevMode(true), zap.Level(zapcore.DebugLevel)))
15+
})
16+
1017
func TestUtils(t *testing.T) {
1118
RegisterFailHandler(Fail)
1219
RunSpecs(t, "Utils Suite")

utilities/load-test/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/redhat-appstudio/managed-gitops/utilities/load-test
33
go 1.19
44

55
require (
6-
github.com/argoproj/argo-cd/v2 v2.8.3
6+
github.com/argoproj/argo-cd/v2 v2.8.8
77
github.com/onsi/ginkgo/v2 v2.11.0
88
github.com/onsi/gomega v1.27.10
99
github.com/redhat-appstudio/managed-gitops/backend-shared v0.0.0

utilities/load-test/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kd
8282
github.com/antlr/antlr4/runtime/Go/antlr v0.0.0-20210826220005-b48c857c3a0e/go.mod h1:F7bn7fEU90QkQ3tnmaTx3LTKLEDqnwWODIYppRQ5hnY=
8383
github.com/argoproj-labs/argocd-operator v0.5.0 h1:dJIjEL4uy/H5PKf75AqTkNQctfXESy6ctRTwMnokxIQ=
8484
github.com/argoproj-labs/argocd-operator v0.5.0/go.mod h1:/sMLNAq4teuLSbAx/+pMBZM7ENLsXxrLjsG7E8NcSGI=
85-
github.com/argoproj/argo-cd/v2 v2.8.3 h1:ybJ7eNoP7/u5Vqncais6WeVRBEGmZmriAIwLEKmWHIA=
86-
github.com/argoproj/argo-cd/v2 v2.8.3/go.mod h1:Pkw7r6HKh5k/5Ynl4MvwCG79ktYBk+7PbJxCjXSlT30=
85+
github.com/argoproj/argo-cd/v2 v2.8.8 h1:nqHLdAkx55W3W9JyugGvcQuTU/P47hXzogIZoS77AUI=
86+
github.com/argoproj/argo-cd/v2 v2.8.8/go.mod h1:3CwkG1Grwn5WPNnkPFmHhwpH1j3LIK64j4TUqFxzq+4=
8787
github.com/argoproj/gitops-engine v0.7.1-0.20230607163028-425d65e07695 h1:w8OPbqHyhWxLyC4LZgs5JBUe7AOkJpNZqFa92yy7Kmc=
8888
github.com/argoproj/gitops-engine v0.7.1-0.20230607163028-425d65e07695/go.mod h1:WpA/B7tgwfz+sdNE3LqrTrb7ArEY1FOPI2pAGI0hfPc=
8989
github.com/argoproj/pkg v0.13.7-0.20230627120311-a4dd357b057e h1:kuLQvJqwwRMQTheT4MFyKVM8Txncu21CHT4yBWUl1Mk=

0 commit comments

Comments
 (0)