forked from containers/podman
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Red Hat registry is too unreliable. (As of this writing in January 2023, quay.io is not much better, but this is a new flake. Ubi has been flaking for a year or more). Instead of UBI, use the new systemd-image added to system tests in containers#16814. Since this reduces the number of cached images, a few unrelated tests (image count) need to be tweaked. And, sigh, Fedora systemd colorizes boot messages by default, causing a failure where we don't see an expected Reached Target message. I don't want to rely on ASCII formatting codes, so I've updated the build-systemd-image script so it disables systemd colors, and have built a new systemd-image:20230106. Made a few small usability improvements to the script as well. Closes: containers#16695 Signed-off-by: Ed Santiago <[email protected]>
- Loading branch information
1 parent
609df3e
commit e82045f
Showing
9 changed files
with
45 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
package integration | ||
|
||
var ( | ||
STORAGE_FS = "vfs" //nolint:revive,stylecheck | ||
STORAGE_OPTIONS = "--storage-driver vfs" //nolint:revive,stylecheck | ||
ROOTLESS_STORAGE_FS = "vfs" //nolint:revive,stylecheck | ||
ROOTLESS_STORAGE_OPTIONS = "--storage-driver vfs" //nolint:revive,stylecheck | ||
CACHE_IMAGES = []string{ALPINE, BB, fedoraMinimal, NGINX_IMAGE, REDIS_IMAGE, REGISTRY_IMAGE, INFRA_IMAGE, LABELS_IMAGE, HEALTHCHECK_IMAGE, UBI_INIT, UBI_MINIMAL, fedoraToolbox} //nolint:revive,stylecheck | ||
NGINX_IMAGE = "quay.io/libpod/alpine_nginx:latest" //nolint:revive,stylecheck | ||
BB_GLIBC = "docker.io/library/busybox:glibc" //nolint:revive,stylecheck | ||
REGISTRY_IMAGE = "quay.io/libpod/registry:2.8" //nolint:revive,stylecheck | ||
LABELS_IMAGE = "quay.io/libpod/alpine_labels:latest" //nolint:revive,stylecheck | ||
UBI_MINIMAL = "registry.access.redhat.com/ubi8-minimal" //nolint:revive,stylecheck | ||
UBI_INIT = "registry.access.redhat.com/ubi8-init" //nolint:revive,stylecheck | ||
CIRROS_IMAGE = "quay.io/libpod/cirros:latest" //nolint:revive,stylecheck | ||
STORAGE_FS = "vfs" //nolint:revive,stylecheck | ||
STORAGE_OPTIONS = "--storage-driver vfs" //nolint:revive,stylecheck | ||
ROOTLESS_STORAGE_FS = "vfs" //nolint:revive,stylecheck | ||
ROOTLESS_STORAGE_OPTIONS = "--storage-driver vfs" //nolint:revive,stylecheck | ||
CACHE_IMAGES = []string{ALPINE, BB, fedoraMinimal, NGINX_IMAGE, REDIS_IMAGE, REGISTRY_IMAGE, INFRA_IMAGE, LABELS_IMAGE, HEALTHCHECK_IMAGE, SYSTEMD_IMAGE, fedoraToolbox} //nolint:revive,stylecheck | ||
NGINX_IMAGE = "quay.io/libpod/alpine_nginx:latest" //nolint:revive,stylecheck | ||
BB_GLIBC = "docker.io/library/busybox:glibc" //nolint:revive,stylecheck | ||
REGISTRY_IMAGE = "quay.io/libpod/registry:2.8" //nolint:revive,stylecheck | ||
LABELS_IMAGE = "quay.io/libpod/alpine_labels:latest" //nolint:revive,stylecheck | ||
SYSTEMD_IMAGE = "quay.io/libpod/systemd-image:20230106" //nolint:revive,stylecheck | ||
CIRROS_IMAGE = "quay.io/libpod/cirros:latest" //nolint:revive,stylecheck | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
package integration | ||
|
||
var ( | ||
STORAGE_FS = "vfs" //nolint:revive,stylecheck | ||
STORAGE_OPTIONS = "--storage-driver vfs" //nolint:revive,stylecheck | ||
ROOTLESS_STORAGE_FS = "vfs" //nolint:revive,stylecheck | ||
ROOTLESS_STORAGE_OPTIONS = "--storage-driver vfs" //nolint:revive,stylecheck | ||
CACHE_IMAGES = []string{ALPINE, BB, fedoraMinimal, NGINX_IMAGE, REDIS_IMAGE, REGISTRY_IMAGE, INFRA_IMAGE, LABELS_IMAGE, HEALTHCHECK_IMAGE, UBI_INIT, UBI_MINIMAL, fedoraToolbox} //nolint:revive,stylecheck | ||
NGINX_IMAGE = "quay.io/lsm5/alpine_nginx-aarch64:latest" //nolint:revive,stylecheck | ||
BB_GLIBC = "docker.io/library/busybox:glibc" //nolint:revive,stylecheck | ||
REGISTRY_IMAGE = "quay.io/libpod/registry:2.8" //nolint:revive,stylecheck | ||
LABELS_IMAGE = "quay.io/libpod/alpine_labels:latest" //nolint:revive,stylecheck | ||
UBI_MINIMAL = "registry.access.redhat.com/ubi8-minimal" //nolint:revive,stylecheck | ||
UBI_INIT = "registry.access.redhat.com/ubi8-init" //nolint:revive,stylecheck | ||
CIRROS_IMAGE = "quay.io/libpod/cirros:latest" //nolint:revive,stylecheck | ||
STORAGE_FS = "vfs" //nolint:revive,stylecheck | ||
STORAGE_OPTIONS = "--storage-driver vfs" //nolint:revive,stylecheck | ||
ROOTLESS_STORAGE_FS = "vfs" //nolint:revive,stylecheck | ||
ROOTLESS_STORAGE_OPTIONS = "--storage-driver vfs" //nolint:revive,stylecheck | ||
CACHE_IMAGES = []string{ALPINE, BB, fedoraMinimal, NGINX_IMAGE, REDIS_IMAGE, REGISTRY_IMAGE, INFRA_IMAGE, LABELS_IMAGE, HEALTHCHECK_IMAGE, SYSTEMD_IMAGE, fedoraToolbox} //nolint:revive,stylecheck | ||
NGINX_IMAGE = "quay.io/lsm5/alpine_nginx-aarch64:latest" //nolint:revive,stylecheck | ||
BB_GLIBC = "docker.io/library/busybox:glibc" //nolint:revive,stylecheck | ||
REGISTRY_IMAGE = "quay.io/libpod/registry:2.8" //nolint:revive,stylecheck | ||
LABELS_IMAGE = "quay.io/libpod/alpine_labels:latest" //nolint:revive,stylecheck | ||
SYSTEMD_IMAGE = "quay.io/libpod/systemd-image:20230106" //nolint:revive,stylecheck | ||
CIRROS_IMAGE = "quay.io/libpod/cirros:latest" //nolint:revive,stylecheck | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters