tubearchivist/deploy.sh

212 lines
5.4 KiB
Bash
Raw Permalink Normal View History

2021-09-06 00:10:14 +07:00
#!/bin/bash
# deploy all needed project files to different servers:
# test for local vm for testing
# blackhole for local production
2021-12-17 16:57:10 +07:00
# unstable to publish intermediate releases
# docker to publish regular release
2021-09-06 00:10:14 +07:00
# create builder:
# docker buildx create --name tubearchivist
# docker buildx use tubearchivist
# docker buildx inspect --bootstrap
2021-10-17 13:29:22 +07:00
# more details:
# https://github.com/tubearchivist/tubearchivist/issues/6
2021-10-17 13:29:22 +07:00
2021-09-06 00:10:14 +07:00
set -e
function sync_blackhole {
2025-01-27 21:15:22 +07:00
host="blackhole.lan"
2021-09-06 00:10:14 +07:00
rsync -a --progress --delete-after \
--exclude ".git" \
--exclude ".gitignore" \
2021-09-06 00:10:14 +07:00
--exclude "**/cache" \
--exclude "**/__pycache__/" \
2025-01-27 21:15:22 +07:00
--exclude "**/.pytest_cache/" \
--exclude "**/static/" \
--exclude "**/node_modules/" \
--exclude "**/.env" \
2023-07-30 23:22:06 +07:00
--exclude ".venv" \
2021-09-06 00:10:14 +07:00
--exclude "db.sqlite3" \
2023-04-09 13:59:42 +07:00
--exclude ".mypy_cache" \
2021-09-06 00:10:14 +07:00
. -e ssh "$host":tubearchivist
2025-02-02 15:36:25 +07:00
ssh "$host" 'docker build --build-arg INSTALL_DEBUG=1 -t bbilly1/tubearchivist:unstable tubearchivist'
2025-01-28 09:45:40 +07:00
ssh "$host" 'docker compose -f docker/docker-compose.yml up -d'
2021-09-06 00:10:14 +07:00
}
function sync_test {
# docker commands don't need sudo in testing vm
# pass argument to build for specific platform
2021-09-06 00:10:14 +07:00
host="tubearchivist.local"
# make base folder
ssh "$host" "mkdir -p docker"
2021-09-06 00:10:14 +07:00
# copy project files to build image
2021-09-06 00:10:14 +07:00
rsync -a --progress --delete-after \
--exclude ".git" \
--exclude ".gitignore" \
2021-09-06 00:10:14 +07:00
--exclude "**/cache" \
--exclude "**/__pycache__/" \
2024-05-21 19:08:45 +02:00
--exclude "**/.pytest_cache/" \
2024-12-21 09:57:20 +07:00
--exclude "**/static/" \
--exclude "**/node_modules/" \
--exclude "**/.env" \
2023-06-22 23:28:06 +07:00
--exclude ".venv" \
2021-09-06 00:10:14 +07:00
--exclude "db.sqlite3" \
2023-04-09 13:59:42 +07:00
--exclude ".mypy_cache" \
2021-09-06 00:10:14 +07:00
. -e ssh "$host":tubearchivist
# copy default docker-compose file if not exist
rsync --progress --ignore-existing docker-compose.yml -e ssh "$host":docker
2021-09-06 00:10:14 +07:00
if [[ $1 = "amd64" ]]; then
platform="linux/amd64"
elif [[ $1 = "arm64" ]]; then
platform="linux/arm64"
elif [[ $1 = "multi" ]]; then
platform="linux/amd64,linux/arm64"
else
platform="linux/amd64"
fi
ssh "$host" "docker buildx build --build-arg INSTALL_DEBUG=1 --platform $platform -t bbilly1/tubearchivist:latest tubearchivist --load"
2022-05-07 18:33:16 +07:00
ssh "$host" 'docker compose -f docker/docker-compose.yml up -d'
2021-09-06 00:10:14 +07:00
}
# update latest tag compatible es for set and forget
function sync_latest_es {
2022-04-15 17:46:16 +07:00
VERSION=$(grep "bbilly1/tubearchivist-es" docker-compose.yml | awk '{print $NF}')
printf "\nsync new ES version %s\nContinue?\n" "$VERSION"
read -rn 1
if [[ $(systemctl is-active docker) != 'active' ]]; then
echo "starting docker"
sudo systemctl start docker
fi
sudo docker image pull docker.elastic.co/elasticsearch/elasticsearch:"$VERSION"
sudo docker tag \
docker.elastic.co/elasticsearch/elasticsearch:"$VERSION" \
bbilly1/tubearchivist-es
sudo docker tag \
docker.elastic.co/elasticsearch/elasticsearch:"$VERSION" \
bbilly1/tubearchivist-es:"$VERSION"
sudo docker push bbilly1/tubearchivist-es
sudo docker push bbilly1/tubearchivist-es:"$VERSION"
}
2021-12-17 16:57:10 +07:00
# publish unstable tag to docker
function sync_unstable {
2021-12-17 16:57:10 +07:00
if [[ $(systemctl is-active docker) != 'active' ]]; then
echo "starting docker"
sudo systemctl start docker
fi
# start amd64 build
sudo docker buildx build \
--platform linux/amd64 \
-t bbilly1/tubearchivist:unstable --push .
}
2022-06-04 11:16:46 +07:00
# new function, sync only tag, build with build server
2021-09-06 00:10:14 +07:00
function sync_docker {
# check things
if [[ $(git branch --show-current) != 'master' ]]; then
echo 'you are not on master, dummy!'
return
fi
2022-06-04 11:16:46 +07:00
echo "latest tags:"
2024-12-20 11:20:02 +07:00
git tag | sort -rV | head -n 5
2022-06-04 11:16:46 +07:00
printf "\ncreate new version:\n"
read -r VERSION
echo "push new tag: $VERSION?"
read -rn 1
# create release tag
echo "commits since last version:"
git log "$(git describe --tags --abbrev=0)"..HEAD --oneline
git tag -a "$VERSION" -m "new release version $VERSION"
git push origin "$VERSION"
}
# old builder, sync tag, build and push locally
function sync_docker_old {
# check things
if [[ $(git branch --show-current) != 'master' ]]; then
echo 'you are not on master, dummy!'
return
fi
2021-09-06 00:10:14 +07:00
if [[ $(systemctl is-active docker) != 'active' ]]; then
echo "starting docker"
sudo systemctl start docker
fi
echo "latest tags:"
2024-12-20 11:20:02 +07:00
git tag | sort -rV | head -n 5
printf "\ncreate new version:\n"
read -r VERSION
2021-10-17 13:29:22 +07:00
echo "build and push $VERSION?"
2021-09-22 18:11:05 +07:00
read -rn 1
2021-10-17 13:29:22 +07:00
# start build
sudo docker buildx build \
--platform linux/amd64,linux/arm64 \
-t bbilly1/tubearchivist \
-t bbilly1/tubearchivist:unstable \
2021-10-17 13:29:22 +07:00
-t bbilly1/tubearchivist:"$VERSION" --push .
# create release tag
echo "commits since last version:"
git log "$(git describe --tags --abbrev=0)"..HEAD --oneline
git tag -a "$VERSION" -m "new release version $VERSION"
2022-06-04 11:16:46 +07:00
git push origin "$VERSION"
2021-09-06 00:10:14 +07:00
}
2021-09-06 00:10:14 +07:00
if [[ $1 == "blackhole" ]]; then
sync_blackhole
elif [[ $1 == "test" ]]; then
sync_test "$2"
2021-09-06 00:10:14 +07:00
elif [[ $1 == "docker" ]]; then
sync_docker
2021-12-17 16:57:10 +07:00
elif [[ $1 == "unstable" ]]; then
sync_unstable
elif [[ $1 == "es" ]]; then
sync_latest_es
2021-09-06 00:10:14 +07:00
else
2025-03-09 20:35:02 +07:00
echo "valid options are: blackhole | test | docker | unstable | es"
2021-09-06 00:10:14 +07:00
fi
##
exit 0