Skip to content

Commit 8287cad

Browse files
committed
Bump CAAPH to v0.5.2
1 parent e695d87 commit 8287cad

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ KUBECTL_VER := v1.32.2
125125
KUBECTL_BIN := kubectl
126126
KUBECTL := $(TOOLS_BIN_DIR)/$(KUBECTL_BIN)-$(KUBECTL_VER)
127127

128-
HELM_VER := v3.14.4
128+
HELM_VER := v3.19.2
129129
HELM_BIN := helm
130130
HELM := $(TOOLS_BIN_DIR)/$(HELM_BIN)-$(HELM_VER)
131131

@@ -361,7 +361,7 @@ create-management-cluster: $(KUSTOMIZE) $(ENVSUBST) $(KUBECTL) $(KIND) ## Create
361361
timeout --foreground 300 bash -c "until curl --retry $(CURL_RETRIES) -sSL https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.10.7/cluster-api-components.yaml | $(ENVSUBST) | $(KUBECTL) apply -f -; do sleep 5; done"
362362

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

366366
# Deploy CAPZ
367367
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.7",
26-
"caaph_version": "v0.4.1",
26+
"caaph_version": "v0.5.2",
2727
"cert_manager_version": "v1.19.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.7"
124124
infrastructure: "azure:v1.17.2"
125-
addon: "helm:v0.4.1"
125+
addon: "helm:v0.5.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.7
1111
loadBehavior: tryLoad
12-
- name: registry.k8s.io/cluster-api-helm/cluster-api-helm-controller:v0.4.1
12+
- name: registry.k8s.io/cluster-api-helm/cluster-api-helm-controller:v0.5.2
1313
loadBehavior: tryLoad
1414

1515
providers:
@@ -207,8 +207,8 @@ providers:
207207
replacements:
208208
- old: "imagePullPolicy: Always"
209209
new: "imagePullPolicy: IfNotPresent"
210-
- name: v0.4.1
211-
value: https://github.com/kubernetes-sigs/cluster-api-addon-provider-helm/releases/download/v0.4.1/addon-components.yaml
210+
- name: v0.5.2
211+
value: https://github.com/kubernetes-sigs/cluster-api-addon-provider-helm/releases/download/v0.5.2/addon-components.yaml
212212
type: url
213213
contract: v1beta1
214214
files:
@@ -257,7 +257,7 @@ variables:
257257
OLD_PROVIDER_UPGRADE_VERSION: "v1.20.4"
258258
LATEST_PROVIDER_UPGRADE_VERSION: "v1.21.1"
259259
OLD_CAAPH_UPGRADE_VERSION: "v0.1.0-alpha.10"
260-
LATEST_CAAPH_UPGRADE_VERSION: "v0.4.1"
260+
LATEST_CAAPH_UPGRADE_VERSION: "v0.5.2"
261261
CI_RG: "${CI_RG:-capz-ci}"
262262
USER_IDENTITY: "${USER_IDENTITY:-cloud-provider-user-identity}"
263263
EXP_APISERVER_ILB: "true"

0 commit comments

Comments
 (0)