Skip to content

Commit

Permalink
Append correct path for registry in SLE and BV (#1444)
Browse files Browse the repository at this point in the history
  • Loading branch information
ktsamis authored Oct 17, 2024
1 parent a479f15 commit c770455
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
4 changes: 2 additions & 2 deletions terracumber_config/tf_files/SUSEManager-5.0-SLE-update-NUE.tf
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ module "proxy_containerized" {
}

runtime = "podman"
// Temporary workaround to see if we pass proxy stage. Also needs to be updated on next MU
container_repository = var.CONTAINER_REPOSITORY
// The proxy is not appending this path via product code, we need to do it in our infra
container_repository = "${var.CONTAINER_REPOSITORY}/suse/manager/5.0/x86_64"
container_tag = "latest"

auto_configure = false
Expand Down
4 changes: 2 additions & 2 deletions terracumber_config/tf_files/SUSEManager-5.0-SLE-update-PRV.tf
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ module "proxy_containerized" {
}

runtime = "podman"
// Temporary workaround to see if we pass proxy stage. Also needs to be updated on next MU
container_repository = var.CONTAINER_REPOSITORY
// The proxy is not appending this path via product code, we need to do it in our infra
container_repository = "${var.CONTAINER_REPOSITORY}/suse/manager/5.0/x86_64"
container_tag = "latest"

auto_configure = false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,8 @@ module "proxy_containerized" {
memory = 4096
}
runtime = "podman"
container_repository = var.CONTAINER_REPOSITORY
// The proxy is not appending this path via product code, we need to do it in our infra
container_repository = "${var.CONTAINER_REPOSITORY}/suse/manager/5.0/x86_64"
container_tag = "latest"
auto_configure = false
ssh_key_path = "./salt/controller/id_rsa.pub"
Expand Down Expand Up @@ -1018,7 +1019,7 @@ module "sles15sp5s390_sshminion" {
// use_os_released_updates = false
// ssh_key_path = "./salt/controller/id_rsa.pub"
//
//
//
//
//}

Expand All @@ -1034,7 +1035,7 @@ module "sles15sp5s390_sshminion" {
// }
// use_os_released_updates = false
// ssh_key_path = "./salt/controller/id_rsa.pub"
//
//
//
//}

Expand All @@ -1050,7 +1051,7 @@ module "sles15sp5s390_sshminion" {
// }
// use_os_released_updates = false
// ssh_key_path = "./salt/controller/id_rsa.pub"
//
//
//
//}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,8 @@ module "proxy_containerized" {
password = "admin"
}
runtime = "podman"
container_repository = var.CONTAINER_REPOSITORY
// The proxy is not appending this path via product code, we need to do it in our infra
container_repository = "${var.CONTAINER_REPOSITORY}/suse/manager/5.0/x86_64"
container_tag = "latest"
auto_configure = false
ssh_key_path = "./salt/controller/id_rsa.pub"
Expand Down

0 comments on commit c770455

Please sign in to comment.