Skip to content

Commit

Permalink
Injecting the jacoco agent config inside the podman volume
Browse files Browse the repository at this point in the history
  • Loading branch information
srbarrios committed Sep 10, 2024
1 parent fa26b73 commit 427ed34
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,8 @@ module "cucumber_testsuite" {
main_disk_size = 400
login_timeout = 28800
runtime = "podman"
container_repository = "registry.opensuse.org/systemsmanagement/uyuni/master/containers_leap_15.6"
container_tag = "latest"
helm_chart_url = "oci://registry.opensuse.org/systemsmanagement/uyuni/master/charts/uyuni/server"
}
proxy_containerized = {
Expand All @@ -148,6 +150,8 @@ module "cucumber_testsuite" {
additional_packages = [ "venv-salt-minion" ]
install_salt_bundle = true
runtime = "podman"
container_repository = "registry.opensuse.org/systemsmanagement/uyuni/master/containers_leap_15.6"
container_tag = "latest"
}
suse-minion = {
image = "opensuse155o"
Expand Down Expand Up @@ -223,7 +227,7 @@ module "cucumber_testsuite" {
vcpu = 4
memory = 8192
}
additional_packages = [ "venv-salt-minion", "mkisofs" ]
additional_packages = [ "venv-salt-minion" ]
install_salt_bundle = true
}
}
Expand All @@ -244,7 +248,7 @@ resource "null_resource" "configure_jacoco" {

provisioner "file" {
source = "../../susemanager-ci/terracumber_config/config_files/jacoco_agent.conf"
destination = "/etc/tomcat/conf.d/jacoco_agent.conf"
destination = "/var/lib/containers/storage/volumes/etc-tomcat/_data/conf.d/jacoco_agent.conf"
connection {
type = "ssh"
user = "root"
Expand Down

0 comments on commit 427ed34

Please sign in to comment.