File tree 2 files changed +22
-0
lines changed
2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change
1
+ oras /
Original file line number Diff line number Diff line change @@ -48,6 +48,27 @@ tag_and_push() {
48
48
echo " -- tagging: $target "
49
49
docker tag $source $target
50
50
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
51
72
}
52
73
53
74
publish_docker_images_with_arch_suffix () {
You can’t perform that action at this time.
0 commit comments