Skip to content

Commit ee0ee0e

Browse files
committed
fix opencost templates chart
1 parent 2424a11 commit ee0ee0e

File tree

5 files changed

+6
-3
lines changed

5 files changed

+6
-3
lines changed

charts/opencost-config/templates/opencost/dashboards.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{{ if and .Values.dashboards }}
12
{{- range $path, $_ := .Files.Glob "dashboards/**.json" }}
23
---
34
apiVersion: v1
@@ -11,3 +12,4 @@ data:
1112
{{ base $path }}: |-
1213
{{ ($.Files.Get $path) | nindent 6 }}
1314
{{ end }}
15+
{{ end }}

installation/config/eks/grafana-values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ ingress:
1313
annotations:
1414
kubernetes.io/ingress.global-static-ip-name: "ip-name"
1515
hosts:
16-
- grafana.example.com
16+
- grafana.example.com
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
dashboards: true
12
gke:
23
podmonitoring: true

installation/eks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ This documentation focuses on installing the FinOps Stack in EKS clusters.
2424
For the first run:
2525

2626
```bash
27-
set -a; source .env; set +a; helmfile apply --interactive
27+
set -a; source .env; set +a; helmfile apply --file Helmfile_eks.yaml --interactive
2828
```
2929

3030
NOTE: it will take several minutes for all workloads to install and start running. Helmfile does display its progress in the terminal. All workloads get installed into the `finops-stack` namespace so you can also view progress using `kubectl`.

installation/env_eks.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Sub-dir under ./config that holds your hosting env specific Helm values.files, e.g. gke
2-
HOST_ENV=gke
2+
HOST_ENV=eks
33

44
# -- AWS secret access key and access key id
55
AWS_SECRET_ACCESS_KEY=""

0 commit comments

Comments
 (0)