2019-12-27 11:07:53 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set +u
|
|
|
|
|
2020-01-30 07:37:11 +00:00
|
|
|
if [[ $BUILDKITE_LABEL =~ ":selenium:" ]] || [[ $BUILDKITE_LABEL =~ ":docker: Build Image" ]]; then
|
2019-12-27 11:07:53 +00:00
|
|
|
CONTAINERS=$(docker ps -a -q)
|
2020-01-30 07:37:11 +00:00
|
|
|
if [[ ${CONTAINERS} != "" ]]; then
|
2019-12-27 11:07:53 +00:00
|
|
|
echo "--- :docker: Clean environment"
|
2020-01-07 11:28:04 +00:00
|
|
|
docker rm -f ${CONTAINERS}
|
2019-12-27 11:07:53 +00:00
|
|
|
fi
|
2020-01-30 07:37:11 +00:00
|
|
|
fi
|
|
|
|
|
2020-02-01 08:10:18 +00:00
|
|
|
if [[ $BUILDKITE_LABEL =~ ":docker: Deploy" ]]; then
|
|
|
|
docker logout
|
|
|
|
fi
|
|
|
|
|
2020-02-05 12:24:19 +00:00
|
|
|
if [[ $BUILDKITE_LABEL == ":docker: Deploy Manifests" ]] && [[ $BUILDKITE_BRANCH == "master" ]] && [[ $BUILDKITE_PULL_REQUEST == "false" ]]; then
|
2020-02-03 09:07:01 +00:00
|
|
|
echo "--- :docker: Removing tags for deleted branches"
|
2020-02-05 12:24:19 +00:00
|
|
|
anontoken=$(curl -fsL --retry 3 'https://auth.docker.io/token?service=registry.docker.io&scope=repository:authelia/authelia:pull' | jq -r .token)
|
|
|
|
authtoken=$(curl -fs --retry 3 -H "Content-Type: application/json" -X "POST" -d '{"username": "'${DOCKER_USERNAME}'", "password": "'${DOCKER_PASSWORD}'"}' https://hub.docker.com/v2/users/login/ | jq -r .token)
|
|
|
|
for BRANCH_TAG in $(dockerbranchtags=$(curl -fsL --retry 3 -H "Authorization: Bearer ${anontoken}" https://registry-1.docker.io/v2/authelia/authelia/tags/list | jq -r '.tags[] | select(startswith("PR") | not)' | \
|
|
|
|
sed -r '/^(latest|master|develop|v.*|([[:digit:]]+)\.?([[:digit:]]+)?\.?([[:digit:]]+)?)/d' | sort) && \
|
2020-02-03 09:07:01 +00:00
|
|
|
githubbranches=$(curl -fs --retry 3 https://api.github.com/repos/authelia/authelia/branches | jq -r '.[].name' | sort) && \
|
|
|
|
comm -23 <(echo "${dockerbranchtags}") <(echo "${githubbranches}")); do
|
|
|
|
echo "Removing tag ${BRANCH_TAG}"
|
|
|
|
curl -fsL --retry 3 -o /dev/null -X "DELETE" -H "Authorization: JWT ${authtoken}" https://hub.docker.com/v2/repositories/authelia/authelia/tags/${BRANCH_TAG}/
|
|
|
|
done
|
|
|
|
echo "--- :docker: Removing tags for merged or closed pull requests"
|
|
|
|
for PR_TAG in $(dockerprtags=$(curl -fsL --retry 3 -H "Authorization: Bearer ${anontoken}" https://registry-1.docker.io/v2/authelia/authelia/tags/list | jq -r '.tags[] | select(startswith("PR"))' | sort) && \
|
|
|
|
githubprs=$(curl -fs --retry 3 https://api.github.com/repos/authelia/authelia/pulls | jq -r '.[].number' | sed -e 's/^/PR/' | sort) && \
|
|
|
|
comm -23 <(echo "${dockerprtags}") <(echo "${githubprs}")); do
|
|
|
|
echo "Removing tag ${PR_TAG}"
|
|
|
|
curl -fsL --retry 3 -o /dev/null -X "DELETE" -H "Authorization: JWT ${authtoken}" https://hub.docker.com/v2/repositories/authelia/authelia/tags/${PR_TAG}/
|
|
|
|
done
|
|
|
|
fi
|