Skip to content

Commit

Permalink
tests: use container images from coreos-assembler org
Browse files Browse the repository at this point in the history
Now that coreos/fedora-coreos-pipeline#959
is merged, we have these images built by the coreOS CI and
hosted on the quay.io/coreos-assembler org.

Point tests that requires containers to use images from the
coreos-assembler org.

See  coreos#3727
Fixes coreos/fedora-coreos-tracker#1639
  • Loading branch information
jbtrystram committed Mar 20, 2024
1 parent d1e1f3d commit 6f9ae29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion mantle/cmd/kola/resources/iscsi_butane_setup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ storage:
Wants=network-online.target
OnFailure=emergency.target
[Container]
Image=quay.io/jbtrystram/targetcli:latest
Image=quay.io/coreos-assembler/targetcli:latest
ContainerName=targetd
Network=host
Volume=/dev/disk/by-id/virtio-target:/dev/disk/by-id/virtio-target
Expand Down
7 changes: 1 addition & 6 deletions mantle/kola/tests/ignition/luks.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,7 @@ func setupTangMachine(c cluster.TestCluster) ut.TangServer {
c.Fatal(err)
}

// TODO: move container image to centralized namespace
// container source: https://github.com/mike-nguyen/tang-docker-container/
containerImage := "quay.io/mike_nguyen/tang"
if coreosarch.CurrentRpmArch() != "x86_64" {
containerImage = "quay.io/multi-arch/tang:" + coreosarch.CurrentRpmArch()
}
containerImage := "quay.io/coreos-assembler/tang:latest"

containerID, errMsg, err := m.SSH("sudo podman run -d -p 80:80 " + containerImage)
if err != nil {
Expand Down

0 comments on commit 6f9ae29

Please sign in to comment.