Skip to content

Commit

Permalink
Add script to validate required env vars
Browse files Browse the repository at this point in the history
Add script to verify that all required env vars are supplied in the .env file
  • Loading branch information
scheibinger committed May 7, 2024
1 parent a3d9577 commit d7091fc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crib/devspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,22 @@ pipelines:
run: |-
tagOverride=$(get_flag "override-image-tag")
run_dependencies --all
if [[ -n "${tagOverride}" ]]; then
image=${DEVSPACE_IMAGE}:${tagOverride}
echo "Using user provided image: $image"
args=""
for i in {0..5}; do
args+="--set=helm.values.chainlink.nodes[$i].image=$image "
done
create_deployments app $args
else
build_images --all
create_deployments app
fi
echo
echo "Namespace ${DEVSPACE_NAMESPACE} will be deleted in ${NS_TTL}"
echo "To extend the TTL for e.g. 72 hours, run:"
Expand Down

0 comments on commit d7091fc

Please sign in to comment.