This repository has been archived on 2024-05-25. You can view files and clone it, but cannot push or open issues or pull requests.
plugin-kaniko/plugin.sh

152 lines
4.5 KiB
Bash
Raw Permalink Normal View History

#!/busybox/busybox sh
# shellcheck disable=SC2187
2018-11-21 15:45:09 +01:00
set -euo pipefail
concatenate_strings() {
_STR1="${1}"
_STR2="${2}"
if [ -n "${_STR1}" ]; then
_STR1="${_STR1} ${_STR2}"
else
_STR1="${_STR2}"
fi
echo "${_STR1}"
}
2024-01-12 22:13:24 +01:00
export PATH="$PATH:/kaniko/"
2018-11-21 15:45:09 +01:00
REGISTRY=${PLUGIN_REGISTRY:-https://index.docker.io/v1/}
if [ -f "${PWD}/${PLUGIN_ENV_FILE:-}" ]; then
# shellcheck disable=SC3001
while IFS= read -r line; do
export "${line?}"
done < <(grep -v '^ *#' < "${PWD}/${PLUGIN_ENV_FILE}")
fi
2019-06-01 15:00:26 +02:00
if [ "${PLUGIN_USERNAME:-}" ] || [ "${PLUGIN_PASSWORD:-}" ]; then
2024-01-12 22:13:24 +01:00
DOCKER_AUTH=$(echo -n "${PLUGIN_USERNAME}:${PLUGIN_PASSWORD}" | base64 | tr -d "\n")
2018-11-21 15:45:09 +01:00
2019-06-01 15:00:26 +02:00
cat > /kaniko/.docker/config.json <<DOCKERJSON
2018-11-21 15:45:09 +01:00
{
"auths": {
2019-01-07 03:42:42 +01:00
"${REGISTRY}": {
2018-11-21 15:45:09 +01:00
"auth": "${DOCKER_AUTH}"
}
}
}
DOCKERJSON
2019-06-01 15:00:26 +02:00
fi
if [ "${PLUGIN_JSON_KEY:-}" ];then
echo "${PLUGIN_JSON_KEY}" > /kaniko/gcr.json
2019-06-01 15:00:26 +02:00
export GOOGLE_APPLICATION_CREDENTIALS=/kaniko/gcr.json
fi
2018-11-21 15:45:09 +01:00
DOCKERFILE=${PLUGIN_DOCKERFILE:-Dockerfile}
CONTEXT=${PLUGIN_CONTEXT:-$PWD}
LOG=${PLUGIN_LOG_LEVEL:-info}
EXTRA_OPTS=""
2019-01-08 20:26:52 +01:00
if [ -n "${PLUGIN_TARGET:-}" ]; then
TARGET="--target=${PLUGIN_TARGET}"
fi
if [ "${PLUGIN_SKIP_TLS_VERIFY:-}" = "true" ]; then
EXTRA_OPTS=$(concatenate_strings "${EXTRA_OPTS}" '--skip-tls-verify=true')
fi
if [ "${PLUGIN_CACHE:-}" = "true" ]; then
2019-01-08 20:26:52 +01:00
CACHE="--cache=true"
fi
if [ -n "${PLUGIN_CACHE_REPO:-}" ]; then
CACHE_REPO="--cache-repo=${REGISTRY}/${PLUGIN_CACHE_REPO}"
fi
if [ -n "${PLUGIN_CACHE_TTL:-}" ]; then
CACHE_TTL="--cache-ttl=${PLUGIN_CACHE_TTL}"
fi
if [ -n "${PLUGIN_BUILD_ARGS:-}" ]; then
2024-02-01 23:14:34 +01:00
BUILD_ARGS=$(echo "${PLUGIN_BUILD_ARGS}" | tr ',' '\n' | while read -r build_arg; do echo "--build-arg \"${build_arg}\""; done)
fi
2018-11-21 15:45:09 +01:00
BUILD_ARGS_FROM_ENV=""
2019-08-18 22:37:18 +02:00
if [ -n "${PLUGIN_BUILD_ARGS_FROM_ENV:-}" ]; then
# shellcheck disable=SC3001
while IFS= read -r build_arg; do
BUILD_ARGS_FROM_ENV=$(concatenate_strings "${BUILD_ARGS_FROM_ENV}" "--build-arg ${build_arg}=$(eval "echo \$$build_arg")")
done < <(echo "${PLUGIN_BUILD_ARGS_FROM_ENV}" | tr ',' '\n')
2019-08-18 22:37:18 +02:00
fi
2019-11-04 10:11:59 +01:00
# auto_tag, if set auto_tag: true, auto generate .tags file
# support format Major.Minor.Release or start with `v`
# docker tags: Major, Major.Minor, Major.Minor.Release and latest
if [ "${PLUGIN_AUTO_TAG:-}" = "true" ]; then
TAG=$(echo "${CI_COMMIT_TAG:-}" |sed 's/^v//g')
part=$(echo "${TAG}" |tr '.' '\n' |wc -l)
# expect number
# shellcheck disable=SC3020
2024-01-12 22:22:45 +01:00
echo "${TAG}" |grep -E "[a-z-]" &>/dev/null && isNum=1 || isNum=0
2024-01-12 22:22:45 +01:00
if [ -z "${TAG:-}" ]; then
echo "latest" > .tags
2024-01-12 22:22:45 +01:00
elif [ "${isNum}" -eq 1 ] || [ "${part}" -gt 3 ]; then
echo "${TAG},latest" > .tags
2019-11-04 10:11:59 +01:00
else
major=$(echo "${TAG}" |awk -F'.' '{print $1}')
minor=$(echo "${TAG}" |awk -F'.' '{print $2}')
release=$(echo "${TAG}" |awk -F'.' '{print $3}')
2024-01-12 21:28:57 +01:00
2019-11-04 10:11:59 +01:00
major=${major:-0}
minor=${minor:-0}
release=${release:-0}
2024-01-12 21:28:57 +01:00
echo "${major},${major}.${minor},${major}.${minor}.${release},latest" > .tags
2024-01-12 21:28:57 +01:00
fi
2019-11-04 10:11:59 +01:00
fi
if [ -n "${PLUGIN_MIRRORS:-}" ]; then
MIRROR="$(echo "${PLUGIN_MIRRORS}" | tr ',' '\n' | while read -r mirror; do echo "--registry-mirror=${mirror}"; done)"
fi
DESTINATIONS=""
if [ "${PLUGIN_DRY_RUN:-}" = "true" ] || [ -z "${PLUGIN_REPO:-}" ]; then
DESTINATIONS="--no-push"
# Cache is not valid with --no-push
CACHE=""
elif [ -n "${PLUGIN_TAGS:-}" ]; then
DESTINATIONS=$(echo "${PLUGIN_TAGS}" | tr ',' '\n' | while read -r tag; do echo "--destination=${REGISTRY}/${PLUGIN_REPO}:${tag} "; done)
elif [ -f .tags ]; then
# shellcheck disable=SC3001
while IFS= read -r tag; do
DESTINATIONS=$(concatenate_strings "${DESTINATIONS}" "--destination=${REGISTRY}/${PLUGIN_REPO}:${tag}")
done < <(sed -e 's/,\s*/\n/g' .tags)
elif [ -n "${PLUGIN_REPO:-}" ]; then
DESTINATIONS="--destination=${REGISTRY}/${PLUGIN_REPO}:latest"
fi
if [ "${PLUGIN_IGNORE_VAR_RUN:-}" = "false" ]; then
EXTRA_OPTS=$(concatenate_strings "${EXTRA_OPTS}" "--ignore-var-run=false")
2019-01-08 01:46:57 +01:00
fi
# Double quotes can't be used, otherwise kaniko takes all arguments as one.
# With bash, an array could have been used to avoid disabling this check.
# shellcheck disable=SC2086
2024-01-12 22:22:45 +01:00
/kaniko/executor -v "${LOG}" \
--context="${CONTEXT}" \
--dockerfile="${DOCKERFILE}" \
${EXTRA_OPTS} \
${DESTINATIONS} \
2024-01-12 22:22:45 +01:00
"${CACHE:-}" \
"${CACHE_TTL:-}" \
"${CACHE_REPO:-}" \
"${TARGET:-}" \
2024-02-01 23:14:34 +01:00
${BUILD_ARGS:-} \
${BUILD_ARGS_FROM_ENV:-} \
2024-01-12 22:22:45 +01:00
"${MIRROR:-}"