Skip to content

Commit

Permalink
Update CAPI to v1.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mboersma committed Sep 26, 2023
1 parent e246d4b commit 89218fc
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ create-management-cluster: $(KUSTOMIZE) $(ENVSUBST) $(KUBECTL) $(KIND) ## Create
./hack/create-custom-cloud-provider-config.sh

# Deploy CAPI
curl --retry $(CURL_RETRIES) -sSL https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.4.6/cluster-api-components.yaml | $(ENVSUBST) | $(KUBECTL) apply -f -
curl --retry $(CURL_RETRIES) -sSL https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.4.7/cluster-api-components.yaml | $(ENVSUBST) | $(KUBECTL) apply -f -

# Deploy CAPZ
$(KIND) load docker-image $(CONTROLLER_IMG)-$(ARCH):$(TAG) --name=$(KIND_CLUSTER_NAME)
Expand Down
4 changes: 2 additions & 2 deletions Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ settings = {
"deploy_cert_manager": True,
"preload_images_for_kind": True,
"kind_cluster_name": "capz",
"capi_version": "v1.4.6",
"cert_manager_version": "v1.12.3",
"capi_version": "v1.4.7",
"cert_manager_version": "v1.13.0",
"kubernetes_version": "v1.27.2",
"aks_kubernetes_version": "v1.26.3",
"flatcar_version": "3374.2.1",
Expand Down
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ require (
k8s.io/kubectl v0.26.1
k8s.io/utils v0.0.0-20230220204549-a5ecb0141aa5
sigs.k8s.io/cloud-provider-azure v1.26.7
sigs.k8s.io/cluster-api v1.4.6
sigs.k8s.io/cluster-api/test v1.4.6
sigs.k8s.io/cluster-api v1.4.7
sigs.k8s.io/cluster-api/test v1.4.7
sigs.k8s.io/controller-runtime v0.14.5
sigs.k8s.io/kind v0.20.0
)
Expand Down Expand Up @@ -197,4 +197,4 @@ require (
sigs.k8s.io/yaml v1.3.0 // indirect
)

replace sigs.k8s.io/cluster-api => sigs.k8s.io/cluster-api v1.4.6
replace sigs.k8s.io/cluster-api => sigs.k8s.io/cluster-api v1.4.7
2 changes: 1 addition & 1 deletion hack/install-cert-manager.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ source "${REPO_ROOT}/hack/common-vars.sh"
make --directory="${REPO_ROOT}" "${KUBECTL##*/}"

## Install cert manager and wait for availability
"${KUBECTL}" apply -f https://github.com/jetstack/cert-manager/releases/download/v1.12.3/cert-manager.yaml
"${KUBECTL}" apply -f https://github.com/jetstack/cert-manager/releases/download/v1.13.0/cert-manager.yaml
"${KUBECTL}" wait --for=condition=Available --timeout=5m -n cert-manager deployment/cert-manager
"${KUBECTL}" wait --for=condition=Available --timeout=5m -n cert-manager deployment/cert-manager-cainjector
"${KUBECTL}" wait --for=condition=Available --timeout=5m -n cert-manager deployment/cert-manager-webhook
Expand Down
18 changes: 9 additions & 9 deletions test/e2e/config/azure-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ managementClusterName: capz-e2e
images:
- name: ${MANAGER_IMAGE}
loadBehavior: mustLoad
- name: registry.k8s.io/cluster-api/cluster-api-controller:v1.4.6
- name: registry.k8s.io/cluster-api/cluster-api-controller:v1.4.7
loadBehavior: tryLoad
- name: registry.k8s.io/cluster-api/kubeadm-bootstrap-controller:v1.4.6
- name: registry.k8s.io/cluster-api/kubeadm-bootstrap-controller:v1.4.7
loadBehavior: tryLoad
- name: registry.k8s.io/cluster-api/kubeadm-control-plane-controller:v1.4.6
- name: registry.k8s.io/cluster-api/kubeadm-control-plane-controller:v1.4.7
loadBehavior: tryLoad

providers:
Expand All @@ -23,8 +23,8 @@ providers:
new: --metrics-addr=:8080
files:
- sourcePath: "../data/shared/v1beta1/metadata.yaml"
- name: v1.4.6
value: https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.4.6/core-components.yaml
- name: v1.4.7
value: https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.4.7/core-components.yaml
type: url
contract: v1beta1
files:
Expand All @@ -46,8 +46,8 @@ providers:
new: --metrics-addr=:8080
files:
- sourcePath: "../data/shared/v1beta1/metadata.yaml"
- name: v1.4.6
value: https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.4.6/bootstrap-components.yaml
- name: v1.4.7
value: https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.4.7/bootstrap-components.yaml
type: url
contract: v1beta1
files:
Expand All @@ -68,8 +68,8 @@ providers:
new: --metrics-addr=:8080
files:
- sourcePath: "../data/shared/v1beta1/metadata.yaml"
- name: v1.4.6
value: https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.4.6/control-plane-components.yaml
- name: v1.4.7
value: https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.4.7/control-plane-components.yaml
type: url
contract: v1beta1
files:
Expand Down

0 comments on commit 89218fc

Please sign in to comment.