Skip to content

Commit eb45cfc

Browse files
committed
feat: add opensuse 15 to supported os
1 parent 29731cb commit eb45cfc

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

testing/infra/terraform/modules/standalone_apm_server/main.tf

+6
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ locals {
1414
"AlmaLinux OS 9" = "764336703387" # AlmaLinux OS Foundation
1515
"OL8" = "131827586825" # Oracle
1616
"OL9" = "131827586825" # Oracle
17+
"openSUSE-Leap-15" = "679593333241"
1718
}
1819
instance_types = {
1920
"ubuntu-focal-20.04-arm64-server" = "t4g.nano"
@@ -30,6 +31,7 @@ locals {
3031
"AlmaLinux OS 9" = "t4g.nano"
3132
"OL8" = "t4g.nano"
3233
"OL9" = "t4g.nano"
34+
"openSUSE-Leap-15" = "t4g.nano"
3335
}
3436
instance_arch = {
3537
"ubuntu-focal-20.04-arm64-server" = "arm64"
@@ -46,6 +48,7 @@ locals {
4648
"AlmaLinux OS 9" = "arm64"
4749
"OL8" = "arm64"
4850
"OL9" = "arm64"
51+
"openSUSE-Leap-15" = "arm64"
4952
}
5053
instance_ea_provision_cmd = {
5154
"ubuntu-focal-20.04-arm64-server" = "curl ${data.external.latest_elastic_agent.result.deb_arm} -o elastic-agent.deb && sudo dpkg -i elastic-agent.deb"
@@ -62,6 +65,7 @@ locals {
6265
"AlmaLinux OS 9" = "curl ${data.external.latest_elastic_agent.result.rpm_arm} -o elastic-agent.rpm && sudo rpm -i elastic-agent.rpm"
6366
"OL8" = "curl ${data.external.latest_elastic_agent.result.rpm_arm} -o elastic-agent.rpm && sudo rpm -i elastic-agent.rpm"
6467
"OL9" = "curl ${data.external.latest_elastic_agent.result.rpm_arm} -o elastic-agent.rpm && sudo rpm -i elastic-agent.rpm"
68+
"openSUSE-Leap-15" = "curl ${data.external.latest_elastic_agent.result.rpm_arm} -o elastic-agent.rpm && sudo rpm -i elastic-agent.rpm"
6569
}
6670
instance_standalone_provision_cmd = {
6771
"ubuntu-focal-20.04-arm64-server" = "curl ${data.external.latest_apm_server.result.deb_arm} -o apm-server.deb && sudo dpkg -i apm-server.deb"
@@ -78,6 +82,7 @@ locals {
7882
"AlmaLinux OS 9" = "curl ${data.external.latest_apm_server.result.rpm_arm} -o apm-server.rpm && sudo rpm -i apm-server.rpm"
7983
"OL8" = "curl ${data.external.latest_apm_server.result.rpm_arm} -o apm-server.rpm && sudo rpm -i apm-server.rpm"
8084
"OL9" = "curl ${data.external.latest_apm_server.result.rpm_arm} -o apm-server.rpm && sudo rpm -i apm-server.rpm"
85+
"openSUSE-Leap-15" = "curl ${data.external.latest_apm_server.result.rpm_arm} -o apm-server.rpm && sudo rpm -i apm-server.rpm"
8186
}
8287
image_ssh_users = {
8388
"ubuntu-focal-20.04-arm64-server" = "ubuntu"
@@ -94,6 +99,7 @@ locals {
9499
"AlmaLinux OS 9" = "ec2-user"
95100
"OL8" = "ec2-user"
96101
"OL9" = "ec2-user"
102+
"openSUSE-Leap-15" = "ec2-user"
97103
}
98104

99105
apm_port = "8200"

testing/smoke/os_matrix.sh

+1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@ os_names=(
1414
"AlmaLinux OS 9"
1515
"OL8"
1616
"OL9"
17+
"openSUSE-Leap-15"
1718
)
1819

0 commit comments

Comments
 (0)