Skip to content

Commit 8e48df5

Browse files
committed
Bump CAAPH to v0.3.2
1 parent 1e22684 commit 8e48df5

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ create-management-cluster: $(KUSTOMIZE) $(ENVSUBST) $(KUBECTL) $(KIND) ## Create
336336
timeout --foreground 300 bash -c "until curl --retry $(CURL_RETRIES) -sSL https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.10.4/cluster-api-components.yaml | $(ENVSUBST) | $(KUBECTL) apply -f -; do sleep 5; done"
337337

338338
# Deploy CAAPH
339-
timeout --foreground 300 bash -c "until curl --retry $(CURL_RETRIES) -sSL https://github.com/kubernetes-sigs/cluster-api-addon-provider-helm/releases/download/v0.2.5/addon-components.yaml | $(ENVSUBST) | $(KUBECTL) apply -f -; do sleep 5; done"
339+
timeout --foreground 300 bash -c "until curl --retry $(CURL_RETRIES) -sSL https://github.com/kubernetes-sigs/cluster-api-addon-provider-helm/releases/download/v0.3.2/addon-components.yaml | $(ENVSUBST) | $(KUBECTL) apply -f -; do sleep 5; done"
340340

341341
# Deploy CAPZ
342342
if [ "$(MGMT_CLUSTER_TYPE)" != "aks" ]; then \

Tiltfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ settings = {
2323
"preload_images_for_kind": True,
2424
"kind_cluster_name": "capz",
2525
"capi_version": "v1.10.4",
26-
"caaph_version": "v0.2.5",
26+
"caaph_version": "v0.3.2",
2727
"cert_manager_version": "v1.18.1",
2828
"kubernetes_version": "v1.32.2",
2929
"aks_kubernetes_version": "v1.30.2",

docs/book/src/developers/getting-started-with-capi-operator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ Create a `values.yaml` file for the CAPI Operator Helm chart like so:
122122
```yaml
123123
core: "cluster-api:v1.10.4"
124124
infrastructure: "azure:v1.17.2"
125-
addon: "helm:v0.2.5"
125+
addon: "helm:v0.3.2"
126126
manager:
127127
featureGates:
128128
core:

test/e2e/config/azure-dev.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ images:
99
loadBehavior: tryLoad
1010
- name: registry.k8s.io/cluster-api/kubeadm-control-plane-controller:v1.10.4
1111
loadBehavior: tryLoad
12-
- name: registry.k8s.io/cluster-api-helm/cluster-api-helm-controller:v0.2.5
12+
- name: registry.k8s.io/cluster-api-helm/cluster-api-helm-controller:v0.3.2
1313
loadBehavior: tryLoad
1414

1515
providers:
@@ -197,8 +197,8 @@ providers:
197197
replacements:
198198
- old: "imagePullPolicy: Always"
199199
new: "imagePullPolicy: IfNotPresent"
200-
- name: v0.2.5
201-
value: https://github.com/kubernetes-sigs/cluster-api-addon-provider-helm/releases/download/v0.2.5/addon-components.yaml
200+
- name: v0.3.2
201+
value: https://github.com/kubernetes-sigs/cluster-api-addon-provider-helm/releases/download/v0.3.2/addon-components.yaml
202202
type: url
203203
contract: v1beta1
204204
files:
@@ -247,7 +247,7 @@ variables:
247247
OLD_PROVIDER_UPGRADE_VERSION: "v1.19.6"
248248
LATEST_PROVIDER_UPGRADE_VERSION: "v1.20.2"
249249
OLD_CAAPH_UPGRADE_VERSION: "v0.1.0-alpha.10"
250-
LATEST_CAAPH_UPGRADE_VERSION: "v0.2.5"
250+
LATEST_CAAPH_UPGRADE_VERSION: "v0.3.2"
251251
CI_RG: "${CI_RG:-capz-ci}"
252252
USER_IDENTITY: "${USER_IDENTITY:-cloud-provider-user-identity}"
253253
EXP_APISERVER_ILB: "true"

test/e2e/data/shared/v1beta1_addon_provider/metadata.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
apiVersion: clusterctl.cluster.x-k8s.io/v1alpha3
22
releaseSeries:
3+
- major: 0
4+
minor: 3
5+
contract: v1beta1
36
- major: 0
47
minor: 2
58
contract: v1beta1

0 commit comments

Comments
 (0)