File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 1
1
# This project applies to ppc64le only
2
- ARCH ?= ppc64le
2
+ ARCH ?= " ppc64le"
3
3
4
4
REGISTRY ?= quay.io/powercloud
5
5
REPOSITORY ?= power-dra-driver
@@ -19,10 +19,11 @@ VERSION ?= v0.1.0
19
19
GIT_COMMIT ?= $(shell git describe --match="" --dirty --long --always --abbrev=40 2> /dev/null || echo "")
20
20
21
21
# Kind configuration
22
- KIND_IMAGE? = docker.io/kindest/node:latest
23
- ifeq ((arch), ppc64le)
24
- KIND_IMAGE = quay.io/powercloud/kind-node:v1.33.1
22
+ KIND_IMAGE ?= docker.io/kindest/node:latest
23
+ ifeq ($( ARCH ) ," ppc64le" )
24
+ KIND_IMAGE := quay.io/powercloud/kind-node:v1.33.1
25
25
endif
26
+
26
27
KIND_CLUSTER_NAME: ="power-dra-driver-cluster"
27
28
KIND_CLUSTER_CONFIG_PATH: ="hack/kind-cluster-config.yaml"
28
29
KIND_EXPERIMENTAL_PROVIDER: ="podman"
@@ -106,7 +107,7 @@ dev-setup: dev-install-kind
106
107
--config $(KIND_CLUSTER_CONFIG_PATH ) \
107
108
--wait 5m
108
109
109
- .PHONY : dev-clean
110
+ .PHONY : dev-teardown
110
111
dev-teardown :
111
112
dev-cache/kind delete cluster \
112
113
--name $(KIND_CLUSTER_NAME )
You can’t perform that action at this time.
0 commit comments