Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for kaniko --debug-shell and extra fixes #10

Merged
merged 4 commits into from
Aug 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ docker login docker.io
# Short form
kubectl build -c . -d docker.io/some/image:latest

# Run debug shell
kubectl build -c . --no-push --debug

# Use cache building
kubectl build --context . --destination docker.io/some/image:latest --cache --cache-repo docker.io/some/cache

Expand Down
83 changes: 58 additions & 25 deletions kubectl-build
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@ set -e
export DOCKER_CONFIG=${KUBECTL_BUILD_DOCKER_CONFIG:-${DOCKER_CONFIG:-$HOME/.docker/config.json}}
export KUBECONFIG="${KUBECTL_BUILD_KUBECONFIG:-$KUBECONFIG}"
kubectl=kubectl
version=1.6.0
image="${KUBECTL_BUILD_IMAGE:-ghcr.io/kvaps/kaniko-executor:v1.6.0}"
name="${KUBECTL_BUILD_NAME_OVERRIDE:-kaniko-$(env LC_ALL=C tr -dc a-z0-9 </dev/urandom | head -c 6)}"
context=""
debug="false"
tty="false"
usetar="false"
generator=""
digestfile=""
imagenamewithdigestfile=""
Expand All @@ -14,6 +20,10 @@ while [ $# -gt 0 ]; do
key="$1"

case $key in
-v | --version)
echo "kubectl-build $version"
exit 0
;;
-c | --context)
context="$2"
shift
Expand Down Expand Up @@ -41,6 +51,14 @@ while [ $# -gt 0 ]; do
imagenamewithdigestfile="${key##*=}"
shift
;;
--debug)
debug="true"
shift
;;
--debug=*)
debug="${key##*=}"
shift
;;
--kubecontext)
nodefaultctx=1
kubectl="$kubectl --context $2"
Expand Down Expand Up @@ -89,16 +107,23 @@ else
args="$args\"--image-name-with-digest-file=\""
fi

if [ -z "$context" ]; then
args="$args ]"
elif [ -d "$context" ]; then
args="$args, \"--context=tar://stdin\" ]"
if [ -d "$context" ] || [ "$context" = "tar://stdin" ]; then
args="$args, \"--context=tar://stdin\""
usetar=true
tty=false
else
args="$args, \"--context=$context\" ]"
args="$args, \"--context=$context\""
usetar=false
if [ $debug = true ]; then
tty=true
fi
fi

image="${KUBECTL_BUILD_IMAGE:-gcr.io/kaniko-project/executor:v1.6.0}"
name="${KUBECTL_BUILD_NAME_OVERRIDE:-kaniko-$(env LC_ALL=C tr -dc a-z0-9 </dev/urandom | head -c 6)}"
if [ "$debug" = true ]; then
args="$args, \"--debug\" ]"
else
args="$args ]"
fi

overrides="$(
cat <<EOT
Expand All @@ -109,6 +134,7 @@ overrides="$(
{
"image": "$image",
"name": "kaniko",
"tty": $tty,
"stdin": true,
"stdinOnce": true,
"terminationMessagePath": "/dev/termination-log",
Expand All @@ -129,39 +155,46 @@ if [ "$m" -lt 18 ]; then
generator="--generator=run-pod/v1"
fi

# Support bsdtar as well
m=$(tar --version | awk '{print $1; exit}')
if [ "$m" != "bsdtar" ]; then
tarf() {
tarf() {
# Support bsdtar as well
m=$(tar --version | awk '{print $1; exit}')
if [ "$m" != "bsdtar" ]; then
if [ -f "$DOCKER_CONFIG" ]; then
tar -P --transform "s|^${DOCKER_CONFIG}|../.docker/config.json|" --record-size=100K --checkpoint=1 --checkpoint-action='ttyout=Sending build context to Kaniko %{r}T\r' --exclude-ignore=.dockerignore "$@" "$DOCKER_CONFIG"
else
tar -P --record-size=100K --checkpoint=1 --checkpoint-action='ttyout=Sending build context to Kaniko %{r}T\r' --exclude-ignore=.dockerignore "$@"
fi
}
else
tarf() {
else
if [ -f "$DOCKER_CONFIG" ]; then
tar -P -s "|^${DOCKER_CONFIG}|../.docker/config.json|" "$@" "$DOCKER_CONFIG"
else
tar -P "$@"
fi
}
fi

if [ -n "$context" ] && ([ ! -d "$context" ] && [ "$context" != "tar://stdin" ]); then
echo "Error: $context: Cannot open: Not a directory" >&2
exit 1
fi
fi
}

if [ "$KUBECTL_BUILD_KEEP_POD" != "true" ]; then
trap "EC=\$?; $kubectl delete pod "$name" --wait=false 2>/dev/null || true; exit \$EC" EXIT INT TERM
trap "ec=\$?; $kubectl delete pod "$name" --wait=false 2>/dev/null || true; exit \$ec" EXIT INT TERM
fi

echo "spawning \"$name\""
if [ -n "$context" ] && [ "$context" != "tar://stdin" ]; then
tarf -C "$context" -czf - . |
$kubectl run --image "$image" --restart=Never --overrides="$overrides" -i "$name" $generator
if [ "$usetar" = "true" ]; then
pidfile=$(mktemp -u)
(
tarf -C "$context" -czf - .
if [ "$debug" = true ]; then
sh -c 'echo $PPID' > "$pidfile"
trap 'stty icanon echo' EXIT
stty -icanon -echo
cat
fi
) | (
$kubectl run --image "$image" --restart=Never --overrides="$overrides" -i "$name" $generator || ec=$?
if [ "$debug" = true ]; then
kill $(cat "$pidfile")
fi
exit $ec
)
else
$kubectl run --image "$image" --restart=Never --overrides="$overrides" -i "$name" $generator
fi
Expand Down