Skip to content

Commit e9421fd

Browse files
committed
Fix typo in Makefile for Bootstrap provider
Signed-off-by: Mohamed Belgaied Hassine <[email protected]> Small fix to the AWS manifests to make the cloud controller deploy correctly Signed-off-by: Mohamed Belgaied Hassine <[email protected]>
1 parent 49de66c commit e9421fd

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ manifest-modification: # Set the manifest images to the staging/production bucke
387387
release-manifests: $(RELEASE_DIR) $(KUSTOMIZE) ## Build the manifests to publish with a release
388388
# Build bootstrap-components.
389389
$(KUSTOMIZE) build bootstrap/config/default > $(RELEASE_DIR)/bootstrap-components.yaml
390-
$(MAKE) set-manifest-image MANIFEST_IMG=$(CONTROLPLANE_IMG) MANIFEST_TAG=$(TAG) TARGET_RESOURCE="$(RELEASE_DIR)/bootstrap-components.yaml"
390+
$(MAKE) set-manifest-image MANIFEST_IMG=$(BOOTSTRAP_IMG) MANIFEST_TAG=$(TAG) TARGET_RESOURCE="$(RELEASE_DIR)/bootstrap-components.yaml"
391391
# Build control-plane-components.
392392
$(KUSTOMIZE) build controlplane/config/default > $(RELEASE_DIR)/control-plane-components.yaml
393393
$(MAKE) set-manifest-image MANIFEST_IMG=$(CONTROLPLANE_IMG) MANIFEST_TAG=$(TAG) TARGET_RESOURCE="$(RELEASE_DIR)/control-plane-components.yaml"
@@ -426,7 +426,7 @@ docker-push-manifest-rke2-bootstrap: ## Push the multiarch manifest for the rke2
426426
docker manifest create --amend $(BOOTSTRAP_IMG):$(TAG) $(shell echo $(ALL_ARCH) | sed -e "s~[^ ]*~$(BOOTSTRAP_IMG)\-&:$(TAG)~g")
427427
@for arch in $(ALL_ARCH); do docker manifest annotate --arch $${arch} ${BOOTSTRAP_IMG}:${TAG} ${BOOTSTRAP_IMG}-$${arch}:${TAG}; done
428428
docker manifest push --purge $(BOOTSTRAP_IMG):$(TAG)
429-
$(MAKE) set-manifest-image MANIFEST_IMG=$(BOOTSTRAP_IMG) MANIFEST_TAG=$(TAG) TARGET_RESOURCE="./bootstrap/config/default/manager_image_patch.yaml"
429+
## $(MAKE) set-manifest-image MANIFEST_IMG=$(BOOTSTRAP_IMG) MANIFEST_TAG=$(TAG) TARGET_RESOURCE="./bootstrap/config/default/manager_image_patch.yaml"
430430
$(MAKE) set-manifest-pull-policy TARGET_RESOURCE="./bootstrap/config/default/manager_pull_policy.yaml"
431431

432432
.PHONY: docker-push-manifest-rke2-control-plane

samples/aws/external/cluster-template-external-cloud-provider.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,7 @@ data:
755755
env:
756756
- name: ADDRESS
757757
value: /var/lib/csi/sockets/pluginproxy/csi.sock
758-
image: registry.k8.io/sig-storage/csi-provisioner:v2.1.1
758+
image: registry.k8s.io/sig-storage/csi-provisioner:v2.1.1
759759
name: csi-provisioner
760760
volumeMounts:
761761
- mountPath: /var/lib/csi/sockets/pluginproxy/
@@ -767,7 +767,7 @@ data:
767767
env:
768768
- name: ADDRESS
769769
value: /var/lib/csi/sockets/pluginproxy/csi.sock
770-
image: registry.k8.io/sig-storage/csi-attacher:v3.1.0
770+
image: registry.k8s.io/sig-storage/csi-attacher:v3.1.0
771771
name: csi-attacher
772772
volumeMounts:
773773
- mountPath: /var/lib/csi/sockets/pluginproxy/
@@ -778,7 +778,7 @@ data:
778778
env:
779779
- name: ADDRESS
780780
value: /var/lib/csi/sockets/pluginproxy/csi.sock
781-
image: registry.k8.io/sig-storage/csi-snapshotter:v3.0.3
781+
image: registry.k8s.io/sig-storage/csi-snapshotter:v3.0.3
782782
name: csi-snapshotter
783783
volumeMounts:
784784
- mountPath: /var/lib/csi/sockets/pluginproxy/
@@ -789,15 +789,15 @@ data:
789789
env:
790790
- name: ADDRESS
791791
value: /var/lib/csi/sockets/pluginproxy/csi.sock
792-
image: registry.k8.io/sig-storage/csi-resizer:v1.0.0
792+
image: registry.k8s.io/sig-storage/csi-resizer:v1.0.0
793793
imagePullPolicy: Always
794794
name: csi-resizer
795795
volumeMounts:
796796
- mountPath: /var/lib/csi/sockets/pluginproxy/
797797
name: socket-dir
798798
- args:
799799
- --csi-address=/csi/csi.sock
800-
image: registry.k8.io/sig-storage/livenessprobe:v2.2.0
800+
image: registry.k8s.io/sig-storage/livenessprobe:v2.2.0
801801
name: liveness-probe
802802
volumeMounts:
803803
- mountPath: /csi

0 commit comments

Comments
 (0)