-
Notifications
You must be signed in to change notification settings - Fork 89
/
deploy-manifests.sh
executable file
·83 lines (72 loc) · 2.18 KB
/
deploy-manifests.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/bin/bash
set -e
if [[ -z "$TARGET" ]]; then
echo "TARGET environment variable must be set e.g. TARGET=stage3:latest."
exit 1
fi
# Split the TARGET variable into two elements separated by colons
IFS=: read -r NAME MANIFEST_TAG <<< "${TARGET}"
VERSION=${VERSION:-$(date -u +%Y%m%d)}
ORG=${ORG:-gentoo}
case "${TARGET}" in
"stage3:latest")
TAGS=("amd64-openrc" "armv5tel-openrc" "armv6j_hardfp-openrc" "armv7a_hardfp-openrc" "arm64-openrc" "i686-openrc" "ppc64le-openrc" "rv64_lp64d-openrc" "s390x")
;;
"stage3:desktop")
TAGS=("amd64-desktop-openrc" "arm64-desktop-openrc")
;;
"stage3:hardened")
TAGS=("amd64-hardened-openrc" "i686-hardened-openrc")
;;
"stage3:llvm")
TAGS=("amd64-llvm-openrc" "arm64-llvm-openrc")
;;
"stage3:llvm-systemd")
TAGS=("amd64-llvm-systemd" "arm64-llvm-systemd")
;;
"stage3:musl")
TAGS=("amd64-musl" "armv7a_hardfp_musl-openrc" "arm64-musl" "i686-musl")
;;
"stage3:musl-hardened")
TAGS=("amd64-musl-hardened" "arm64-musl-hardened" "ppc64le-musl-hardened-openrc")
;;
"stage3:musl-llvm")
TAGS=("amd64-musl-llvm" "arm64-musl-llvm")
;;
"stage3:nomultilib")
TAGS=("amd64-nomultilib-openrc")
;;
"stage3:nomultilib-systemd")
TAGS=("amd64-nomultilib-systemd")
;;
"stage3:systemd")
TAGS=("amd64-systemd" "armv5tel-systemd" "armv6j_hardfp-systemd" "armv7a_hardfp-systemd" "arm64-systemd" "i686-systemd" "ppc64le-systemd" "rv64_lp64d-systemd")
;;
*)
echo "Done! No manifests to push for TARGET=${TARGET}."
exit 0
;;
esac
MANIFEST="${TARGET}"
# Latest manifests
IMAGES=()
for TAG in "${TAGS[@]}"; do
IMAGE="${ORG}/${NAME}:${TAG}"
if docker manifest inspect "${IMAGE}" &>/dev/null; then
IMAGES+=("${IMAGE}")
fi
done
docker manifest create "${ORG}/${MANIFEST}" "${IMAGES[@]}"
docker manifest push "${ORG}/${MANIFEST}"
# Dated manifests
MANIFEST="${MANIFEST}-${VERSION}"
MANIFEST="${MANIFEST/:latest-/:}" # Remove "latest" tag prefix
IMAGES=()
for TAG in "${TAGS[@]}"; do
IMAGE="${ORG}/${NAME}:${TAG}-${VERSION}"
if docker manifest inspect "${IMAGE}" &>/dev/null; then
IMAGES+=("${IMAGE}")
fi
done
docker manifest create "${ORG}/${MANIFEST}" "${IMAGES[@]}"
docker manifest push "${ORG}/${MANIFEST}"