Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add script to validate required env vars #735

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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