Skip to content

Commit 53c0c03

Browse files
authored
✨ Use helm chart in ocm repo to deploy (#449)
* Use helm chart in ocm repo to deploy Signed-off-by: Jian Qiu <[email protected]> * Add bootstrap sa back Signed-off-by: Jian Qiu <[email protected]> * Chart update Signed-off-by: Jian Qiu <[email protected]> * Fix bundle version Signed-off-by: Jian Qiu <[email protected]> --------- Signed-off-by: Jian Qiu <[email protected]>
1 parent 5b2cc49 commit 53c0c03

File tree

993 files changed

+42796
-68704
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

993 files changed

+42796
-68704
lines changed

go.mod

Lines changed: 40 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module open-cluster-management.io/clusteradm
22

3-
go 1.22.0
4-
5-
toolchain go1.22.5
3+
go 1.22.6
64

75
require (
86
github.com/briandowns/spinner v1.23.0
@@ -12,31 +10,32 @@ require (
1210
github.com/gofrs/flock v0.8.1
1311
github.com/google/uuid v1.6.0
1412
github.com/jonboulle/clockwork v0.4.0
15-
github.com/onsi/ginkgo/v2 v2.16.0
16-
github.com/onsi/gomega v1.31.1
17-
github.com/openshift/library-go v0.0.0-20240305144041-18ee8279b4e3
13+
github.com/onsi/ginkgo/v2 v2.20.0
14+
github.com/onsi/gomega v1.34.1
15+
github.com/openshift/library-go v0.0.0-20240621150525-4bb4238aef81
1816
github.com/pkg/errors v0.9.1
19-
github.com/spf13/cobra v1.8.0
17+
github.com/spf13/cobra v1.8.1
2018
github.com/spf13/pflag v1.0.5
21-
google.golang.org/grpc v1.62.1
19+
google.golang.org/grpc v1.65.0
2220
gopkg.in/yaml.v2 v2.4.0
2321
helm.sh/helm/v3 v3.15.3
24-
k8s.io/api v0.30.0
25-
k8s.io/apiextensions-apiserver v0.30.0
26-
k8s.io/apimachinery v0.30.0
22+
k8s.io/api v0.30.3
23+
k8s.io/apiextensions-apiserver v0.30.3
24+
k8s.io/apimachinery v0.30.3
2725
k8s.io/cli-runtime v0.30.0
28-
k8s.io/client-go v0.30.0
29-
k8s.io/component-base v0.30.0
30-
k8s.io/klog/v2 v2.120.1
26+
k8s.io/client-go v0.30.3
27+
k8s.io/component-base v0.30.3
28+
k8s.io/klog/v2 v2.130.1
3129
k8s.io/kubectl v0.30.0
3230
k8s.io/utils v0.0.0-20240310230437-4693a0247e57
33-
open-cluster-management.io/api v0.14.0
31+
open-cluster-management.io/api v0.14.1-0.20240627145512-bd6f2229b53c
3432
open-cluster-management.io/cluster-proxy v0.4.0
3533
open-cluster-management.io/managed-serviceaccount v0.6.0
36-
open-cluster-management.io/sdk-go v0.14.0
34+
open-cluster-management.io/ocm v0.14.1-0.20240830005001-41c9196e5418
35+
open-cluster-management.io/sdk-go v0.14.1-0.20240628095929-9ffb1b19e566
3736
sigs.k8s.io/apiserver-network-proxy v0.29.0
3837
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.29.0
39-
sigs.k8s.io/controller-runtime v0.17.2
38+
sigs.k8s.io/controller-runtime v0.18.5
4039
sigs.k8s.io/kustomize/kyaml v0.16.0
4140
)
4241

@@ -53,7 +52,7 @@ require (
5352
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
5453
github.com/beorn7/perks v1.0.1 // indirect
5554
github.com/blang/semver/v4 v4.0.0 // indirect
56-
github.com/cespare/xxhash/v2 v2.2.0 // indirect
55+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
5756
github.com/chai2010/gettext-go v1.0.2 // indirect
5857
github.com/containerd/containerd v1.7.12 // indirect
5958
github.com/containerd/log v0.1.0 // indirect
@@ -67,28 +66,28 @@ require (
6766
github.com/docker/go-connections v0.5.0 // indirect
6867
github.com/docker/go-metrics v0.0.1 // indirect
6968
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
70-
github.com/evanphx/json-patch v5.7.0+incompatible // indirect
71-
github.com/evanphx/json-patch/v5 v5.8.0 // indirect
69+
github.com/evanphx/json-patch v5.9.0+incompatible // indirect
70+
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
7271
github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d // indirect
7372
github.com/fatih/camelcase v1.0.0 // indirect
74-
github.com/felixge/httpsnoop v1.0.3 // indirect
73+
github.com/felixge/httpsnoop v1.0.4 // indirect
7574
github.com/fvbommel/sortorder v1.1.0 // indirect
7675
github.com/go-errors/errors v1.4.2 // indirect
7776
github.com/go-gorp/gorp/v3 v3.1.0 // indirect
78-
github.com/go-logr/logr v1.4.1 // indirect
77+
github.com/go-logr/logr v1.4.2 // indirect
7978
github.com/go-logr/stdr v1.2.2 // indirect
8079
github.com/go-openapi/jsonpointer v0.19.6 // indirect
8180
github.com/go-openapi/jsonreference v0.20.2 // indirect
8281
github.com/go-openapi/swag v0.22.3 // indirect
83-
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
82+
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
8483
github.com/gobwas/glob v0.2.3 // indirect
8584
github.com/gogo/protobuf v1.3.2 // indirect
8685
github.com/golang/protobuf v1.5.4 // indirect
8786
github.com/google/btree v1.0.1 // indirect
8887
github.com/google/gnostic-models v0.6.8 // indirect
8988
github.com/google/go-cmp v0.6.0 // indirect
9089
github.com/google/gofuzz v1.2.0 // indirect
91-
github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1 // indirect
90+
github.com/google/pprof v0.0.0-20240727154555-813a5fbdbec8 // indirect
9291
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
9392
github.com/gorilla/mux v1.8.0 // indirect
9493
github.com/gorilla/websocket v1.5.1 // indirect
@@ -124,7 +123,7 @@ require (
124123
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
125124
github.com/opencontainers/go-digest v1.0.0 // indirect
126125
github.com/opencontainers/image-spec v1.1.0-rc6 // indirect
127-
github.com/openshift/api v0.0.0-20231218131639-7a5aa77cc72d // indirect
126+
github.com/openshift/api v0.0.0-20240527133614-ba11c1587003 // indirect
128127
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
129128
github.com/prometheus/client_golang v1.19.0 // indirect
130129
github.com/prometheus/client_model v0.5.0 // indirect
@@ -139,26 +138,26 @@ require (
139138
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
140139
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
141140
github.com/xlab/treeprint v1.2.0 // indirect
142-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 // indirect
143-
go.opentelemetry.io/otel v1.19.0 // indirect
144-
go.opentelemetry.io/otel/metric v1.19.0 // indirect
145-
go.opentelemetry.io/otel/trace v1.19.0 // indirect
141+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 // indirect
142+
go.opentelemetry.io/otel v1.28.0 // indirect
143+
go.opentelemetry.io/otel/metric v1.28.0 // indirect
144+
go.opentelemetry.io/otel/trace v1.28.0 // indirect
146145
go.starlark.net v0.0.0-20230525235612-a134d8f9ddca // indirect
147-
golang.org/x/crypto v0.21.0 // indirect
148-
golang.org/x/net v0.23.0 // indirect
149-
golang.org/x/oauth2 v0.16.0 // indirect
150-
golang.org/x/sync v0.6.0 // indirect
151-
golang.org/x/sys v0.18.0 // indirect
152-
golang.org/x/term v0.18.0 // indirect
153-
golang.org/x/text v0.14.0 // indirect
146+
golang.org/x/crypto v0.26.0 // indirect
147+
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
148+
golang.org/x/net v0.28.0 // indirect
149+
golang.org/x/oauth2 v0.20.0 // indirect
150+
golang.org/x/sync v0.8.0 // indirect
151+
golang.org/x/sys v0.23.0 // indirect
152+
golang.org/x/term v0.23.0 // indirect
153+
golang.org/x/text v0.17.0 // indirect
154154
golang.org/x/time v0.3.0 // indirect
155-
golang.org/x/tools v0.18.0 // indirect
156-
google.golang.org/appengine v1.6.8 // indirect
157-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 // indirect
158-
google.golang.org/protobuf v1.33.0 // indirect
155+
golang.org/x/tools v0.24.0 // indirect
156+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094 // indirect
157+
google.golang.org/protobuf v1.34.2 // indirect
159158
gopkg.in/inf.v0 v0.9.1 // indirect
160159
gopkg.in/yaml.v3 v3.0.1 // indirect
161-
k8s.io/apiserver v0.30.0 // indirect
160+
k8s.io/apiserver v0.30.3 // indirect
162161
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
163162
oras.land/oras-go v1.2.5 // indirect
164163
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect

0 commit comments

Comments
 (0)