Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Test Naica setup #992

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 21 additions & 18 deletions terracumber_config/tf_files/SUSEManager-Test-Naica-NUE.tf
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ variable "GIT_PASSWORD" {
}

terraform {
required_version = "1.0.10"
required_version = "1.5.7"
required_providers {
libvirt = {
source = "dmacvicar/libvirt"
Expand All @@ -85,7 +85,8 @@ terraform {
}

provider "libvirt" {
uri = "qemu+tcp://cthulhu.mgr.suse.de/system"
//uri = "qemu+tcp://cthulhu.mgr.suse.de/system"
uri = "qemu+tcp://suma-04.mgr.suse.de/system"
}

module "cucumber_testsuite" {
Expand All @@ -102,7 +103,7 @@ module "cucumber_testsuite" {
cc_username = var.SCC_USER
cc_password = var.SCC_PASSWORD

images = ["centos7o", "opensuse154o", "sles15sp4o", "ubuntu2204o"]
images = ["centos7o", "rocky8o", "opensuse154o", "opensuse155o" , "sles15sp4o", "ubuntu2204o"]

use_avahi = false
name_prefix = "suma-testnaica-"
Expand All @@ -122,35 +123,30 @@ module "cucumber_testsuite" {
controller = {
provider_settings = {
mac = "aa:b2:93:01:00:60"
vcpu = 2
memory = 2048
}
}
server = {
provider_settings = {
mac = "aa:b2:93:01:00:61"
memory = 16384
}
/* TODO: needs to be upgraded to openSUSE_Leap_15.4?
additional_repos = {
Test_repo = "http://download.suse.de/ibs/Devel:/Galaxy:/Manager:/TEST:/Naica/openSUSE_Leap_15.3/"
}
*/
}
/*
proxy = {
provider_settings = {
mac = "aa:b2:93:01:00:62"
}
additional_repos = {
Test_repo = "http://download.suse.de/ibs/Devel:/Galaxy:/Manager:/TEST:/Naica/openSUSE_Leap_15.3/"
}
additional_packages = [ "venv-salt-minion" ]
install_salt_bundle = true
}
*/
suse-client = {
image = "sles15sp4o"
name = "cli-sles15"
provider_settings = {
mac = "aa:b2:93:01:00:64"
vcpu = 2
memory = 2048
}
additional_packages = [ "venv-salt-minion" ]
install_salt_bundle = true
Expand All @@ -160,6 +156,8 @@ module "cucumber_testsuite" {
name = "min-sles15"
provider_settings = {
mac = "aa:b2:93:01:00:66"
vcpu = 2
memory = 2048
}
additional_packages = [ "venv-salt-minion" ]
install_salt_bundle = true
Expand All @@ -169,12 +167,15 @@ module "cucumber_testsuite" {
name = "minssh-sles15"
provider_settings = {
mac = "aa:b2:93:01:00:68"
vcpu = 2
memory = 2048
}
additional_packages = [ "venv-salt-minion" ]
additional_packages = [ "venv-salt-minion", "iptables" ]
install_salt_bundle = true
}
redhat-minion = {
image = "centos7o"
name = "min-centos7"
provider_settings = {
mac = "aa:b2:93:01:00:69"
// Since start of May we have problems with the instance not booting after a restart if there is only a CPU and only 1024Mb for RAM
Expand All @@ -190,6 +191,8 @@ module "cucumber_testsuite" {
image = "ubuntu2204o"
provider_settings = {
mac = "aa:b2:93:01:00:6b"
vcpu = 2
memory = 2048
}
additional_packages = [ "venv-salt-minion" ]
install_salt_bundle = true
Expand All @@ -200,16 +203,16 @@ module "cucumber_testsuite" {
provider_settings = {
mac = "aa:b2:93:01:00:6d"
memory = 2048
vcpu = 2
}
additional_packages = [ "venv-salt-minion" ]
install_salt_bundle = true
}
}
provider_settings = {
pool = "ssd"
network_name = null
bridge = "br0"
additional_network = "192.168.142.0/24"
pool = "ssd"
network_name = null
bridge = "br0"
}
}

Expand Down
Loading