Skip to content

Commit

Permalink
Bump the kustomize CLI version to fix a regression (#585)
Browse files Browse the repository at this point in the history
Kustomize v5.0.2 breaks helmCharts with chartHome option. This commit
updates the version to address the issue.

More context: kubernetes-sigs/kustomize#5163
  • Loading branch information
nan-yu authored May 9, 2023
1 parent 34b8af9 commit e7008e1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion build/all/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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" && \
Expand Down
2 changes: 1 addition & 1 deletion build/test-e2e-go/gke/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion build/test-e2e-go/kind/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion pkg/hydrate/tool_util.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit e7008e1

Please sign in to comment.