Skip to content

Commit 913fbd3

Browse files
authored
devops: mark Docker images as EOL (#2879)
1 parent 678fcd2 commit 913fbd3

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

utils/docker/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
oras/

utils/docker/publish_docker.sh

+21
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,27 @@ tag_and_push() {
4848
echo "-- tagging: $target"
4949
docker tag $source $target
5050
docker push $target
51+
attach_eol_manifest $target
52+
}
53+
54+
attach_eol_manifest() {
55+
local image="$1"
56+
local today=$(date -u +'%Y-%m-%d')
57+
install_oras_if_needed
58+
# oras is re-using Docker credentials, so we don't need to login.
59+
# Following the advice in https://portal.microsofticm.com/imp/v3/incidents/incident/476783820/summary
60+
./oras/oras attach --artifact-type application/vnd.microsoft.artifact.lifecycle --annotation "vnd.microsoft.artifact.lifecycle.end-of-life.date=$today" $image
61+
}
62+
63+
install_oras_if_needed() {
64+
if [[ -x oras/oras ]]; then
65+
return
66+
fi
67+
local version="1.1.0"
68+
curl -sLO "https://github.com/oras-project/oras/releases/download/v${version}/oras_${version}_linux_amd64.tar.gz"
69+
mkdir -p oras
70+
tar -zxf oras_${version}_linux_amd64.tar.gz -C oras
71+
rm oras_${version}_linux_amd64.tar.gz
5172
}
5273

5374
publish_docker_images_with_arch_suffix() {

0 commit comments

Comments
 (0)