Skip to content

Commit 9663fb3

Browse files
authored
Merge pull request #1838 from estroz/feature/kustomize-3.8
✨ go/v3-alpha: bump KustomizeVersion to v3.8.7
2 parents d26d651 + b8347b0 commit 9663fb3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

pkg/plugins/golang/v3/scaffolds/init.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const (
4040
// ControllerToolsVersion is the kubernetes-sigs/controller-tools version to be used in the project
4141
ControllerToolsVersion = "v0.4.1"
4242
// KustomizeVersion is the kubernetes-sigs/kustomize version to be used in the project
43-
KustomizeVersion = "v3.5.4"
43+
KustomizeVersion = "v3.8.7"
4444

4545
imageName = "controller:latest"
4646
)

testdata/project-v3-addon/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ controller-gen:
7777
# Download kustomize locally if necessary
7878
KUSTOMIZE = $(shell pwd)/bin/kustomize
7979
kustomize:
80-
$(call go-get-tool,$(KUSTOMIZE),sigs.k8s.io/kustomize/kustomize/v3@v3.5.4)
80+
$(call go-get-tool,$(KUSTOMIZE),sigs.k8s.io/kustomize/kustomize/v3@v3.8.7)
8181

8282
# go-get-tool will 'go get' any package $2 and install it to $1.
8383
PROJECT_DIR := $(shell dirname $(abspath $(lastword $(MAKEFILE_LIST))))

testdata/project-v3-multigroup/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ controller-gen:
7777
# Download kustomize locally if necessary
7878
KUSTOMIZE = $(shell pwd)/bin/kustomize
7979
kustomize:
80-
$(call go-get-tool,$(KUSTOMIZE),sigs.k8s.io/kustomize/kustomize/v3@v3.5.4)
80+
$(call go-get-tool,$(KUSTOMIZE),sigs.k8s.io/kustomize/kustomize/v3@v3.8.7)
8181

8282
# go-get-tool will 'go get' any package $2 and install it to $1.
8383
PROJECT_DIR := $(shell dirname $(abspath $(lastword $(MAKEFILE_LIST))))

testdata/project-v3/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ controller-gen:
7777
# Download kustomize locally if necessary
7878
KUSTOMIZE = $(shell pwd)/bin/kustomize
7979
kustomize:
80-
$(call go-get-tool,$(KUSTOMIZE),sigs.k8s.io/kustomize/kustomize/v3@v3.5.4)
80+
$(call go-get-tool,$(KUSTOMIZE),sigs.k8s.io/kustomize/kustomize/v3@v3.8.7)
8181

8282
# go-get-tool will 'go get' any package $2 and install it to $1.
8383
PROJECT_DIR := $(shell dirname $(abspath $(lastword $(MAKEFILE_LIST))))

0 commit comments

Comments
 (0)