Add two new options (--ignore-var-run and env_file), review the dry-run logic and try to fix some issues (#20)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
parent
ec37e00bc1
commit
90c529ae72
1 changed files with 56 additions and 19 deletions
75
plugin.sh
Executable file → Normal file
75
plugin.sh
Executable file → Normal file
|
@ -1,11 +1,32 @@
|
||||||
#!/busybox/sh
|
#!/busybox/busybox sh
|
||||||
|
# shellcheck disable=SC2187
|
||||||
|
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
|
concatenate_strings() {
|
||||||
|
_STR1="${1}"
|
||||||
|
_STR2="${2}"
|
||||||
|
|
||||||
|
if [ -n "${_STR1}" ]; then
|
||||||
|
_STR1="${_STR1} ${_STR2}"
|
||||||
|
else
|
||||||
|
_STR1="${_STR2}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "${_STR1}"
|
||||||
|
}
|
||||||
|
|
||||||
export PATH="$PATH:/kaniko/"
|
export PATH="$PATH:/kaniko/"
|
||||||
|
|
||||||
REGISTRY=${PLUGIN_REGISTRY:-https://index.docker.io/v1/}
|
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
|
||||||
|
|
||||||
if [ "${PLUGIN_USERNAME:-}" ] || [ "${PLUGIN_PASSWORD:-}" ]; then
|
if [ "${PLUGIN_USERNAME:-}" ] || [ "${PLUGIN_PASSWORD:-}" ]; then
|
||||||
DOCKER_AUTH=$(echo -n "${PLUGIN_USERNAME}:${PLUGIN_PASSWORD}" | base64 | tr -d "\n")
|
DOCKER_AUTH=$(echo -n "${PLUGIN_USERNAME}:${PLUGIN_PASSWORD}" | base64 | tr -d "\n")
|
||||||
|
|
||||||
|
@ -30,15 +51,15 @@ CONTEXT=${PLUGIN_CONTEXT:-$PWD}
|
||||||
LOG=${PLUGIN_LOG_LEVEL:-info}
|
LOG=${PLUGIN_LOG_LEVEL:-info}
|
||||||
EXTRA_OPTS=""
|
EXTRA_OPTS=""
|
||||||
|
|
||||||
if [[ -n "${PLUGIN_TARGET:-}" ]]; then
|
if [ -n "${PLUGIN_TARGET:-}" ]; then
|
||||||
TARGET="--target=${PLUGIN_TARGET}"
|
TARGET="--target=${PLUGIN_TARGET}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "${PLUGIN_SKIP_TLS_VERIFY:-}" == "true" ]]; then
|
if [ "${PLUGIN_SKIP_TLS_VERIFY:-}" = "true" ]; then
|
||||||
EXTRA_OPTS="--skip-tls-verify=true"
|
EXTRA_OPTS=$(concatenate_strings "${EXTRA_OPTS}" '--skip-tls-verify=true')
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "${PLUGIN_CACHE:-}" == "true" ]]; then
|
if [ "${PLUGIN_CACHE:-}" = "true" ]; then
|
||||||
CACHE="--cache=true"
|
CACHE="--cache=true"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -51,20 +72,25 @@ if [ -n "${PLUGIN_CACHE_TTL:-}" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -n "${PLUGIN_BUILD_ARGS:-}" ]; then
|
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)
|
BUILD_ARGS=$(echo "${PLUGIN_BUILD_ARGS}" | tr ',' '\n' | while read -r build_arg; do echo "--build-arg ${build_arg}"; done)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
BUILD_ARGS_FROM_ENV=""
|
||||||
if [ -n "${PLUGIN_BUILD_ARGS_FROM_ENV:-}" ]; then
|
if [ -n "${PLUGIN_BUILD_ARGS_FROM_ENV:-}" ]; then
|
||||||
BUILD_ARGS_FROM_ENV=$(echo "${PLUGIN_BUILD_ARGS_FROM_ENV}" | tr ',' '\n' | while read build_arg; do echo "--build-arg ${build_arg}=$(eval "echo \$$build_arg")"; done)
|
# 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')
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# auto_tag, if set auto_tag: true, auto generate .tags file
|
# auto_tag, if set auto_tag: true, auto generate .tags file
|
||||||
# support format Major.Minor.Release or start with `v`
|
# support format Major.Minor.Release or start with `v`
|
||||||
# docker tags: Major, Major.Minor, Major.Minor.Release and latest
|
# docker tags: Major, Major.Minor, Major.Minor.Release and latest
|
||||||
if [[ "${PLUGIN_AUTO_TAG:-}" == "true" ]]; then
|
if [ "${PLUGIN_AUTO_TAG:-}" = "true" ]; then
|
||||||
TAG=$(echo "${CI_COMMIT_TAG:-}" |sed 's/^v//g')
|
TAG=$(echo "${CI_COMMIT_TAG:-}" |sed 's/^v//g')
|
||||||
part=$(echo "${TAG}" |tr '.' '\n' |wc -l)
|
part=$(echo "${TAG}" |tr '.' '\n' |wc -l)
|
||||||
# expect number
|
# expect number
|
||||||
|
# shellcheck disable=SC3020
|
||||||
echo "${TAG}" |grep -E "[a-z-]" &>/dev/null && isNum=1 || isNum=0
|
echo "${TAG}" |grep -E "[a-z-]" &>/dev/null && isNum=1 || isNum=0
|
||||||
|
|
||||||
if [ -z "${TAG:-}" ]; then
|
if [ -z "${TAG:-}" ]; then
|
||||||
|
@ -85,30 +111,41 @@ if [[ "${PLUGIN_AUTO_TAG:-}" == "true" ]]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -n "${PLUGIN_MIRRORS:-}" ]; then
|
if [ -n "${PLUGIN_MIRRORS:-}" ]; then
|
||||||
MIRROR="$(echo "${PLUGIN_MIRRORS}" | tr ',' '\n' | while read mirror; do echo "--registry-mirror=${mirror}"; done)"
|
MIRROR="$(echo "${PLUGIN_MIRRORS}" | tr ',' '\n' | while read -r mirror; do echo "--registry-mirror=${mirror}"; done)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -n "${PLUGIN_TAGS:-}" ]; then
|
DESTINATIONS=""
|
||||||
DESTINATIONS=$(echo "${PLUGIN_TAGS}" | tr ',' '\n' | while read tag; do echo "--destination=${REGISTRY}/${PLUGIN_REPO}:${tag} "; done)
|
if [ "${PLUGIN_DRY_RUN:-}" = "true" ] || [ -z "${PLUGIN_REPO:-}" ]; then
|
||||||
elif [ -f .tags ]; then
|
|
||||||
DESTINATIONS=$(tr ',' '\n' < .tags | while read tag; do echo "--destination=${REGISTRY}/${PLUGIN_REPO}:${tag} "; done)
|
|
||||||
elif [ -n "${PLUGIN_REPO:-}" ] && [ "${PLUGIN_DRY_RUN:-}" != "true" ]; then
|
|
||||||
DESTINATIONS="--destination=${REGISTRY}/${PLUGIN_REPO}:latest"
|
|
||||||
else
|
|
||||||
DESTINATIONS="--no-push"
|
DESTINATIONS="--no-push"
|
||||||
# Cache is not valid with --no-push
|
# Cache is not valid with --no-push
|
||||||
CACHE=""
|
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
|
fi
|
||||||
|
|
||||||
|
if [ "${PLUGIN_IGNORE_VAR_RUN:-}" = "false" ]; then
|
||||||
|
EXTRA_OPTS=$(concatenate_strings "${EXTRA_OPTS}" "--ignore-var-run=false")
|
||||||
|
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
|
||||||
/kaniko/executor -v "${LOG}" \
|
/kaniko/executor -v "${LOG}" \
|
||||||
--context="${CONTEXT}" \
|
--context="${CONTEXT}" \
|
||||||
--dockerfile="${DOCKERFILE}" \
|
--dockerfile="${DOCKERFILE}" \
|
||||||
"${EXTRA_OPTS}" \
|
${EXTRA_OPTS} \
|
||||||
"${DESTINATIONS}" \
|
${DESTINATIONS} \
|
||||||
"${CACHE:-}" \
|
"${CACHE:-}" \
|
||||||
"${CACHE_TTL:-}" \
|
"${CACHE_TTL:-}" \
|
||||||
"${CACHE_REPO:-}" \
|
"${CACHE_REPO:-}" \
|
||||||
"${TARGET:-}" \
|
"${TARGET:-}" \
|
||||||
"${BUILD_ARGS:-}" \
|
"${BUILD_ARGS:-}" \
|
||||||
"${BUILD_ARGS_FROM_ENV:-}" \
|
${BUILD_ARGS_FROM_ENV:-} \
|
||||||
"${MIRROR:-}"
|
"${MIRROR:-}"
|
||||||
|
|
Reference in a new issue