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

Fix Salt bundle for SLE Micros in the Uyuni BV #1297

Merged
merged 1 commit into from
Aug 14, 2024
Merged
Show file tree
Hide file tree
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
17 changes: 17 additions & 0 deletions terracumber_config/tf_files/Uyuni-Master-build-validation-NUE.tf
Original file line number Diff line number Diff line change
Expand Up @@ -678,6 +678,9 @@ module "slemicro51-minion" {
auto_connect_to_master = false
use_os_released_updates = false
ssh_key_path = "./salt/controller/id_rsa.pub"
// WORKAROUND: Does not work in sumaform, yet
// additional_packages = [ "venv-salt-minion" ]
install_salt_bundle = false
}

module "slemicro52-minion" {
Expand All @@ -697,6 +700,9 @@ module "slemicro52-minion" {
auto_connect_to_master = false
use_os_released_updates = false
ssh_key_path = "./salt/controller/id_rsa.pub"
// WORKAROUND: Does not work in sumaform, yet
// additional_packages = [ "venv-salt-minion" ]
install_salt_bundle = false
}

module "slemicro53-minion" {
Expand All @@ -716,6 +722,9 @@ module "slemicro53-minion" {
auto_connect_to_master = false
use_os_released_updates = false
ssh_key_path = "./salt/controller/id_rsa.pub"
// WORKAROUND: Does not work in sumaform, yet
// additional_packages = [ "venv-salt-minion" ]
install_salt_bundle = false
}

module "slemicro54-minion" {
Expand All @@ -735,6 +744,9 @@ module "slemicro54-minion" {
auto_connect_to_master = false
use_os_released_updates = false
ssh_key_path = "./salt/controller/id_rsa.pub"
// WORKAROUND: Does not work in sumaform, yet
// additional_packages = [ "venv-salt-minion" ]
install_salt_bundle = false
}

module "slemicro55-minion" {
Expand All @@ -754,6 +766,9 @@ module "slemicro55-minion" {
auto_connect_to_master = false
use_os_released_updates = false
ssh_key_path = "./salt/controller/id_rsa.pub"
// WORKAROUND: Does not work in sumaform, yet
// additional_packages = [ "venv-salt-minion" ]
install_salt_bundle = false
}

module "slmicro60-minion" {
Expand All @@ -773,6 +788,8 @@ module "slmicro60-minion" {
auto_connect_to_master = false
use_os_released_updates = false
ssh_key_path = "./salt/controller/id_rsa.pub"
// WORKAROUND: Does not work in sumaform, yet
// additional_packages = [ "venv-salt-minion" ]
install_salt_bundle = false
}

Expand Down
17 changes: 17 additions & 0 deletions terracumber_config/tf_files/Uyuni-Master-build-validation-PRV.tf
Original file line number Diff line number Diff line change
Expand Up @@ -878,6 +878,9 @@ module "slemicro51-minion" {
auto_connect_to_master = false
use_os_released_updates = false
ssh_key_path = "./salt/controller/id_rsa.pub"
// WORKAROUND: Does not work in sumaform, yet
// additional_packages = [ "venv-salt-minion" ]
install_salt_bundle = false
}

module "slemicro52-minion" {
Expand All @@ -900,6 +903,9 @@ module "slemicro52-minion" {
auto_connect_to_master = false
use_os_released_updates = false
ssh_key_path = "./salt/controller/id_rsa.pub"
// WORKAROUND: Does not work in sumaform, yet
// additional_packages = [ "venv-salt-minion" ]
install_salt_bundle = false
}

module "slemicro53-minion" {
Expand All @@ -922,6 +928,9 @@ module "slemicro53-minion" {
auto_connect_to_master = false
use_os_released_updates = false
ssh_key_path = "./salt/controller/id_rsa.pub"
// WORKAROUND: Does not work in sumaform, yet
// additional_packages = [ "venv-salt-minion" ]
install_salt_bundle = false
}

module "slemicro54-minion" {
Expand All @@ -944,6 +953,9 @@ module "slemicro54-minion" {
auto_connect_to_master = false
use_os_released_updates = false
ssh_key_path = "./salt/controller/id_rsa.pub"
// WORKAROUND: Does not work in sumaform, yet
// additional_packages = [ "venv-salt-minion" ]
install_salt_bundle = false
}

module "slemicro55-minion" {
Expand All @@ -966,6 +978,9 @@ module "slemicro55-minion" {
auto_connect_to_master = false
use_os_released_updates = false
ssh_key_path = "./salt/controller/id_rsa.pub"
// WORKAROUND: Does not work in sumaform, yet
// additional_packages = [ "venv-salt-minion" ]
install_salt_bundle = false
}

module "slmicro60-minion" {
Expand All @@ -988,6 +1003,8 @@ module "slmicro60-minion" {
auto_connect_to_master = false
use_os_released_updates = false
ssh_key_path = "./salt/controller/id_rsa.pub"
// WORKAROUND: Does not work in sumaform, yet
// additional_packages = [ "venv-salt-minion" ]
install_salt_bundle = false
}

Expand Down
Loading