Skip to content

Commit

Permalink
maybe make helm installs more consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljguarino committed Jan 5, 2024
1 parent 5884034 commit 151e9e7
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions templates/setup/console.tf
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
data "local_sensitive_file" "runtime" {
filename = "${path.module}/../helm-values/runtime.yaml"
}

resource "helm_release" "runtime" {
name = "runtime"
namespace = "plural-runtime"
chart = "runtime"
repository = "https://pluralsh.github.io/bootstrap"
version = "0.1.10"
create_namespace = true
timeout = 600
timeout = 300
wait = false
values = [
file("${path.module}/../helm-values/runtime.yaml")
data.local_sensitive_file.console.content
]

depends_on = [ module.mgmt.cluster ]
Expand All @@ -33,6 +38,7 @@ resource "helm_release" "console" {
version = "0.1.21"
create_namespace = true
timeout = 300
wait = false
values = [
data.local_sensitive_file.console.content
]
Expand Down

0 comments on commit 151e9e7

Please sign in to comment.