We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 852f1d2 commit 2cff5a3Copy full SHA for 2cff5a3
cicd/deploy_ephemeral_env.sh
@@ -1,5 +1,8 @@
1
source ${CICD_ROOT}/_common_deploy_logic.sh
2
3
+# Caller can define any extra deploy arguments to be passed to bonfire
4
+: "${EXTRA_DEPLOY_ARGS:='""'}"
5
+
6
# Deploy k8s resources for app and its dependencies (use insights-stage instead of insights-production for now)
7
# -> use this PR as the template ref when downloading configurations for this component
8
# -> use this PR's newly built image in the deployed configurations
@@ -14,5 +17,6 @@ bonfire deploy \
14
17
--namespace ${NAMESPACE} \
15
18
--timeout ${DEPLOY_TIMEOUT} \
16
19
${COMPONENTS_ARG} \
- ${COMPONENTS_RESOURCES_ARG}
20
+ ${COMPONENTS_RESOURCES_ARG} \
21
+ ${EXTRA_DEPLOY_ARGS}
22
set +x
0 commit comments