mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
7b9d51929d
After this change we'll be able to push a tag to github to deploy to collab. The advantages of this are that there's no longer a separate step to first build the image, and then deploy it. In the future I'd like to make this happen more automatically (maybe as part of bump nightly). Release Notes: - N/A
31 lines
652 B
Bash
Executable File
31 lines
652 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
source script/lib/deploy-helpers.sh
|
|
|
|
if [[ $# != 1 ]]; then
|
|
echo "Usage: $0 <production|staging>"
|
|
exit 1
|
|
fi
|
|
|
|
environment=$1
|
|
url="$(url_for_environment $environment)"
|
|
tag="$(tag_for_environment $environment)"
|
|
|
|
target_zed_kube_cluster
|
|
|
|
deployed_image_id=$(
|
|
kubectl \
|
|
--namespace=${environment} \
|
|
get deployment collab \
|
|
-o 'jsonpath={.spec.template.spec.containers[0].image}' \
|
|
| cut -d: -f2
|
|
)
|
|
|
|
echo "Deployed image version: $deployed_image_id"
|
|
|
|
git fetch >/dev/null
|
|
if [[ "$(git rev-parse tags/$tag)" != $deployed_image_id ]]; then
|
|
echo "NOTE: tags/$tag $(git rev-parse tags/$tag) is not yet deployed"
|
|
fi;
|