Skip to content

Commit

Permalink
Merge pull request #280 from nestoracunablanco/feat/enableUbuntu2204S…
Browse files Browse the repository at this point in the history
…390x

feat: enable Ubuntu common-instancetypes for s390x
  • Loading branch information
kubevirt-bot authored Nov 15, 2024
2 parents b6442fd + ea86439 commit 37c1224
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions tests/functests/instancetype_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -169,13 +169,17 @@ var _ = Describe("Common instance types func tests", func() {
[]testFn{expectGuestAgentToBeConnected, expectSSHToRunCommandOnLinux("cloud-user")}),
Entry("[test_id:TODO] RHEL 10", rhel10ContainerDisk, map[string]string{"amd64": "rhel.10", "arm64": "rhel.10.arm64"},
[]testFn{expectGuestAgentToBeConnected, expectSSHToRunCommandOnLinux("cloud-user")}),
Entry("[test_id:10741] Ubuntu 18.04", ubuntu1804ContainerDisk, map[string]string{"amd64": "ubuntu"},
Entry("[test_id:10741] Ubuntu 18.04", ubuntu1804ContainerDisk,
map[string]string{"amd64": "ubuntu"},
[]testFn{expectSSHToRunCommandOnLinux("ubuntu")}),
Entry("[test_id:10742] Ubuntu 20.04", ubuntu2004ContainerDisk, map[string]string{"amd64": "ubuntu", "arm64": "ubuntu"},
Entry("[test_id:10742] Ubuntu 20.04", ubuntu2004ContainerDisk,
map[string]string{"amd64": "ubuntu", "arm64": "ubuntu", "s390x": "ubuntu"},
[]testFn{expectSSHToRunCommandOnLinux("ubuntu")}),
Entry("[test_id:10743] Ubuntu 22.04", ubuntu2204ContainerDisk, map[string]string{"amd64": "ubuntu", "arm64": "ubuntu"},
Entry("[test_id:10743] Ubuntu 22.04", ubuntu2204ContainerDisk,
map[string]string{"amd64": "ubuntu", "arm64": "ubuntu", "s390x": "ubuntu"},
[]testFn{expectSSHToRunCommandOnLinux("ubuntu")}),
Entry("[test_id:TODO] Ubuntu 24.04", ubuntu2404ContainerDisk, map[string]string{"amd64": "ubuntu", "arm64": "ubuntu"},
Entry("[test_id:TODO] Ubuntu 24.04", ubuntu2404ContainerDisk,
map[string]string{"amd64": "ubuntu", "arm64": "ubuntu", "s390x": "ubuntu"},
[]testFn{expectSSHToRunCommandOnLinux("ubuntu")}),
Entry("[test_id:TODO] OpenSUSE Tumbleweed", openSUSETumbleweedContainerDisk, map[string]string{"amd64": "opensuse.tumbleweed"},
[]testFn{expectGuestAgentToBeConnected, expectSSHToRunCommandOnLinux("opensuse")}),
Expand Down

0 comments on commit 37c1224

Please sign in to comment.