Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the kustomize CLI version to fix a regression #585

Merged
merged 1 commit into from
May 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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