mirror of https://github.com/k3s-io/k3s
Bump debian-* base image versions to latest
parent
f52713515b
commit
1b9d0c1094
|
@ -89,8 +89,8 @@ readonly KUBE_CONTAINER_RSYNC_PORT=8730
|
||||||
# $1 - server architecture
|
# $1 - server architecture
|
||||||
kube::build::get_docker_wrapped_binaries() {
|
kube::build::get_docker_wrapped_binaries() {
|
||||||
local arch=$1
|
local arch=$1
|
||||||
local debian_base_version=0.4.0
|
local debian_base_version=0.4.1
|
||||||
local debian_iptables_version=v11.0
|
local debian_iptables_version=v11.0.1
|
||||||
### If you change any of these lists, please also update DOCKERIZED_BINARIES
|
### If you change any of these lists, please also update DOCKERIZED_BINARIES
|
||||||
### in build/BUILD. And kube::golang::server_image_targets
|
### in build/BUILD. And kube::golang::server_image_targets
|
||||||
local targets=(
|
local targets=(
|
||||||
|
|
|
@ -70,26 +70,26 @@ http_file(
|
||||||
|
|
||||||
docker_pull(
|
docker_pull(
|
||||||
name = "debian-base-amd64",
|
name = "debian-base-amd64",
|
||||||
digest = "sha256:86176bc8ccdc4d8ea7fbf6ba4b57fcefc2cb61ff7413114630940474ff9bf751",
|
digest = "sha256:8ccb65cd2dd7e0c24193d0742a20e4a673dbd11af5a33f16fcd471a31486866c",
|
||||||
registry = "k8s.gcr.io",
|
registry = "k8s.gcr.io",
|
||||||
repository = "debian-base-amd64",
|
repository = "debian-base-amd64",
|
||||||
tag = "0.4.0", # ignored, but kept here for documentation
|
tag = "0.4.1", # ignored, but kept here for documentation
|
||||||
)
|
)
|
||||||
|
|
||||||
docker_pull(
|
docker_pull(
|
||||||
name = "debian-iptables-amd64",
|
name = "debian-iptables-amd64",
|
||||||
digest = "sha256:d4ff8136b9037694a3165a7fff6a91e7fc828741b8ea1eda226d4d9ea5d23abb",
|
digest = "sha256:9c41b4c326304b94eb96fdd2e181aa6e9995cc4642fcdfb570cedd73a419ba39",
|
||||||
registry = "k8s.gcr.io",
|
registry = "k8s.gcr.io",
|
||||||
repository = "debian-iptables-amd64",
|
repository = "debian-iptables-amd64",
|
||||||
tag = "v11.0", # ignored, but kept here for documentation
|
tag = "v11.0.1", # ignored, but kept here for documentation
|
||||||
)
|
)
|
||||||
|
|
||||||
docker_pull(
|
docker_pull(
|
||||||
name = "debian-hyperkube-base-amd64",
|
name = "debian-hyperkube-base-amd64",
|
||||||
digest = "sha256:4a77bc882f7d629c088a11ff144a2e86660268fddf63b61f52b6a93d16ab83f0",
|
digest = "sha256:5d4ea2fb5fbe9a9a9da74f67cf2faefc881968bc39f2ac5d62d9167e575812a1",
|
||||||
registry = "k8s.gcr.io",
|
registry = "k8s.gcr.io",
|
||||||
repository = "debian-hyperkube-base-amd64",
|
repository = "debian-hyperkube-base-amd64",
|
||||||
tag = "0.12.0", # ignored, but kept here for documentation
|
tag = "0.12.1", # ignored, but kept here for documentation
|
||||||
)
|
)
|
||||||
|
|
||||||
docker_pull(
|
docker_pull(
|
||||||
|
|
|
@ -18,7 +18,7 @@ TEMP_DIR:=$(shell mktemp -d)
|
||||||
VERSION=v9.0
|
VERSION=v9.0
|
||||||
KUBECTL_VERSION?=v1.13.2
|
KUBECTL_VERSION?=v1.13.2
|
||||||
|
|
||||||
BASEIMAGE=k8s.gcr.io/debian-base-$(ARCH):0.4.0
|
BASEIMAGE=k8s.gcr.io/debian-base-$(ARCH):0.4.1
|
||||||
|
|
||||||
SUDO=$(if $(filter 0,$(shell id -u)),,sudo)
|
SUDO=$(if $(filter 0,$(shell id -u)),,sudo)
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ KUBECTL_BIN?=$(shell pwd)/../../../$(OUT_DIR)/dockerized/bin/linux/$(ARCH)/kubec
|
||||||
E2E_TEST_BIN?=$(shell pwd)/../../../$(OUT_DIR)/dockerized/bin/linux/$(ARCH)/e2e.test
|
E2E_TEST_BIN?=$(shell pwd)/../../../$(OUT_DIR)/dockerized/bin/linux/$(ARCH)/e2e.test
|
||||||
CLUSTER_DIR?=$(shell pwd)/../../../cluster/
|
CLUSTER_DIR?=$(shell pwd)/../../../cluster/
|
||||||
|
|
||||||
BASEIMAGE=k8s.gcr.io/debian-hyperkube-base-$(ARCH):0.12.0
|
BASEIMAGE=k8s.gcr.io/debian-hyperkube-base-$(ARCH):0.12.1
|
||||||
TEMP_DIR:=$(shell mktemp -d -t conformanceXXXXXX)
|
TEMP_DIR:=$(shell mktemp -d -t conformanceXXXXXX)
|
||||||
|
|
||||||
all: build
|
all: build
|
||||||
|
|
|
@ -22,7 +22,7 @@ ARCH?=amd64
|
||||||
OUT_DIR?=_output
|
OUT_DIR?=_output
|
||||||
HYPERKUBE_BIN?=$(shell pwd)/../../../$(OUT_DIR)/dockerized/bin/linux/$(ARCH)/hyperkube
|
HYPERKUBE_BIN?=$(shell pwd)/../../../$(OUT_DIR)/dockerized/bin/linux/$(ARCH)/hyperkube
|
||||||
|
|
||||||
BASEIMAGE=k8s.gcr.io/debian-hyperkube-base-$(ARCH):0.12.0
|
BASEIMAGE=k8s.gcr.io/debian-hyperkube-base-$(ARCH):0.12.1
|
||||||
TEMP_DIR:=$(shell mktemp -d -t hyperkubeXXXXXX)
|
TEMP_DIR:=$(shell mktemp -d -t hyperkubeXXXXXX)
|
||||||
|
|
||||||
all: build
|
all: build
|
||||||
|
|
|
@ -273,7 +273,7 @@ while true; do sleep 1; done
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
description: "should be able to pull image from gcr.io [LinuxOnly]",
|
description: "should be able to pull image from gcr.io [LinuxOnly]",
|
||||||
image: "gcr.io/google-containers/debian-base:0.4.0",
|
image: "gcr.io/google-containers/debian-base:0.4.1",
|
||||||
phase: v1.PodRunning,
|
phase: v1.PodRunning,
|
||||||
waiting: false,
|
waiting: false,
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
amd64=k8s.gcr.io/debian-base-amd64:0.4.0
|
amd64=k8s.gcr.io/debian-base-amd64:0.4.1
|
||||||
arm=k8s.gcr.io/debian-base-arm:0.4.0
|
arm=k8s.gcr.io/debian-base-arm:0.4.1
|
||||||
arm64=k8s.gcr.io/debian-base-arm64:0.4.0
|
arm64=k8s.gcr.io/debian-base-arm64:0.4.1
|
||||||
ppc64le=k8s.gcr.io/debian-base-ppc64le:0.4.0
|
ppc64le=k8s.gcr.io/debian-base-ppc64le:0.4.1
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
amd64=k8s.gcr.io/debian-base-amd64:0.4.0
|
amd64=k8s.gcr.io/debian-base-amd64:0.4.1
|
||||||
arm=k8s.gcr.io/debian-base-arm:0.4.0
|
arm=k8s.gcr.io/debian-base-arm:0.4.1
|
||||||
arm64=k8s.gcr.io/debian-base-arm64:0.4.0
|
arm64=k8s.gcr.io/debian-base-arm64:0.4.1
|
||||||
ppc64le=k8s.gcr.io/debian-base-ppc64le:0.4.0
|
ppc64le=k8s.gcr.io/debian-base-ppc64le:0.4.1
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
amd64=k8s.gcr.io/debian-base-amd64:0.4.0
|
amd64=k8s.gcr.io/debian-base-amd64:0.4.1
|
||||||
arm=k8s.gcr.io/debian-base-arm:0.4.0
|
arm=k8s.gcr.io/debian-base-arm:0.4.1
|
||||||
arm64=k8s.gcr.io/debian-base-arm64:0.4.0
|
arm64=k8s.gcr.io/debian-base-arm64:0.4.1
|
||||||
ppc64le=k8s.gcr.io/debian-base-ppc64le:0.4.0
|
ppc64le=k8s.gcr.io/debian-base-ppc64le:0.4.1
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
amd64=k8s.gcr.io/debian-base-amd64:0.4.0
|
amd64=k8s.gcr.io/debian-base-amd64:0.4.1
|
||||||
arm=k8s.gcr.io/debian-base-arm:0.4.0
|
arm=k8s.gcr.io/debian-base-arm:0.4.1
|
||||||
arm64=k8s.gcr.io/debian-base-arm64:0.4.0
|
arm64=k8s.gcr.io/debian-base-arm64:0.4.1
|
||||||
ppc64le=k8s.gcr.io/debian-base-ppc64le:0.4.0
|
ppc64le=k8s.gcr.io/debian-base-ppc64le:0.4.1
|
||||||
|
|
Loading…
Reference in New Issue