Skip to content

Commit

Permalink
Update OS tests images
Browse files Browse the repository at this point in the history
Fedora 38 -> 41
Fedora CoreOS 38 -> 41
Ubuntu 23.04 -> 23.10

Signed-off-by: Juan-Luis de Sousa-Valadas Castaño <[email protected]>
  • Loading branch information
juanluisvaladas committed Nov 29, 2024
1 parent 617da09 commit 7752782
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 27 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ostests-matrix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ on:
"alpine_3_17", "alpine_3_20",
"centos_7", "centos_8", "centos_9",
"debian_10", "debian_11", "debian_12",
"fcos_38",
"fedora_38",
"fcos_41",
"fedora_41",
"flatcar",
"oracle_7_9", "oracle_8_7", "oracle_9_1",
"rhel_7", "rhel_8", "rhel_9",
"rocky_8", "rocky_9",
"ubuntu_2004", "ubuntu_2204", "ubuntu_2304"
"ubuntu_2004", "ubuntu_2204", "ubuntu_2310"
]
arch:
type: string
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ostests-nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ env:
["alpine_3_17", "alpine_3_20"],
["centos_7", "centos_8", "centos_9"],
["debian_10", "debian_11", "debian_12"],
["fcos_38"],
["fedora_38"],
["fcos_41"],
["fedora_41"],
["flatcar"],
["oracle_7_9", "oracle_8_7", "oracle_9_1"],
["rhel_7", "rhel_8", "rhel_9"],
["rocky_8", "rocky_9"],
["ubuntu_2004", "ubuntu_2204", "ubuntu_2304"]
["ubuntu_2004", "ubuntu_2204", "ubuntu_2310"]
]
NETWORK_PROVIDERS: >-
[
Expand Down
4 changes: 2 additions & 2 deletions hack/ostests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ terraform apply
* `debian_10`: Debian GNU/Linux 10 (buster)
* `debian_11`: Debian GNU/Linux 11 (bullseye)
* `debian_12`: Debian GNU/Linux 12 (bookworm)
* `fcos_38`: Fedora CoreOS 38
* `fedora_38`: Fedora Linux 38 (Cloud Edition)
* `fcos_41`: Fedora CoreOS 41
* `fedora_41`: Fedora Linux 41 (Cloud Edition)
* `flatcar`: Flatcar Container Linux by Kinvolk
* `oracle_7_9`: Oracle Linux Server 7.9
* `oracle_8_7`: Oracle Linux Server 8.7
Expand Down
4 changes: 2 additions & 2 deletions hack/ostests/modules/os/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ locals {
debian_10 = local.os_debian_10
debian_11 = local.os_debian_11
debian_12 = local.os_debian_12
fcos_38 = local.os_fcos_38
fedora_38 = local.os_fedora_38
fcos_41 = local.os_fcos_41
fedora_41 = local.os_fedora_41
flatcar = local.os_flatcar
oracle_7_9 = local.os_oracle_7_9
oracle_8_7 = local.os_oracle_8_7
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# https://docs.fedoraproject.org/en-US/fedora-coreos/provisioning-aws/

data "aws_ami" "fcos_38" {
count = var.os == "fcos_38" ? 1 : 0
data "aws_ami" "fcos_41" {
count = var.os == "fcos_41" ? 1 : 0

owners = ["125523088429"]
name_regex = "^fedora-coreos-38\\.\\d+\\..+-x86_64"
name_regex = "^fedora-coreos-41\\.\\d+\\..+-x86_64"
most_recent = true

filter {
name = "name"
values = ["fedora-coreos-38.*.*-x86_64"]
values = ["fedora-coreos-41.*.*-x86_64"]
}

filter {
Expand All @@ -30,16 +30,16 @@ data "aws_ami" "fcos_38" {
lifecycle {
precondition {
condition = var.arch == "x86_64"
error_message = "Unsupported architecture for Fedora CoreOS 38."
error_message = "Unsupported architecture for Fedora CoreOS 41."
}
}
}

locals {
os_fcos_38 = var.os != "fcos_38" ? {} : {
os_fcos_41 = var.os != "fcos_41" ? {} : {
node_configs = {
default = {
ami_id = one(data.aws_ami.fcos_38.*.id)
ami_id = one(data.aws_ami.fcos_41.*.id)

connection = {
type = "ssh"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# https://alt.fedoraproject.org/cloud/

data "aws_ami" "fedora_38" {
count = var.os == "fedora_38" ? 1 : 0
data "aws_ami" "fedora_41" {
count = var.os == "fedora_41" ? 1 : 0

owners = ["125523088429"]
name_regex = "^Fedora-Cloud-Base-38-.+\\.x86_64-hvm-"
name_regex = "^Fedora-Cloud-Base-AmazonEC2.x86_64-41-"
most_recent = true

filter {
name = "name"
values = ["Fedora-Cloud-Base-38-*.x86_64-hvm-*"]
values = ["Fedora-Cloud-Base-AmazonEC2.x86_64-41-*"]
}

filter {
Expand All @@ -36,10 +36,10 @@ data "aws_ami" "fedora_38" {
}

locals {
os_fedora_38 = var.os != "fedora_38" ? {} : {
os_fedora_41 = var.os != "fedora_41" ? {} : {
node_configs = {
default = {
ami_id = one(data.aws_ami.fedora_38.*.id)
ami_id = one(data.aws_ami.fedora_41.*.id)

connection = {
type = "ssh"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# https://ubuntu.com/server/docs/cloud-images/amazon-ec2

data "aws_ami" "ubuntu_2304" {
count = var.os == "ubuntu_2304" ? 1 : 0
data "aws_ami" "ubuntu_2310" {
count = var.os == "ubuntu_2310" ? 1 : 0

owners = ["099720109477"]
name_regex = "ubuntu/images/hvm-ssd/ubuntu-lunar-23.04-amd64-server-\\d+"
name_regex = "^ubuntu/images/hvm-ssd-gp3/ubuntu-mantic-23.10-amd64-server-\\d+"
most_recent = true

filter {
name = "name"
values = ["ubuntu/images/hvm-ssd/ubuntu-lunar-23.04-amd64-server-*"]
values = ["ubuntu/images/hvm-ssd-gp3/ubuntu-mantic-23.10-amd64-server-*"]
}

filter {
Expand Down

0 comments on commit 7752782

Please sign in to comment.