diff --git a/.circleci/config.yml b/.circleci/config.yml index 8ca947b88..8aaa8b563 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -285,12 +285,18 @@ jobs: name: Cluster East command: | set -x + IMAGE_TAG=$(make -s print-IMAGE_TAG) \ + SKUPPER_ROUTER_IMAGE_TAG=$(make -s print-ROUTER_IMAGE_TAG) \ + REGISTRY=$(make -s print-REGISTRY) \ KUBECONFIG=~/kc.east ./scripts/kind-dev-cluster -n east \ --images ociarchive - run: name: Cluster West command: | set -x + IMAGE_TAG=$(make -s print-IMAGE_TAG) \ + SKUPPER_ROUTER_IMAGE_TAG=$(make -s print-ROUTER_IMAGE_TAG) \ + REGISTRY=$(make -s print-REGISTRY) \ KUBECONFIG=~/kc.west ./scripts/kind-dev-cluster -n west \ --images ociarchive - run: diff --git a/Makefile b/Makefile index e7f1ddfc0..c8d2b523c 100644 --- a/Makefile +++ b/Makefile @@ -208,6 +208,9 @@ generate-network-observer-devel: --set extraArgs={"-cors-allow-all"} \ --set skipManagementLabels=true > skupper-network-observer-devel.yaml +print-%: + @echo $($*) + clean: rm -rf skupper controller kube-adaptor \ network-observer generate-doc \