diff --git a/build/common.sh b/build/common.sh index 0c50ce60e06..4022ce924b8 100755 --- a/build/common.sh +++ b/build/common.sh @@ -95,9 +95,9 @@ readonly KUBE_RSYNC_PORT="${KUBE_RSYNC_PORT:-}" readonly KUBE_CONTAINER_RSYNC_PORT=8730 # These are the default versions (image tags) for their respective base images. -readonly __default_distroless_iptables_version=v0.2.1 +readonly __default_distroless_iptables_version=v0.2.2 readonly __default_go_runner_version=v2.3.1-go1.20.2-bullseye.0 -readonly __default_setcap_version=bullseye-v1.3.0 +readonly __default_setcap_version=bullseye-v1.4.2 # These are the base images for the Docker-wrapped binaries. readonly KUBE_GORUNNER_IMAGE="${KUBE_GORUNNER_IMAGE:-$KUBE_BASE_IMAGE_REGISTRY/go-runner:$__default_go_runner_version}" diff --git a/build/dependencies.yaml b/build/dependencies.yaml index 8931e745e4e..c80306d5c5d 100644 --- a/build/dependencies.yaml +++ b/build/dependencies.yaml @@ -139,7 +139,7 @@ dependencies: match: BASE_IMAGE_VERSION\?= - name: "registry.k8s.io/distroless-iptables: dependents" - version: v0.2.1 + version: v0.2.2 refPaths: - path: build/common.sh match: __default_distroless_iptables_version= @@ -215,7 +215,7 @@ dependencies: match: configs\[Pause\] = Config{list\.GcRegistry, "pause", "\d+\.\d+(.\d+)?"} - name: "registry.k8s.io/setcap: dependents" - version: bullseye-v1.3.0 + version: bullseye-v1.4.2 refPaths: - path: build/common.sh match: __default_setcap_version= diff --git a/test/utils/image/manifest.go b/test/utils/image/manifest.go index 2b2e16428db..4d37e666bbc 100644 --- a/test/utils/image/manifest.go +++ b/test/utils/image/manifest.go @@ -245,7 +245,7 @@ func initImageConfigs(list RegistryList) (map[ImageID]Config, map[ImageID]Config configs[BusyBox] = Config{list.PromoterE2eRegistry, "busybox", "1.29-4"} configs[CudaVectorAdd] = Config{list.PromoterE2eRegistry, "cuda-vector-add", "1.0"} configs[CudaVectorAdd2] = Config{list.PromoterE2eRegistry, "cuda-vector-add", "2.2"} - configs[DistrolessIptables] = Config{list.BuildImageRegistry, "distroless-iptables", "v0.2.1"} + configs[DistrolessIptables] = Config{list.BuildImageRegistry, "distroless-iptables", "v0.2.2"} configs[Etcd] = Config{list.GcEtcdRegistry, "etcd", "3.5.7-0"} configs[GlusterDynamicProvisioner] = Config{list.PromoterE2eRegistry, "glusterdynamic-provisioner", "v1.3"} configs[Httpd] = Config{list.PromoterE2eRegistry, "httpd", "2.4.38-4"}