Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/smarter-cloud/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.3
version: 0.1.4

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion charts/smarter-cloud/templates/NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ Your SMARTER cloud instance has been deployed. Next deploy an edge server and e
For more details and instructions go to https://getsmarter.io

If you deployed your instance correctly, you should be able to log into grafana at
https://grafana.{{ .Values.domain }} with the username admin and the password {{ .Values.prometheus.grafana.adminPassword }}
https://{{ .Values.host }}.{{ .Values.domain }} with the username admin and the password {{ .Values.prometheus.grafana.adminPassword }}

4 changes: 2 additions & 2 deletions charts/smarter-cloud/templates/grafana-ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
cert-manager.io/cluster-issuer: cert-manager-acme-issuer
spec:
rules:
- host: grafana.{{ .Values.domain }}
- host: {{ .Values.host }}.{{ .Values.domain }}
http:
paths:
- path: /
Expand All @@ -20,4 +20,4 @@ spec:
tls:
- secretName: {{ .Release.Name }}-grafana-tls
hosts:
- grafana.{{ .Values.domain }}
- {{ .Values.host }}.{{ .Values.domain }}
1 change: 1 addition & 0 deletions charts/smarter-cloud/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.

host: grafana
domain: example.com

cert-manager:
Expand Down