From bbbc82c267eede247f904cef60a9c323766907c4 Mon Sep 17 00:00:00 2001 From: Yolanda Robla Date: Sat, 25 May 2019 08:24:26 +0200 Subject: [PATCH] Modify makefile to add workloads deployment Change-Id: Ie74506f3a9ba987d88c52d83e642881d12bb42c5 --- Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 0f1cc1a..7b31542 100644 --- a/Makefile +++ b/Makefile @@ -46,13 +46,14 @@ clean: dependencies: @echo "Installing dependencies" @./utils/install_dependencies.sh - @wget -A "openshift-client-linux-4*\.tar\.gz" -r -np -nc -nd -l1 --no-check-certificate -e robots=off https://mirror.openshift.com/pub/openshift-v4/clients/ocp/latest/ -P /tmp/ - @sudo tar -xvf /tmp/openshift-client-linux-4*.tar.gz -C /usr/local/bin/ oc - @rm -f /tmp/openshift-client-linux-4*.tar.gz deploy: dependencies @echo "Launching cluster deployment bin/$(GONAME)" @./bin/$(GONAME) generate --installer_path $(INSTALLER_PATH) --build_path $(BUILDDIR) --base_repository $(BASE_REPO) --base_path $(BASE_PATH) --secrets_repository $(CREDENTIALS) --site_repository $(SITE_REPO) --settings_path $(SETTINGS_PATH) --master_memory_mb $(MASTER_MEMORY_MB) --ssh_key_path $(SSH_KEY_PATH) + $(MAKE) workloads + +workloads: + #@./bin/$(GONAME) workloads --site_repository $(SITE_REPO) images: @echo "Launching image generation" -- 2.16.6