Skip to content

Commit bf1871d

Browse files
committed
chore: bump vcluster chart version to 0.21.0
1 parent 1229ebf commit bf1871d

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/e2e.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
run: |
114114
export CLUSTER_NAME=vcluster-k3s
115115
export CLUSTER_NAMESPACE=vcluster-k3s
116-
export CHART_VERSION=0.20.0
116+
export CHART_VERSION=0.21.0
117117
export VCLUSTER_YAML=$(cat ./test/e2e/k3s-values.yaml | sed -z 's/\n/\\n/g')
118118
kubectl create namespace ${CLUSTER_NAMESPACE}
119119
cat templates/cluster-template.yaml | ./bin/envsubst | kubectl apply -n ${CLUSTER_NAMESPACE} -f -
@@ -129,7 +129,7 @@ jobs:
129129
run: |
130130
export CLUSTER_NAME=vcluster-k0s
131131
export CLUSTER_NAMESPACE=vcluster-k0s
132-
export CHART_VERSION=0.20.0
132+
export CHART_VERSION=0.21.0
133133
export CHART_NAME=vcluster
134134
export VCLUSTER_YAML=$(cat ./test/e2e/k0s-values.yaml | sed -z 's/\n/\\n/g')
135135
kubectl create namespace ${CLUSTER_NAMESPACE}
@@ -146,7 +146,7 @@ jobs:
146146
run: |
147147
export CLUSTER_NAME=vcluster-k8s
148148
export CLUSTER_NAMESPACE=vcluster-k8s
149-
export CHART_VERSION=0.20.0
149+
export CHART_VERSION=0.21.0
150150
export CHART_NAME=vcluster
151151
export VCLUSTER_YAML=$(cat ./test/e2e/k8s-values.yaml | sed -z 's/\n/\\n/g')
152152
kubectl create namespace ${CLUSTER_NAMESPACE}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ spec:
111111
#
112112
# Please refer to the vcluster Releases page for the list of the available versions:
113113
# https://github.com/loft-sh/vcluster/releases
114-
version: ${CHART_VERSION:=0.20.0}
114+
version: ${CHART_VERSION:=0.21.0}
115115

116116
# controlPlaneEndpoint represents the endpoint used to communicate with the control plane.
117117
# You may leave this field empty, and then CAPVC will try to fill in this information based
@@ -165,7 +165,7 @@ In the example commands below, the VCLUSTER_YAML variable will be populated with
165165
```shell
166166
export CLUSTER_NAME=test
167167
export CLUSTER_NAMESPACE=test
168-
export CHART_VERSION=0.20.0
168+
export CHART_VERSION=0.21.0
169169
export CHART_NAME=vcluster
170170
export VCLUSTER_YAML=$(cat devvalues.yaml | awk '{printf "%s\\n", $0}')
171171
kubectl create namespace ${CLUSTER_NAMESPACE}
@@ -187,7 +187,7 @@ You can specify a custom version of the vCluster Helm chart by setting the CHART
187187
Example:
188188

189189
```shell
190-
export CHART_VERSION=0.20.0
190+
export CHART_VERSION=0.21.0
191191
```
192192

193193
## Specifying custom values for virtual clusters

templates/cluster-template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ spec:
2222
chart:
2323
name: ${CHART_NAME:=vcluster}
2424
repo: ${CHART_REPO:=https://charts.loft.sh}
25-
version: ${CHART_VERSION:=0.20.0}
25+
version: ${CHART_VERSION:=0.21.0}
2626
controlPlaneEndpoint:
2727
host: ${VCLUSTER_HOST:=""}
2828
port: ${VCLUSTER_PORT:=0}

test/controllerstest/controllers_suite_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ var _ = ginkgo.Describe("Vcluster Controller test", func() {
8484
Spec: v1alpha1.VClusterSpec{
8585
HelmRelease: &v1alpha1.VirtualClusterHelmRelease{
8686
Chart: v1alpha1.VirtualClusterHelmChart{
87-
Version: "0.20.0",
87+
Version: "0.21.0",
8888
},
8989
},
9090
},
@@ -141,7 +141,7 @@ var _ = ginkgo.Describe("Vcluster Controller test", func() {
141141
HelmRelease: &v1alpha1.VirtualClusterHelmRelease{
142142
Chart: v1alpha1.VirtualClusterHelmChart{
143143
Name: "vcluster",
144-
Version: "0.20.0",
144+
Version: "0.21.0",
145145
},
146146
Values: string(yamlBytes),
147147
},
@@ -199,7 +199,7 @@ var _ = ginkgo.Describe("Vcluster Controller test", func() {
199199
HelmRelease: &v1alpha1.VirtualClusterHelmRelease{
200200
Chart: v1alpha1.VirtualClusterHelmChart{
201201
Name: "vcluster",
202-
Version: "0.20.0",
202+
Version: "0.21.0",
203203
},
204204
Values: string(yamlBytes),
205205
},

0 commit comments

Comments
 (0)