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

PPD-1435: Upgrade CAPVC to v0.18.1 #29

Merged
merged 1 commit into from
Nov 25, 2024
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
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ BUILD_ARGS = --build-arg CRYPTO_LIB=${FIPS_ENABLE} --build-arg BUILDER_GOLANG_VE
ENVTEST_K8S_VERSION = 1.23
# HELM_VERSION = 3.12.0
HELM_VERSION = 3.11.2-20230627
VCLUSTER_CHART_VERSION = 0.16.4
VCLUSTER_CHART_VERSION = 0.18.1

# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
ifeq (,$(shell go env GOBIN))
Expand Down Expand Up @@ -187,4 +187,5 @@ HELM=$(BIN_DIR)/helm-$(GOOS)-$(GOARCH)
.PHONY: download-chart
download-chart: bin-dir ## Download vcluster chart
helm repo add loft https://charts.loft.sh
helm pull loft/vcluster --version $(VCLUSTER_CHART_VERSION) -d $(CHARTS_DIR)
helm pull loft/vcluster --version $(VCLUSTER_CHART_VERSION) -d $(CHARTS_DIR)
helm pull loft/vcluster-k8s --version $(VCLUSTER_CHART_VERSION) -d $(CHARTS_DIR)
Binary file added charts/vcluster-0.18.1.tgz
Binary file not shown.
Binary file added charts/vcluster-k8s-0.18.1.tgz
Binary file not shown.
2 changes: 1 addition & 1 deletion pkg/constants/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import "os"

var (
// DefaultVClusterVersion is the default version of the virtual cluster to use
DefaultVClusterVersion = "0.16.4"
DefaultVClusterVersion = "0.18.1"

// DefaultVClusterChartName is the default chart name of the virtual cluster to use
DefaultVClusterChartName = "vcluster"
Expand Down