Addon-manager baseimage upgrade debian-base v1.0.1

The previous base image, debian-base:v1.0.0, is affected by
CVE-2017-14062. This change upgrades to the most recent Debian stretch
image from the following command:

```
$ gcloud container images list-tags k8s.gcr.io/debian-base-amd64
DIGEST        TAGS    TIMESTAMP
7e9f2f88b813  v1.0.1  2020-02-18T13:18:50
d7be39e143d4  v2.0.0  2019-11-01T13:14:18
5f25d97ece90  v1.0.0  2019-03-25T10:59:09
dddca919baec  1.0.0   2019-03-25T09:43:09
```

This marks kube-addon-manager version 9.1.5.

Change-Id: I02321a781fb19dd33c0a19671b56c0b12d9b52fd
This commit is contained in:
Spencer Peterson 2021-04-19 16:48:55 -07:00
parent 4925cb66c9
commit 530072a38f
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,6 @@
### Version 9.1.5 (Mon April 19 2021 Spencer Peterson <spencerjp@google.com>)
- Update baseimage to debian-base:v1.0.1.
### Version 9.1.4 (Wed February 10 2021 Jordan Liggitt <liggitt@google.com>)
- Update kubectl to v1.20.2.
- Fix a bug in leader election (https://github.com/kubernetes/kubernetes/issues/98966)

View File

@ -15,10 +15,10 @@
IMAGE=gcr.io/k8s-staging-addon-manager/kube-addon-manager
ARCH?=amd64
TEMP_DIR:=$(shell mktemp -d)
VERSION=v9.1.4
VERSION=v9.1.5
KUBECTL_VERSION?=v1.20.2
BASEIMAGE=k8s.gcr.io/debian-base-$(ARCH):v1.0.0
BASEIMAGE=k8s.gcr.io/debian-base-$(ARCH):v1.0.1
SUDO=$(if $(filter 0,$(shell id -u)),,sudo)