Skip to content

Commit

Permalink
make node groups configurable
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljguarino committed Dec 30, 2023
1 parent 9dc85df commit 3fac096
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
26 changes: 13 additions & 13 deletions templates/setup/console.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ data "local_sensitive_file" "console" {
depends_on = [ null_resource.console ]
}

# resource "helm_release" "console" {
# name = "console"
# namespace = "plrl-console"
# chart = "console"
# repository = "https://pluralsh.github.io/console"
# version = "0.1.15"
# create_namespace = true
# timeout = 300
# values = [
# data.local_sensitive_file.console
# ]
resource "helm_release" "console" {
name = "console"
namespace = "plrl-console"
chart = "console"
repository = "https://pluralsh.github.io/console"
version = "0.1.15"
create_namespace = true
timeout = 300
values = [
data.local_sensitive_file.console
]

# depends_on = [ module.mgmt.cluster, module.mgmt.runtime_ready ]
# }
depends_on = [ module.mgmt.cluster, module.mgmt.runtime_ready, module.mgmt.db_url ]
}
2 changes: 1 addition & 1 deletion terraform/clouds/aws/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ variable "runtime_values_file" {
}

variable "runtime_vsn" {
default = "0.1.7"
default = "0.1.8"
}

variable "db_instance_class" {
Expand Down
2 changes: 1 addition & 1 deletion terraform/clouds/azure/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,5 @@ variable "runtime_values_file" {
}

variable "runtime_vsn" {
default = "0.1.7"
default = "0.1.8"
}
2 changes: 1 addition & 1 deletion terraform/clouds/gcp/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -83,5 +83,5 @@ variable "runtime_values_file" {
}

variable "runtime_vsn" {
default = "0.1.7"
default = "0.1.8"
}
2 changes: 1 addition & 1 deletion test/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ resource "helm_release" "console" {
data.local_sensitive_file.console.content
]

depends_on = [ module.gcp.cluster, module.gcp.runtime_ready ]
depends_on = [ module.gcp.cluster, module.gcp.runtime_ready, module.gcp.db_url ]
}

0 comments on commit 3fac096

Please sign in to comment.