mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-26 02:37:05 +00:00
17 lines
404 B
Bash
Executable file
17 lines
404 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -eu
|
|
source script/lib/deploy-helpers.sh
|
|
|
|
if [[ $# < 2 ]]; then
|
|
echo "Usage: $0 <production|staging|preview> <tag-name>"
|
|
exit 1
|
|
fi
|
|
export ZED_KUBE_NAMESPACE=$1
|
|
COLLAB_VERSION=$2
|
|
|
|
export_vars_for_environment $ZED_KUBE_NAMESPACE
|
|
export ZED_IMAGE_ID=$(image_id_for_version $COLLAB_VERSION)
|
|
target_zed_kube_cluster
|
|
|
|
envsubst < crates/collab/k8s/manifest.template.yml | kubectl apply -f -
|