Merge pull request #98336 from pacoxu/fix/94791-update-image

update metadata-concealment to 1.6 for removing legacy checking
This commit is contained in:
Kubernetes Prow Robot 2021-01-28 14:42:00 -08:00 committed by GitHub
commit 4a8b2d377b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 1 deletions

View File

@ -210,3 +210,17 @@ dependencies:
match: k8s.gcr.io\/pause:\d+\.\d+
- path: test/utils/image/manifest.go
match: configs\[Pause\] = Config{gcRegistry, "pause", "\d+\.\d+"}
# metadata-concealment: bump this one first
- name: "metadata-concealment"
version: "1.6"
refPaths:
- path: test/images/metadata-concealment/VERSION
match: \d.\d
# then after merge and successful postsubmit image push / promotion, bump this
- name: "metadata-concealment: dependents"
version: "1.6"
refPaths:
- path: test/utils/image/manifest.go
match: configs\[CheckMetadataConcealment\] = Config{promoterE2eRegistry, "metadata-concealment", "\d+\.\d+"}

View File

@ -219,7 +219,7 @@ func initImageConfigs() (map[int]Config, map[int]Config) {
configs[APIServer] = Config{e2eRegistry, "sample-apiserver", "1.17"}
configs[AppArmorLoader] = Config{e2eRegistry, "apparmor-loader", "1.0"}
configs[BusyBox] = Config{dockerLibraryRegistry, "busybox", "1.29"}
configs[CheckMetadataConcealment] = Config{e2eRegistry, "metadata-concealment", "1.2"}
configs[CheckMetadataConcealment] = Config{promoterE2eRegistry, "metadata-concealment", "1.6"}
configs[CudaVectorAdd] = Config{e2eRegistry, "cuda-vector-add", "1.0"}
configs[CudaVectorAdd2] = Config{e2eRegistry, "cuda-vector-add", "2.0"}
configs[DebianIptables] = Config{buildImageRegistry, "debian-iptables", "buster-v1.5.0"}