0
0
Fork 0
mirror of https://github.com/netdata/netdata.git synced 2025-04-15 01:58:34 +00:00
netdata_netdata/packaging/docker/publish.sh
Konstantinos Natsakis 876e9e6529
packaging/docker/{build,publish}.sh: Simplify scripts. Support only single ARCH ()
* packaging/docker/{build,publish}.sh: Simplify scripts. Support only single ARCH

* packaging/docker/build.sh: Remove eval
2020-04-23 00:29:42 +03:00

116 lines
3.7 KiB
Bash
Executable file

#!/usr/bin/env bash
#
# Cross-arch docker publish helper script
# Needs docker in version >18.02 due to usage of manifests
#
# Copyright: SPDX-License-Identifier: GPL-3.0-or-later
#
# Author : Pavlos Emm. Katsoulakis (paul@netdata.cloud)
set -e
if [ "${BASH_VERSINFO[0]}" -lt "4" ]; then
echo "This mechanism currently can only run on BASH version 4 and above"
exit 1
fi
WORKDIR="$(mktemp -d)" # Temporary folder, removed after script is done
VERSION="$1"
if [ -z "${ARCH}" ]; then
echo "ARCH not set, build cannot proceed"
exit 1
fi
DOCKER_CMD="docker --config ${WORKDIR}"
GIT_MAIL=${GIT_MAIL:-"bot@netdata.cloud"}
GIT_USER=${GIT_USER:-"netdatabot"}
if [ -z ${REPOSITORY} ]; then
REPOSITORY="${TRAVIS_REPO_SLUG}"
if [ -z ${REPOSITORY} ]; then
echo "REPOSITORY not set, publish cannot proceed"
exit 1
else
echo "REPOSITORY was not detected, attempted to use TRAVIS_REPO_SLUG setting: ${TRAVIS_REPO_SLUG}"
fi
fi
# Ensure there is a version, the most appropriate one
if [ "${VERSION}" == "" ]; then
VERSION=$(git tag --points-at)
if [ "${VERSION}" == "" ]; then
VERSION="latest"
fi
fi
MANIFEST_LIST="${REPOSITORY}:${VERSION}"
# There is no reason to continue if we cannot log in to docker hub
if [ -z ${DOCKER_USERNAME+x} ] || [ -z ${DOCKER_PWD+x} ]; then
echo "No docker hub username or password found, aborting without publishing"
exit 1
fi
# If we are not in netdata git repo, at the top level directory, fail
TOP_LEVEL=$(basename "$(git rev-parse --show-toplevel)")
CWD=$(git rev-parse --show-cdup)
if [ ! -z $CWD ] || [ ! "${TOP_LEVEL}" == "netdata" ]; then
echo "Run as ./packaging/docker/$(basename "$0") from top level directory of netdata git repository"
echo "Docker build process aborted"
exit 1
fi
echo "Docker image publishing in progress.."
echo "Version : ${VERSION}"
echo "Repository : ${REPOSITORY}"
echo "Architecture : ${ARCH}"
echo "Manifest list: ${MANIFEST_LIST}"
# Create temporary docker CLI config with experimental features enabled (manifests v2 need it)
echo '{"experimental":"enabled"}' > "${WORKDIR}"/config.json
# Login to docker hub to allow futher operations
echo "$DOCKER_PWD" | $DOCKER_CMD login -u "$DOCKER_USERNAME" --password-stdin
# Push images to registry
TAG="${MANIFEST_LIST}-${ARCH}"
echo "Publishing image ${TAG}.."
$DOCKER_CMD push "${TAG}"
published() {
curl -s "https://registry.hub.docker.com/v2/repositories/${REPOSITORY}/tags" | jq -e -r '.results[] | select(.name == "'"${VERSION}-${ARCH}"'")' > /dev/null
}
retry 5 published
echo "Image ${TAG} published succesfully!"
# Recreate docker manifest list
echo "Getting tag list for version '${VERSION}'.."
TAGS=($(curl -s https://registry.hub.docker.com/v2/repositories/${REPOSITORY}/tags/ | jq -r '.results[]["name"]' | grep "^${VERSION}-"))
echo "Creating manifest list.."
$DOCKER_CMD manifest create --amend "${MANIFEST_LIST}" "${TAGS[@]/#/${REPOSITORY}:}"
# Annotate manifest with CPU architecture information
declare -A ARCH_MAP
ARCH_MAP=(["i386"]="386" ["amd64"]="amd64" ["armhf"]="arm" ["aarch64"]="arm64")
echo "Executing manifest annotate.."
for TAG in "${TAGS[@]}"; do
ARCH="${TAG#${VERSION}-}"
echo "Annotating manifest for $ARCH, with TAG: ${REPOSITORY}:${TAG} (Manifest list: ${MANIFEST_LIST})"
$DOCKER_CMD manifest annotate "${MANIFEST_LIST}" "${REPOSITORY}:${TAG}" --os linux --arch "${ARCH_MAP[$ARCH]}"
done
# Push manifest to docker hub
echo "Pushing manifest list to docker.."
$DOCKER_CMD manifest push -p "${MANIFEST_LIST}"
# Show current manifest (debugging purpose only)
echo "Evaluating manifest list entry"
$DOCKER_CMD manifest inspect "${MANIFEST_LIST}"
# Cleanup
rm -r "${WORKDIR}"
echo "Docker publishing process completed!"