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

45 lines
1.0 KiB
Bash
Raw Normal View History

#!/busybox/sh
2018-11-21 15:45:09 +01:00
set -euo pipefail
export PATH=$PATH:/kaniko/
DOCKER_AUTH=`echo -n "${PLUGIN_USERNAME}:${PLUGIN_PASSWORD}" | base64`
2018-11-21 15:45:09 +01:00
REGISTRY=${PLUGIN_REGISTRY:-https://index.docker.io/v1/}
2019-01-07 03:42:42 +01: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
DOCKERFILE=${PLUGIN_DOCKERFILE:-Dockerfile}
CONTEXT=${PLUGIN_CONTEXT:-$PWD}
LOG=${PLUGIN_LOG:-info}
2019-01-08 20:26:52 +01:00
if [[ "${PLUGIN_CACHE:-}" == "true" ]]; then
CACHE="--cache=true"
fi
if [[ -n "${PLUGIN_BUILD_ARGS:-}" ]]; then
BUILD_ARGS=$(echo "${PLUGIN_BUILD_ARGS}" | tr ',' '\n' | while read build_arg; do echo "--build-arg=${build_arg}"; done)
fi
2018-11-21 15:45:09 +01:00
2019-01-08 01:46:57 +01:00
if [[ -n "${PLUGIN_TAGS:-}" ]]; then
DESTINATIONS=$(echo "${PLUGIN_TAGS}" | tr ',' '\n' | while read tag; do echo "--destination=${PLUGIN_REPO}:${tag} "; done)
else
DESTINATIONS="--destination=${PLUGIN_REPO}:latest"
fi
2018-11-21 15:45:09 +01:00
/kaniko/executor -v ${LOG} \
--context=${CONTEXT} \
--dockerfile=${DOCKERFILE} \
2019-01-08 01:46:57 +01:00
${DESTINATIONS} \
2019-01-08 20:26:52 +01:00
${CACHE:-} \
${BUILD_ARGS:-}