diff --git a/Makefile b/Makefile index d300bb93c9..c2d0bb778d 100644 --- a/Makefile +++ b/Makefile @@ -35,7 +35,7 @@ GO_DIR := $(OUTPUT_DIR)/go # Directory containing installed go binaries. BIN_DIR := $(GO_DIR)/bin -KUSTOMIZE_VERSION := v5.0.2 +KUSTOMIZE_VERSION := v5.0.3 HELM_VERSION := v3.11.3 # Directory used for staging Docker contexts. diff --git a/build/all/Dockerfile b/build/all/Dockerfile index 43af8ea447..0f24027188 100644 --- a/build/all/Dockerfile +++ b/build/all/Dockerfile @@ -24,7 +24,7 @@ ARG VERSION ARG HELM_INFLATOR_FUNCTION_VERSION=v0.3.0 ARG HELM_VERSION=v3.11.3 -ARG KUSTOMIZE_VERSION=v5.0.2 +ARG KUSTOMIZE_VERSION=v5.0.3 # Install Helm with license RUN URL="https://get.helm.sh/helm-${HELM_VERSION}-linux-amd64.tar.gz" && \ diff --git a/build/test-e2e-go/gke/Dockerfile b/build/test-e2e-go/gke/Dockerfile index b5ccff85af..d93aebe4a4 100644 --- a/build/test-e2e-go/gke/Dockerfile +++ b/build/test-e2e-go/gke/Dockerfile @@ -30,7 +30,7 @@ RUN apk add --no-cache \ bash curl docker gcc git jq make openssh-client python3 diffutils ARG HELM_VERSION=v3.11.3 -ARG KUSTOMIZE_VERSION=v5.0.2 +ARG KUSTOMIZE_VERSION=v5.0.3 ARG HELM_INFLATOR_FUNCTION_VERSION=v0.3.0 # Install the render-helm-chart function. diff --git a/build/test-e2e-go/kind/Dockerfile b/build/test-e2e-go/kind/Dockerfile index 86ddcbb22f..e29363a814 100644 --- a/build/test-e2e-go/kind/Dockerfile +++ b/build/test-e2e-go/kind/Dockerfile @@ -30,7 +30,7 @@ RUN apk add --no-cache \ bash curl docker gcc git jq make openssh-client python3 diffutils ARG HELM_VERSION=v3.11.3 -ARG KUSTOMIZE_VERSION=v5.0.2 +ARG KUSTOMIZE_VERSION=v5.0.3 ARG HELM_INFLATOR_FUNCTION_VERSION=v0.3.0 # Install the render-helm-chart function. diff --git a/pkg/hydrate/tool_util.go b/pkg/hydrate/tool_util.go index c2ecdaf499..20f1189bce 100644 --- a/pkg/hydrate/tool_util.go +++ b/pkg/hydrate/tool_util.go @@ -45,7 +45,7 @@ const ( // HelmVersion is the recommended version of Helm for hydration. HelmVersion = "v3.11.3" // KustomizeVersion is the recommended version of Kustomize for hydration. - KustomizeVersion = "v5.0.2" + KustomizeVersion = "v5.0.3" // Helm is the binary name of the installed Helm. Helm = "helm" // Kustomize is the binary name of the installed Kustomize.