Skip to content

Commit

Permalink
Add EXTRA_DEPLOY_ARGS
Browse files Browse the repository at this point in the history
  • Loading branch information
bsquizz committed Dec 21, 2021
1 parent 852f1d2 commit 2cff5a3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cicd/deploy_ephemeral_env.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
source ${CICD_ROOT}/_common_deploy_logic.sh

# Caller can define any extra deploy arguments to be passed to bonfire
: "${EXTRA_DEPLOY_ARGS:='""'}"

# Deploy k8s resources for app and its dependencies (use insights-stage instead of insights-production for now)
# -> use this PR as the template ref when downloading configurations for this component
# -> use this PR's newly built image in the deployed configurations
Expand All @@ -14,5 +17,6 @@ bonfire deploy \
--namespace ${NAMESPACE} \
--timeout ${DEPLOY_TIMEOUT} \
${COMPONENTS_ARG} \
${COMPONENTS_RESOURCES_ARG}
${COMPONENTS_RESOURCES_ARG} \
${EXTRA_DEPLOY_ARGS}
set +x

0 comments on commit 2cff5a3

Please sign in to comment.