Skip to content
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 @@ -361,7 +361,7 @@ create-management-cluster: $(KUSTOMIZE) $(ENVSUBST) $(KUBECTL) $(KIND) ## Create
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"

# Deploy CAAPH
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.0/addon-components.yaml | $(ENVSUBST) | $(KUBECTL) apply -f -; do sleep 5; done"
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"

# Deploy CAPZ
if [ "$(MGMT_CLUSTER_TYPE)" != "aks" ]; then \
Expand Down
2 changes: 1 addition & 1 deletion Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ settings = {
"preload_images_for_kind": True,
"kind_cluster_name": "capz",
"capi_version": "v1.10.4",
"caaph_version": "v0.4.0",
"caaph_version": "v0.4.1",
"cert_manager_version": "v1.18.1",
"kubernetes_version": "v1.32.2",
"aks_kubernetes_version": "v1.30.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ Create a `values.yaml` file for the CAPI Operator Helm chart like so:
```yaml
core: "cluster-api:v1.10.4"
infrastructure: "azure:v1.17.2"
addon: "helm:v0.4.0"
addon: "helm:v0.4.1"
manager:
featureGates:
core:
Expand Down
8 changes: 4 additions & 4 deletions test/e2e/config/azure-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ images:
loadBehavior: tryLoad
- name: registry.k8s.io/cluster-api/kubeadm-control-plane-controller:v1.10.4
loadBehavior: tryLoad
- name: registry.k8s.io/cluster-api-helm/cluster-api-helm-controller:v0.4.0
- name: registry.k8s.io/cluster-api-helm/cluster-api-helm-controller:v0.4.1
loadBehavior: tryLoad

providers:
Expand Down Expand Up @@ -205,8 +205,8 @@ providers:
replacements:
- old: "imagePullPolicy: Always"
new: "imagePullPolicy: IfNotPresent"
- name: v0.4.0
value: https://github.com/kubernetes-sigs/cluster-api-addon-provider-helm/releases/download/v0.4.0/addon-components.yaml
- name: v0.4.1
value: https://github.com/kubernetes-sigs/cluster-api-addon-provider-helm/releases/download/v0.4.1/addon-components.yaml
type: url
contract: v1beta1
files:
Expand Down Expand Up @@ -255,7 +255,7 @@ variables:
OLD_PROVIDER_UPGRADE_VERSION: "v1.19.6"
LATEST_PROVIDER_UPGRADE_VERSION: "v1.20.2"
OLD_CAAPH_UPGRADE_VERSION: "v0.1.0-alpha.10"
LATEST_CAAPH_UPGRADE_VERSION: "v0.4.0"
LATEST_CAAPH_UPGRADE_VERSION: "v0.4.1"
CI_RG: "${CI_RG:-capz-ci}"
USER_IDENTITY: "${USER_IDENTITY:-cloud-provider-user-identity}"
EXP_APISERVER_ILB: "true"
Expand Down