Skip to content

Commit

Permalink
fix: workers dependency and update nodes (#158)
Browse files Browse the repository at this point in the history
Signed-off-by: Ales Verbic <[email protected]>
  • Loading branch information
verbotenj authored Nov 19, 2024
1 parent 5b0d1a4 commit 747f589
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
2 changes: 2 additions & 0 deletions stage3/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions stage3/nodes.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ module "ext_cardano_node" {
cloud_provider = var.cloud_provider
dns_zone = "dmtr.host"
extension_name = "cnode-${each.key}"
operator_image_tag = "e23d4e62663419d91c486e70e63808792b62b9ff"
proxy_blue_image_tag = "35a9bf5ff8177a7221123ca59198ca2026042180"
operator_image_tag = "9f24ebfe1ca56351fa44ab47e5a3fdb815d0f213"
proxy_blue_image_tag = "9f24ebfe1ca56351fa44ab47e5a3fdb815d0f213"
proxy_blue_replicas = 2
proxy_blue_instances_namespace = local.cnode_v1_namespace
proxy_blue_healthcheck_port = 31789
proxy_green_image_tag = "1de351af98b36e8e3d946a463a95263fb4d97384"
proxy_green_image_tag = "9f24ebfe1ca56351fa44ab47e5a3fdb815d0f213"
proxy_green_replicas = 2
proxy_green_instances_namespace = local.cnode_v1_namespace
proxy_green_healthcheck_port = 32171
Expand Down
7 changes: 4 additions & 3 deletions stage3/workers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@ module "workers_crds" {
}

module "workers_configs" {
source = "git::https://github.com/demeter-run/workloads.git//bootstrap/configs"
namespace = local.ext_workers_namespace
source = "git::https://github.com/demeter-run/workloads.git//bootstrap/configs"
namespace = local.ext_workers_namespace
depends_on = [kubernetes_namespace_v1.ext_workers]
}

module "workers_operator" {
depends_on = [helm_release.kong]
depends_on = [helm_release.kong, kubernetes_namespace_v1.ext_workers]
source = "git::https://github.com/demeter-run/workloads.git//bootstrap/operator"
namespace = local.ext_workers_namespace
cluster_name = var.cluster_name
Expand Down

0 comments on commit 747f589

Please sign in to comment.