Skip to content

Commit

Permalink
[tf][testnet] fix chart paths
Browse files Browse the repository at this point in the history
  • Loading branch information
rustielin committed Mar 2, 2022
1 parent d433824 commit 094ca3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform/testnet/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ resource "helm_release" "testnet" {
resource "helm_release" "validator" {
count = var.num_validators
name = "val${count.index}"
chart = "${path.module}/../../helm/validator"
chart = "${path.module}/../helm/validator"
max_history = var.enable_forge ? 2 : 10
wait = false

Expand Down Expand Up @@ -222,7 +222,7 @@ resource "helm_release" "validator" {
resource "helm_release" "public-fullnode" {
count = var.num_public_fullnodes
name = "pfn${count.index}"
chart = "${path.module}/../../helm/fullnode"
chart = "${path.module}/../helm/fullnode"
max_history = var.enable_forge ? 2 : 10
wait = false

Expand Down

0 comments on commit 094ca3f

Please sign in to comment.