Skip to content

Commit

Permalink
Merge pull request #51 from pluralsh/explicit-templated
Browse files Browse the repository at this point in the history
Explicitly set templated for bootstrap setup service
  • Loading branch information
michaeljguarino authored May 13, 2024
2 parents bea39e7 + fac4030 commit 62d0b15
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions templates/setup/cd.tf
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ resource "plural_service_deployment" "apps" {
repoUrl = local.context.spec.configuration.console.repo_url
}
protect = true
templated = true

depends_on = [ kubernetes_namespace.infra ]
}
4 changes: 2 additions & 2 deletions templates/setup/console.tf
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ resource "helm_release" "runtime" {
namespace = "plural-runtime"
chart = "runtime"
repository = "https://pluralsh.github.io/bootstrap"
version = "0.1.18"
version = "0.1.22"
create_namespace = true
timeout = 300
wait = false
Expand All @@ -76,7 +76,7 @@ resource "helm_release" "console" {
namespace = "plrl-console"
chart = "console"
repository = "https://pluralsh.github.io/console"
version = "0.3.12"
version = "0.3.18"
create_namespace = true
timeout = 600
wait = true
Expand Down
2 changes: 1 addition & 1 deletion terraform/clouds/aws/locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ locals {
cluster_ready = {
cluster = module.eks
addons = module.eks_blueprints_addons
}
}
monitoring_role_name = var.monitoring_role == "" ? "${var.cluster_name}-PluralRDSMonitoringRole" : var.monitoring_role
}

0 comments on commit 62d0b15

Please sign in to comment.