Skip to content

Commit

Permalink
Merge pull request #10 from gfortil/HPCC-27030
Browse files Browse the repository at this point in the history
HPCC-27030 Enable elastic4hpcclogs by default and remove custom values.yaml file
  • Loading branch information
Godson Fortil authored Apr 26, 2022
2 parents 3557258 + 54e87d0 commit 8f00201
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 97 deletions.
2 changes: 1 addition & 1 deletion examples/admin.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ hpcc = {
}

elk = {
enable = false
enable = true
name = "myhpccelk"
# chart = ""
# values = []
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ resource "helm_release" "elk" {
name = local.elk_name
namespace = try(var.hpcc.namespace, terraform.workspace)
chart = local.elk_chart
values = concat(try([for v in var.elk.values : file(v)], []), var.expose_services ? [file("${path.root}/values/elk.yaml")] : [])
values = try([for v in var.elk.values : file(v)], [])
create_namespace = true
atomic = try(var.elk.atomic, null)
recreate_pods = try(var.elk.recreate_pods, null)
Expand Down
95 changes: 0 additions & 95 deletions values/elk.yaml

This file was deleted.

0 comments on commit 8f00201

Please sign in to comment.