bump pause to 3.2 in kubeadm

This commit is contained in:
Benjamin Elder 2020-02-14 11:09:04 -08:00
parent 4a45ae3236
commit a00a1e39ef
2 changed files with 4 additions and 4 deletions

View File

@ -266,7 +266,7 @@ const (
DefaultEtcdVersion = "3.4.3-0"
// PauseVersion indicates the default pause image version for kubeadm
PauseVersion = "3.1"
PauseVersion = "3.2"
// Etcd defines variable used internally when referring to etcd component
Etcd = "etcd"

View File

@ -21,9 +21,9 @@ import (
)
const (
validTmpl = "image: {{ .ImageRepository }}/pause:3.1"
validTmplOut = "image: k8s.gcr.io/pause:3.1"
doNothing = "image: k8s.gcr.io/pause:3.1"
validTmpl = "image: {{ .ImageRepository }}/pause:3.2"
validTmplOut = "image: k8s.gcr.io/pause:3.2"
doNothing = "image: k8s.gcr.io/pause:3.2"
invalidTmpl1 = "{{ .baz }/d}"
invalidTmpl2 = "{{ !foobar }}"
)