Skip to content

Commit 04d1944

Browse files
authored
Merge branch 'kubernetes-sigs:master' into master
2 parents 6d43456 + 066749d commit 04d1944

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

cmd/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const unknown = "unknown"
2727
// information in the release process
2828
var (
2929
kubeBuilderVersion = unknown
30-
kubernetesVendorVersion = unknown
30+
kubernetesVendorVersion = "1.32.1"
3131
goos = unknown
3232
goarch = unknown
3333
gitCommit = "$Format:%H$" // sha1 from git, output of $(git rev-parse HEAD)

docs/book/src/cronjob-tutorial/testdata/project/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ ENVTEST ?= $(LOCALBIN)/setup-envtest
176176
GOLANGCI_LINT = $(LOCALBIN)/golangci-lint
177177

178178
## Tool Versions
179-
KUSTOMIZE_VERSION ?= v5.5.0
179+
KUSTOMIZE_VERSION ?= v5.6.0
180180
CONTROLLER_TOOLS_VERSION ?= v0.17.2
181181
#ENVTEST_VERSION is the version of controller-runtime release branch to fetch the envtest setup script (i.e. release-0.20)
182182
ENVTEST_VERSION ?= $(shell go list -m -f "{{ .Version }}" sigs.k8s.io/controller-runtime | awk -F'[v.]' '{printf "release-%d.%d", $$2, $$3}')

docs/book/src/getting-started/testdata/project/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ ENVTEST ?= $(LOCALBIN)/setup-envtest
172172
GOLANGCI_LINT = $(LOCALBIN)/golangci-lint
173173

174174
## Tool Versions
175-
KUSTOMIZE_VERSION ?= v5.5.0
175+
KUSTOMIZE_VERSION ?= v5.6.0
176176
CONTROLLER_TOOLS_VERSION ?= v0.17.2
177177
#ENVTEST_VERSION is the version of controller-runtime release branch to fetch the envtest setup script (i.e. release-0.20)
178178
ENVTEST_VERSION ?= $(shell go list -m -f "{{ .Version }}" sigs.k8s.io/controller-runtime | awk -F'[v.]' '{printf "release-%d.%d", $$2, $$3}')

docs/book/src/multiversion-tutorial/testdata/project/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ ENVTEST ?= $(LOCALBIN)/setup-envtest
176176
GOLANGCI_LINT = $(LOCALBIN)/golangci-lint
177177

178178
## Tool Versions
179-
KUSTOMIZE_VERSION ?= v5.5.0
179+
KUSTOMIZE_VERSION ?= v5.6.0
180180
CONTROLLER_TOOLS_VERSION ?= v0.17.2
181181
#ENVTEST_VERSION is the version of controller-runtime release branch to fetch the envtest setup script (i.e. release-0.20)
182182
ENVTEST_VERSION ?= $(shell go list -m -f "{{ .Version }}" sigs.k8s.io/controller-runtime | awk -F'[v.]' '{printf "release-%d.%d", $$2, $$3}')

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ godebug default=go1.23
66

77
require (
88
github.com/gobuffalo/flect v1.0.3
9-
github.com/onsi/ginkgo/v2 v2.23.0
9+
github.com/onsi/ginkgo/v2 v2.23.1
1010
github.com/onsi/gomega v1.36.2
1111
github.com/sirupsen/logrus v1.9.3
1212
github.com/spf13/afero v1.14.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
2424
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
2525
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
2626
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
27-
github.com/onsi/ginkgo/v2 v2.23.0 h1:FA1xjp8ieYDzlgS5ABTpdUDB7wtngggONc8a7ku2NqQ=
28-
github.com/onsi/ginkgo/v2 v2.23.0/go.mod h1:zXTP6xIp3U8aVuXN8ENK9IXRaTjFnpVB9mGmaSRvxnM=
27+
github.com/onsi/ginkgo/v2 v2.23.1 h1:Ox0cOPv/t8RzKJUfDo9ZKtRvBOJY369sFJnl00CjqwY=
28+
github.com/onsi/ginkgo/v2 v2.23.1/go.mod h1:zXTP6xIp3U8aVuXN8ENK9IXRaTjFnpVB9mGmaSRvxnM=
2929
github.com/onsi/gomega v1.36.2 h1:koNYke6TVk6ZmnyHrCXba/T/MoLBXFjeC1PtvYgw0A8=
3030
github.com/onsi/gomega v1.36.2/go.mod h1:DdwyADRjrc825LhMEkD76cHR5+pUnjhUN8GlHlRPHzY=
3131
github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA=

pkg/plugins/common/kustomize/v2/plugin.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
)
2626

2727
// KustomizeVersion is the kubernetes-sigs/kustomize version to be used in the project
28-
const KustomizeVersion = "v5.5.0"
28+
const KustomizeVersion = "v5.6.0"
2929

3030
const pluginName = "kustomize.common." + plugins.DefaultNameQualifier
3131

testdata/project-v4-multigroup/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ ENVTEST ?= $(LOCALBIN)/setup-envtest
172172
GOLANGCI_LINT = $(LOCALBIN)/golangci-lint
173173

174174
## Tool Versions
175-
KUSTOMIZE_VERSION ?= v5.5.0
175+
KUSTOMIZE_VERSION ?= v5.6.0
176176
CONTROLLER_TOOLS_VERSION ?= v0.17.2
177177
#ENVTEST_VERSION is the version of controller-runtime release branch to fetch the envtest setup script (i.e. release-0.20)
178178
ENVTEST_VERSION ?= $(shell go list -m -f "{{ .Version }}" sigs.k8s.io/controller-runtime | awk -F'[v.]' '{printf "release-%d.%d", $$2, $$3}')

testdata/project-v4-with-plugins/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ ENVTEST ?= $(LOCALBIN)/setup-envtest
172172
GOLANGCI_LINT = $(LOCALBIN)/golangci-lint
173173

174174
## Tool Versions
175-
KUSTOMIZE_VERSION ?= v5.5.0
175+
KUSTOMIZE_VERSION ?= v5.6.0
176176
CONTROLLER_TOOLS_VERSION ?= v0.17.2
177177
#ENVTEST_VERSION is the version of controller-runtime release branch to fetch the envtest setup script (i.e. release-0.20)
178178
ENVTEST_VERSION ?= $(shell go list -m -f "{{ .Version }}" sigs.k8s.io/controller-runtime | awk -F'[v.]' '{printf "release-%d.%d", $$2, $$3}')

testdata/project-v4/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ ENVTEST ?= $(LOCALBIN)/setup-envtest
172172
GOLANGCI_LINT = $(LOCALBIN)/golangci-lint
173173

174174
## Tool Versions
175-
KUSTOMIZE_VERSION ?= v5.5.0
175+
KUSTOMIZE_VERSION ?= v5.6.0
176176
CONTROLLER_TOOLS_VERSION ?= v0.17.2
177177
#ENVTEST_VERSION is the version of controller-runtime release branch to fetch the envtest setup script (i.e. release-0.20)
178178
ENVTEST_VERSION ?= $(shell go list -m -f "{{ .Version }}" sigs.k8s.io/controller-runtime | awk -F'[v.]' '{printf "release-%d.%d", $$2, $$3}')

0 commit comments

Comments
 (0)