Skip to content

Commit

Permalink
Update suse manager VM pipeline (#1494)
Browse files Browse the repository at this point in the history
  • Loading branch information
maximenoel8 authored Dec 2, 2024
1 parent ea215ca commit fc7d59c
Showing 1 changed file with 8 additions and 28 deletions.
36 changes: 8 additions & 28 deletions terracumber_config/tf_files/SUSEManager-4.3-VM-NUE.tf
Original file line number Diff line number Diff line change
Expand Up @@ -144,91 +144,71 @@ module "cucumber_testsuite" {
vcpu = 2
memory = 2048
}
additional_packages = [ "venv-salt-minion" ]
install_salt_bundle = true
}
suse-client = {
suse_client = {
image = "sles15sp4o"
name = "cli-sles15"
provider_settings = {
mac = "aa:b2:93:01:00:84"
vcpu = 2
memory = 2048
}
}
suse-minion = {
suse_minion = {
image = "sles15sp4o"
name = "min-sles15"
provider_settings = {
mac = "aa:b2:93:01:00:86"
vcpu = 2
memory = 2048
}
additional_packages = [ "venv-salt-minion" ]
install_salt_bundle = true
}
suse-sshminion = {
suse_sshminion = {
image = "sles15sp4o"
name = "minssh-sles15"
provider_settings = {
mac = "aa:b2:93:01:00:88"
vcpu = 2
memory = 2048
}
additional_packages = [ "venv-salt-minion", "iptables" ]
install_salt_bundle = true
}
redhat-minion = {
rhlike_minion = {
image = "centos7o"
name = "min-centos7"
provider_settings = {
mac = "aa:b2:93:01:00:89"
// 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
// Also, openscap cannot run with less than 1.25 GB of RAM
vcpu = 2
memory = 2048
}
additional_packages = [ "venv-salt-minion" ]
install_salt_bundle = true
}
debian-minion = {
deblike_minion = {
image = "ubuntu2204o"
name = "min-ubuntu2204"
provider_settings = {
mac = "aa:b2:93:01:00:8b"
vcpu = 2
memory = 2048
}
additional_packages = [ "venv-salt-minion" ]
install_salt_bundle = true
}
build-host = {
build_host = {
image = "sles15sp4o"
provider_settings = {
mac = "aa:b2:93:01:00:8d"
vcpu = 4
memory = 8192
}
additional_packages = [ "venv-salt-minion" ]
install_salt_bundle = true
}
pxeboot-minion = {
pxeboot_minion = {
image = "sles15sp4o"
provider_settings = {
vcpu = 2
memory = 2048
}
}
kvm-host = {
kvm_host = {
image = "sles15sp4o"
name = "min-kvm"
provider_settings = {
mac = "aa:b2:93:01:00:8e"
vcpu = 4
memory = 8192
}
additional_packages = [ "venv-salt-minion" ]
install_salt_bundle = true
}
}

Expand Down

0 comments on commit fc7d59c

Please sign in to comment.