4 Commits
0.3.4 ... 0.4.1

Author SHA1 Message Date
af1f7ea186 fix: destination lack 2019-10-28 07:44:21 +01:00
98dea6ec95 updates kaniko version to 0.10 2019-08-21 15:05:53 +02:00
c687409a35 adds build_args_from_env option 2019-08-20 19:06:12 +02:00
b6420cac1c only print of build env args excitst 2019-08-20 19:06:12 +02:00
2 changed files with 8 additions and 3 deletions

View File

@ -1,4 +1,4 @@
FROM gcr.io/kaniko-project/executor:debug-v0.9.0 FROM gcr.io/kaniko-project/executor:debug-v0.10.0
ENV HOME /root ENV HOME /root
ENV USER root ENV USER root

View File

@ -46,12 +46,16 @@ 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 build_arg; do echo "--build-arg=${build_arg}"; done)
fi fi
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)
fi
if [ -n "${PLUGIN_TAGS:-}" ]; then if [ -n "${PLUGIN_TAGS:-}" ]; then
DESTINATIONS=$(echo "${PLUGIN_TAGS}" | tr ',' '\n' | while read tag; do echo "--destination=${REGISTRY}/${PLUGIN_REPO}:${tag} "; done) DESTINATIONS=$(echo "${PLUGIN_TAGS}" | tr ',' '\n' | while read tag; do echo "--destination=${REGISTRY}/${PLUGIN_REPO}:${tag} "; done)
elif [ -f .tags ]; then elif [ -f .tags ]; then
DESTINATIONS=$(cat .tags| tr ',' '\n' | while read tag; do echo "--destination=${REGISTRY}/${PLUGIN_REPO}:${tag} "; done) DESTINATIONS=$(cat .tags| tr ',' '\n' | while read tag; do echo "--destination=${REGISTRY}/${PLUGIN_REPO}:${tag} "; done)
elif [ -n "${PLUGIN_REPO:-}" ]; then elif [ -n "${PLUGIN_REPO:-}" ]; then
DESTINATIONS="--destination=${PLUGIN_REPO}:latest" DESTINATIONS="--destination=${REGISTRY}/${PLUGIN_REPO}:latest"
else else
DESTINATIONS="--no-push" DESTINATIONS="--no-push"
# Cache is not valid with --no-push # Cache is not valid with --no-push
@ -65,4 +69,5 @@ fi
${DESTINATIONS} \ ${DESTINATIONS} \
${CACHE:-} \ ${CACHE:-} \
${TARGET:-} \ ${TARGET:-} \
${BUILD_ARGS:-} ${BUILD_ARGS:-} \
${BUILD_ARGS_FROM_ENV:-}