Add error messages to server deployment for nightly
This commit is contained in:
parent
6680e1e9fe
commit
5cf953d559
3 changed files with 18 additions and 6 deletions
|
@ -4,12 +4,16 @@ set -eu
|
|||
source script/lib/deploy-helpers.sh
|
||||
|
||||
if [[ $# < 1 ]]; then
|
||||
# TODO kb infra for nightly?
|
||||
echo "Usage: $0 <production|staging|preview>"
|
||||
echo "Usage: $0 <production|staging|preview> (nightly is not yet supported)"
|
||||
exit 1
|
||||
fi
|
||||
environment=$1
|
||||
|
||||
if [[ ${environment} == "nightly" ]]; then
|
||||
echo "nightly is not yet supported"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
export_vars_for_environment ${environment}
|
||||
target_zed_kube_cluster
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue