Skip to content

Commit 3af3b08

Browse files
authored
Merge pull request #656 from prankul88/makefile-update
🐛 Update reference to the latest version of CAPO v0.3.1
2 parents 7b11723 + 4bd40e3 commit 3af3b08

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Makefile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -316,16 +316,16 @@ create-cluster: $(KUSTOMIZE) $(ENVSUBST) ## Create a development Kubernetes clus
316316
mkdir ~/.cluster-api
317317
chmod +x $(CLUSTERCTL)
318318
# Create clusterctl.yaml to use local OpenStack provider
319-
mkdir -p ./out/infrastructure-openstack/v0.3.0
319+
mkdir -p ./out/infrastructure-openstack/v0.3.1
320320
echo "providers:" > ./out/clusterctl.yaml
321321
echo "- name: openstack" >> ./out/clusterctl.yaml
322-
echo " url: $(PWD)/out/infrastructure-openstack/v0.3.0/infrastructure-components.yaml" >> ./out/clusterctl.yaml
322+
echo " url: $(PWD)/out/infrastructure-openstack/v0.3.1/infrastructure-components.yaml" >> ./out/clusterctl.yaml
323323
echo " type: InfrastructureProvider" >> ./out/clusterctl.yaml
324324

325-
echo "releaseSeries:" > ./out/infrastructure-openstack/v0.3.0/metadata.yaml
326-
echo "- major: 0" >> ./out/infrastructure-openstack/v0.3.0/metadata.yaml
327-
echo " minor: 3" >> ./out/infrastructure-openstack/v0.3.0/metadata.yaml
328-
echo " contract: v1alpha3" >> ./out/infrastructure-openstack/v0.3.0/metadata.yaml
325+
echo "releaseSeries:" > ./out/infrastructure-openstack/v0.3.1/metadata.yaml
326+
echo "- major: 0" >> ./out/infrastructure-openstack/v0.3.1/metadata.yaml
327+
echo " minor: 3" >> ./out/infrastructure-openstack/v0.3.1/metadata.yaml
328+
echo " contract: v1alpha3" >> ./out/infrastructure-openstack/v0.3.1/metadata.yaml
329329

330330
@if [ -z `kind get clusters | grep clusterapi` ]; then \
331331
kind create cluster --name=clusterapi; \
@@ -340,7 +340,7 @@ create-cluster: $(KUSTOMIZE) $(ENVSUBST) ## Create a development Kubernetes clus
340340

341341
# (Re-)deploy CAPO provider
342342
MANIFEST_IMG=$(CONTROLLER_IMG)-$(ARCH) MANIFEST_TAG=$(TAG) $(MAKE) set-manifest-image
343-
$(KUSTOMIZE) build config > ./out/infrastructure-openstack/v0.3.0/infrastructure-components.yaml
343+
$(KUSTOMIZE) build config > ./out/infrastructure-openstack/v0.3.1/infrastructure-components.yaml
344344
$(CLUSTERCTL) delete --infrastructure openstack --include-namespace --namespace capo-system || true
345345
kubectl wait --for=delete ns/capo-system || true
346346
$(CLUSTERCTL) init --config ./out/clusterctl.yaml --infrastructure openstack --core cluster-api:v${CAPI_VERSION} --bootstrap kubeadm:v${CAPI_VERSION} --control-plane kubeadm:v${CAPI_VERSION}

clusterctl-settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"name": "infrastructure-openstack",
33
"config": {
44
"componentsFile": "infrastructure-components.yaml",
5-
"nextVersion": "v0.3.0"
5+
"nextVersion": "v0.3.1"
66
}
77
}

0 commit comments

Comments
 (0)