Skip to content

Commit d243637

Browse files
authored
Upgrade the dependencies (#687)
* Upgrade the dependencies * Upgrade controller-gen to v0.9.2
1 parent 617d80c commit d243637

16 files changed

+242
-368
lines changed

.github/actions/gen-install-scripts/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN cd /usr/local/bin &&\
1515
RUN CONTROLLER_GEN_TMP_DIR=$(mktemp -d) && \
1616
cd $CONTROLLER_GEN_TMP_DIR && \
1717
go mod init tmp && \
18-
go install sigs.k8s.io/controller-tools/cmd/controller-gen@v0.4.1 && \
18+
go install sigs.k8s.io/controller-tools/cmd/controller-gen@v0.9.2 && \
1919
rm -rf $CONTROLLER_GEN_TMP_DIR && \
2020
CONTROLLER_GEN=${GOBIN}/controller-gen
2121

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ generate: controller-gen ## Generate code
149149
.PHONY: controller-gen
150150
CONTROLLER_GEN = $(shell pwd)/bin/controller-gen
151151
controller-gen: ## Download controller-gen locally if necessary
152-
$(call go-get-tool,$(CONTROLLER_GEN),sigs.k8s.io/controller-tools/cmd/controller-gen@v0.4.1)
152+
$(call go-get-tool,$(CONTROLLER_GEN),sigs.k8s.io/controller-tools/cmd/controller-gen@v0.9.2)
153153

154154

155155
.PHONY: kustomize
@@ -269,4 +269,4 @@ post-install-hook:
269269

270270
.PHONY: x509-cert
271271
x509-cert: ## Create X.509 cert at path tmp/x509/ (see docs/x509-user.md)
272-
go run scripts/create_x509.go
272+
go run scripts/create_x509.go

bundle/manifests/atlas.mongodb.com_atlasbackuppolicies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: apiextensions.k8s.io/v1
22
kind: CustomResourceDefinition
33
metadata:
44
annotations:
5-
controller-gen.kubebuilder.io/version: v0.4.1
5+
controller-gen.kubebuilder.io/version: v0.9.2
66
creationTimestamp: null
77
labels:
88
app.kubernetes.io/component: controller

bundle/manifests/atlas.mongodb.com_atlasbackupschedules.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: apiextensions.k8s.io/v1
22
kind: CustomResourceDefinition
33
metadata:
44
annotations:
5-
controller-gen.kubebuilder.io/version: v0.4.1
5+
controller-gen.kubebuilder.io/version: v0.9.2
66
creationTimestamp: null
77
labels:
88
app.kubernetes.io/component: controller

bundle/manifests/atlas.mongodb.com_atlasdatabaseusers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: apiextensions.k8s.io/v1
22
kind: CustomResourceDefinition
33
metadata:
44
annotations:
5-
controller-gen.kubebuilder.io/version: v0.4.1
5+
controller-gen.kubebuilder.io/version: v0.9.2
66
creationTimestamp: null
77
labels:
88
app.kubernetes.io/component: controller

bundle/manifests/atlas.mongodb.com_atlasdeployments.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: apiextensions.k8s.io/v1
22
kind: CustomResourceDefinition
33
metadata:
44
annotations:
5-
controller-gen.kubebuilder.io/version: v0.4.1
5+
controller-gen.kubebuilder.io/version: v0.9.2
66
creationTimestamp: null
77
labels:
88
app.kubernetes.io/component: controller

bundle/manifests/atlas.mongodb.com_atlasprojects.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: apiextensions.k8s.io/v1
22
kind: CustomResourceDefinition
33
metadata:
44
annotations:
5-
controller-gen.kubebuilder.io/version: v0.4.1
5+
controller-gen.kubebuilder.io/version: v0.9.2
66
creationTimestamp: null
77
labels:
88
app.kubernetes.io/component: controller

config/crd/bases/atlas.mongodb.com_atlasbackuppolicies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apiVersion: apiextensions.k8s.io/v1
44
kind: CustomResourceDefinition
55
metadata:
66
annotations:
7-
controller-gen.kubebuilder.io/version: v0.4.1
7+
controller-gen.kubebuilder.io/version: v0.9.2
88
creationTimestamp: null
99
name: atlasbackuppolicies.atlas.mongodb.com
1010
spec:

config/crd/bases/atlas.mongodb.com_atlasbackupschedules.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apiVersion: apiextensions.k8s.io/v1
44
kind: CustomResourceDefinition
55
metadata:
66
annotations:
7-
controller-gen.kubebuilder.io/version: v0.4.1
7+
controller-gen.kubebuilder.io/version: v0.9.2
88
creationTimestamp: null
99
name: atlasbackupschedules.atlas.mongodb.com
1010
spec:

config/crd/bases/atlas.mongodb.com_atlasdatabaseusers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apiVersion: apiextensions.k8s.io/v1
44
kind: CustomResourceDefinition
55
metadata:
66
annotations:
7-
controller-gen.kubebuilder.io/version: v0.4.1
7+
controller-gen.kubebuilder.io/version: v0.9.2
88
creationTimestamp: null
99
name: atlasdatabaseusers.atlas.mongodb.com
1010
spec:

0 commit comments

Comments
 (0)