Skip to content

Commit 2cff5a3

Browse files
committed
Add EXTRA_DEPLOY_ARGS
1 parent 852f1d2 commit 2cff5a3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

cicd/deploy_ephemeral_env.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
source ${CICD_ROOT}/_common_deploy_logic.sh
22

3+
# Caller can define any extra deploy arguments to be passed to bonfire
4+
: "${EXTRA_DEPLOY_ARGS:='""'}"
5+
36
# Deploy k8s resources for app and its dependencies (use insights-stage instead of insights-production for now)
47
# -> use this PR as the template ref when downloading configurations for this component
58
# -> use this PR's newly built image in the deployed configurations
@@ -14,5 +17,6 @@ bonfire deploy \
1417
--namespace ${NAMESPACE} \
1518
--timeout ${DEPLOY_TIMEOUT} \
1619
${COMPONENTS_ARG} \
17-
${COMPONENTS_RESOURCES_ARG}
20+
${COMPONENTS_RESOURCES_ARG} \
21+
${EXTRA_DEPLOY_ARGS}
1822
set +x

0 commit comments

Comments
 (0)