From d8676c69678edd46eb63ff650f04bdc6f6c8db86 Mon Sep 17 00:00:00 2001 From: Victor M Date: Wed, 8 Sep 2021 18:46:01 +0200 Subject: [PATCH] Update set-template-ref syntax on helper scripts (#113) --- cicd/deploy_ephemeral_db.sh | 2 +- cicd/deploy_ephemeral_env.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cicd/deploy_ephemeral_db.sh b/cicd/deploy_ephemeral_db.sh index be7e6a6c..f62632c1 100644 --- a/cicd/deploy_ephemeral_db.sh +++ b/cicd/deploy_ephemeral_db.sh @@ -15,7 +15,7 @@ bonfire process \ $APP_NAME \ --source=appsre \ --ref-env insights-stage \ - --set-template-ref ${APP_NAME}/${COMPONENT_NAME}=${GIT_COMMIT} \ + --set-template-ref ${COMPONENT_NAME}=${GIT_COMMIT} \ --set-image-tag $IMAGE=$IMAGE_TAG \ --namespace $NAMESPACE \ --no-get-dependencies \ diff --git a/cicd/deploy_ephemeral_env.sh b/cicd/deploy_ephemeral_env.sh index 1d705858..1bdb352d 100644 --- a/cicd/deploy_ephemeral_env.sh +++ b/cicd/deploy_ephemeral_env.sh @@ -8,7 +8,7 @@ bonfire deploy \ ${APP_NAME} \ --source=appsre \ --ref-env insights-stage \ - --set-template-ref ${APP_NAME}/${COMPONENT_NAME}=${GIT_COMMIT} \ + --set-template-ref ${COMPONENT_NAME}=${GIT_COMMIT} \ --set-image-tag ${IMAGE}=${IMAGE_TAG} \ --namespace ${NAMESPACE} \ --timeout ${DEPLOY_TIMEOUT} \