zed/script/deploy-collab

24 lines
583 B
Plaintext
Raw Normal View History

#!/bin/bash
set -eu
2022-10-21 23:15:34 +03:00
source script/lib/deploy-helpers.sh
if [[ $# < 2 ]]; then
echo "Usage: $0 <production|preview|nightly|staging> <tag-name>"
exit 1
fi
2022-10-22 01:50:14 +03:00
environment=$1
version=$2
2022-10-22 01:50:14 +03:00
export_vars_for_environment ${environment}
image_id=$(image_id_for_version ${version})
export ZED_DO_CERTIFICATE_ID=$(doctl compute certificate list --format ID --no-header)
2022-10-22 01:50:14 +03:00
export ZED_KUBE_NAMESPACE=${environment}
export ZED_IMAGE_ID=${image_id}
2022-10-22 01:50:14 +03:00
target_zed_kube_cluster
envsubst < crates/collab/k8s/collab.template.yml | kubectl apply -f -
2022-10-22 01:50:14 +03:00
echo "deployed collab v${version} to ${environment}"