Skip to content

Commit 43635b2

Browse files
authored
Merge pull request #323 from songjiaxun/fix_Makefile
fix: passing CLOUD correctly in Makefile for Azure Stack
2 parents 7974a32 + 8bb9c53 commit 43635b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ e2e-bootstrap: install-helm
6666
helm install blob-csi-driver ./charts/latest/blob-csi-driver --namespace kube-system --wait --timeout=15m -v=5 --debug \
6767
--set controller.runOnMaster=true \
6868
--set controller.replicas=1 \
69-
--set cloud=CLOUD \
69+
--set cloud=$(CLOUD) \
7070
$(E2E_HELM_OPTIONS)
7171

7272
.PHONY: install-helm
@@ -98,7 +98,7 @@ blob-container:
9898
docker buildx rm container-builder || true
9999
docker buildx create --use --name=container-builder
100100
ifdef CI
101-
ifeq ($(CLOUD), "AzureStackCloud")
101+
ifeq ($(CLOUD), AzureStackCloud)
102102
docker run --privileged --name buildx_buildkit_container-builder0 -d --mount type=bind,src=/etc/ssl/certs,dst=/etc/ssl/certs moby/buildkit:latest || true
103103
endif
104104
docker buildx build --no-cache --build-arg LDFLAGS=${LDFLAGS} -t $(IMAGE_TAG) -f ./pkg/blobplugin/Dockerfile --platform="linux/amd64" --push .

0 commit comments

Comments
 (0)