From 1d47d5037a330c8f77ded6a8f0fff5c2190356f8 Mon Sep 17 00:00:00 2001 From: Chris Smith Date: Wed, 5 Aug 2026 17:27:33 +0000 Subject: [PATCH 1/2] chore: remove legacy DOCKER_API_VERSION override This override is no longer needed after the Kokoro VM host pool is upgraded to Ubuntu 22 via cl/959179713. DO NOT MERGE this until cl/959179713 has been submitted and verified. --- .kokoro/gas/trigger.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/.kokoro/gas/trigger.sh b/.kokoro/gas/trigger.sh index 1c2a0992..eee9e3b5 100755 --- a/.kokoro/gas/trigger.sh +++ b/.kokoro/gas/trigger.sh @@ -7,8 +7,5 @@ set -eo pipefail export GEM_HOME=$HOME/.gem export PATH=$GEM_HOME/bin:$PATH -# Force Docker client to use legacy API version 1.39 to match Kokoro host daemon. -export DOCKER_API_VERSION=1.39 - cd gas toys gas kokoro-trigger -v From 8c4a6dd498b7850427747d83f526722368f21c05 Mon Sep 17 00:00:00 2001 From: Chris Smith Date: Mon, 17 Aug 2026 19:05:14 +0000 Subject: [PATCH 2/2] chore: remove DOCKER_API_VERSION override and restore debug telemetry Removes the legacy DOCKER_API_VERSION=1.39 override which is incompatible with the upgraded Ubuntu 22 host VM pool (cloud-sdk-release-ubu22). Also restores environment debug telemetry to help verify Docker connectivity on the new pool. --- .kokoro/gas/trigger.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.kokoro/gas/trigger.sh b/.kokoro/gas/trigger.sh index eee9e3b5..a2d82b40 100755 --- a/.kokoro/gas/trigger.sh +++ b/.kokoro/gas/trigger.sh @@ -7,5 +7,19 @@ set -eo pipefail export GEM_HOME=$HOME/.gem export PATH=$GEM_HOME/bin:$PATH +echo "=== ENVIRONMENT DEBUG ===" +echo "PATH: $PATH" +echo "User ID: $(id)" +echo "Kernel: $(uname -r)" +echo "Glibc version: $(ldd --version | head -n 1)" +echo "DOCKER_API_VERSION: $DOCKER_API_VERSION" +if which docker > /dev/null 2>&1; then + echo "Docker path: $(which docker)" + ls -l $(which docker) + docker version || true +else + echo "Docker binary not found in PATH" +fi + cd gas toys gas kokoro-trigger -v