Unverified Commit f0e2a249 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #66052 from lubinsz/master

Automatic merge from submit-queue (batch tested with PRs 66085, 66052). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. use pause image with fat-manifest What this PR does / why we need it: Pause manifest code is merged in #57723, so we should use new image in test. Which issue(s) this PR fixes (optional, in fixes #<issue number>(, fixes #<issue_number>, ...) format, will close the issue(s) when PR gets merged): Fixes # Special notes for your reviewer: Release note:
parents d744c6ea 773ab3ff
...@@ -21,9 +21,9 @@ import ( ...@@ -21,9 +21,9 @@ import (
) )
const ( const (
validTmpl = "image: {{ .ImageRepository }}/pause-{{ .Arch }}:3.1" validTmpl = "image: {{ .ImageRepository }}/pause:3.1"
validTmplOut = "image: k8s.gcr.io/pause-amd64:3.1" validTmplOut = "image: k8s.gcr.io/pause:3.1"
doNothing = "image: k8s.gcr.io/pause-amd64:3.1" doNothing = "image: k8s.gcr.io/pause:3.1"
invalidTmpl1 = "{{ .baz }/d}" invalidTmpl1 = "{{ .baz }/d}"
invalidTmpl2 = "{{ !foobar }}" invalidTmpl2 = "{{ !foobar }}"
) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment