From 8ea92f2d8fd83a3cd768e77e5daf7f3e739923b8 Mon Sep 17 00:00:00 2001 From: Salah Aldeen Al Saleh Date: Thu, 14 Dec 2023 17:43:06 +0000 Subject: [PATCH] 0 epoch --- cmd/imagedeps/main_test.go | 6 +++--- cmd/imagedeps/testdata/dex/.image.env | 2 +- cmd/imagedeps/testdata/dex/constants.go | 2 +- .../testdata/dex/replacers/expected/test.apko.yaml | 2 +- cmd/imagedeps/testdata/minio/.image.env | 2 +- cmd/imagedeps/testdata/minio/constants.go | 2 +- .../testdata/minio/replacers/expected/test.apko.yaml | 2 +- cmd/imagedeps/testdata/minio/replacers/input/test.apko.yaml | 2 +- cmd/imagedeps/testdata/rqlite/.image.env | 2 +- cmd/imagedeps/testdata/rqlite/constants.go | 2 +- .../testdata/rqlite/replacers/input/test.apko.yaml | 2 +- 11 files changed, 13 insertions(+), 13 deletions(-) diff --git a/cmd/imagedeps/main_test.go b/cmd/imagedeps/main_test.go index ca602df8bc..96b6762366 100644 --- a/cmd/imagedeps/main_test.go +++ b/cmd/imagedeps/main_test.go @@ -14,9 +14,9 @@ import ( var ( minioTags = []string{ - "0.20231101.183725-3", "0.20231101.183725-2", "0.20231101.183725-1", + "0.20231101.183725-0", "0.20231101.183725", "0.20231100.183724", "0.20231031.183723", @@ -24,8 +24,8 @@ var ( } rqliteTags = []string{ - "7.21.4-2", "7.21.4-1", + "7.21.4-0", "7.21.4", "7.20.3", "7.19.2", @@ -33,7 +33,7 @@ var ( } dexTags = []string{ - "2.37.0-1", + "2.37.0-0", "2.37.0", "2.36.0", "2.35.0", diff --git a/cmd/imagedeps/testdata/dex/.image.env b/cmd/imagedeps/testdata/dex/.image.env index a9775d342a..e017ba16d3 100644 --- a/cmd/imagedeps/testdata/dex/.image.env +++ b/cmd/imagedeps/testdata/dex/.image.env @@ -1,4 +1,4 @@ # Generated file, do not modify. This file is generated from a text file containing a list of images. The # most recent tag is interpolated from the source repository and used to generate a fully qualified image # name. -DEX_TAG='2.37.0-1' \ No newline at end of file +DEX_TAG='2.37.0-0' \ No newline at end of file diff --git a/cmd/imagedeps/testdata/dex/constants.go b/cmd/imagedeps/testdata/dex/constants.go index 431fa6f675..66da32d43e 100644 --- a/cmd/imagedeps/testdata/dex/constants.go +++ b/cmd/imagedeps/testdata/dex/constants.go @@ -5,5 +5,5 @@ package image // image name. const ( - Dex = "kotsadm/dex:2.37.0-1" + Dex = "kotsadm/dex:2.37.0-0" ) diff --git a/cmd/imagedeps/testdata/dex/replacers/expected/test.apko.yaml b/cmd/imagedeps/testdata/dex/replacers/expected/test.apko.yaml index 9958796da8..5ff9a0f64e 100644 --- a/cmd/imagedeps/testdata/dex/replacers/expected/test.apko.yaml +++ b/cmd/imagedeps/testdata/dex/replacers/expected/test.apko.yaml @@ -4,7 +4,7 @@ contents: keyring: - https://packages.wolfi.dev/os/wolfi-signing.rsa.pub packages: - - dex~2.37.0-1 + - dex~2.37.0-0 - gomplate - bash - busybox diff --git a/cmd/imagedeps/testdata/minio/.image.env b/cmd/imagedeps/testdata/minio/.image.env index d0f972504f..42885dee48 100644 --- a/cmd/imagedeps/testdata/minio/.image.env +++ b/cmd/imagedeps/testdata/minio/.image.env @@ -1,4 +1,4 @@ # Generated file, do not modify. This file is generated from a text file containing a list of images. The # most recent tag is interpolated from the source repository and used to generate a fully qualified image # name. -MINIO_TAG='0.20231101.183725-3' \ No newline at end of file +MINIO_TAG='0.20231101.183725-2' \ No newline at end of file diff --git a/cmd/imagedeps/testdata/minio/constants.go b/cmd/imagedeps/testdata/minio/constants.go index 8ea71f5eaa..0253a92aad 100644 --- a/cmd/imagedeps/testdata/minio/constants.go +++ b/cmd/imagedeps/testdata/minio/constants.go @@ -5,5 +5,5 @@ package image // image name. const ( - Minio = "kotsadm/minio:0.20231101.183725-3" + Minio = "kotsadm/minio:0.20231101.183725-2" ) diff --git a/cmd/imagedeps/testdata/minio/replacers/expected/test.apko.yaml b/cmd/imagedeps/testdata/minio/replacers/expected/test.apko.yaml index 01692415f4..a07f428801 100644 --- a/cmd/imagedeps/testdata/minio/replacers/expected/test.apko.yaml +++ b/cmd/imagedeps/testdata/minio/replacers/expected/test.apko.yaml @@ -4,7 +4,7 @@ contents: keyring: - https://packages.wolfi.dev/os/wolfi-signing.rsa.pub packages: - - minio~0.20231101.183725-3 + - minio~0.20231101.183725-2 - mc - bash - busybox diff --git a/cmd/imagedeps/testdata/minio/replacers/input/test.apko.yaml b/cmd/imagedeps/testdata/minio/replacers/input/test.apko.yaml index a07f428801..5280ecd15c 100644 --- a/cmd/imagedeps/testdata/minio/replacers/input/test.apko.yaml +++ b/cmd/imagedeps/testdata/minio/replacers/input/test.apko.yaml @@ -4,7 +4,7 @@ contents: keyring: - https://packages.wolfi.dev/os/wolfi-signing.rsa.pub packages: - - minio~0.20231101.183725-2 + - minio~0.20231101.183725-1 - mc - bash - busybox diff --git a/cmd/imagedeps/testdata/rqlite/.image.env b/cmd/imagedeps/testdata/rqlite/.image.env index f975c3f230..33ee59c27c 100644 --- a/cmd/imagedeps/testdata/rqlite/.image.env +++ b/cmd/imagedeps/testdata/rqlite/.image.env @@ -1,4 +1,4 @@ # Generated file, do not modify. This file is generated from a text file containing a list of images. The # most recent tag is interpolated from the source repository and used to generate a fully qualified image # name. -RQLITE_TAG='7.21.4-2' \ No newline at end of file +RQLITE_TAG='7.21.4-1' \ No newline at end of file diff --git a/cmd/imagedeps/testdata/rqlite/constants.go b/cmd/imagedeps/testdata/rqlite/constants.go index 1393c9fa9e..390384a462 100644 --- a/cmd/imagedeps/testdata/rqlite/constants.go +++ b/cmd/imagedeps/testdata/rqlite/constants.go @@ -5,5 +5,5 @@ package image // image name. const ( - Rqlite = "kotsadm/rqlite:7.21.4-2" + Rqlite = "kotsadm/rqlite:7.21.4-1" ) diff --git a/cmd/imagedeps/testdata/rqlite/replacers/input/test.apko.yaml b/cmd/imagedeps/testdata/rqlite/replacers/input/test.apko.yaml index f552669dd0..d1f34f3069 100644 --- a/cmd/imagedeps/testdata/rqlite/replacers/input/test.apko.yaml +++ b/cmd/imagedeps/testdata/rqlite/replacers/input/test.apko.yaml @@ -4,7 +4,7 @@ contents: keyring: - https://packages.wolfi.dev/os/wolfi-signing.rsa.pub packages: - - rqlite~7.21.4-1 + - rqlite~7.21.4-0 - rqlite-oci-entrypoint - bash - busybox