Skip to content

Commit ae51209

Browse files
authored
Test k3s edge (#29)
* Change k3s.yaml from 127.0.0.1 to correct IP Signed-off-by: Alexandre Peixoto Ferreira <[email protected]> * Fix chart version so artifacts are created Signed-off-by: Alexandre Peixoto Ferreira <[email protected]> * Fix k3s-start.sh script Signed-off-by: Alexandre Peixoto Ferreira <[email protected]> * Allow grafana host to be renamed Signed-off-by: Alexandre Peixoto Ferreira <[email protected]> --------- Signed-off-by: Alexandre Peixoto Ferreira <[email protected]>
1 parent 4e724a6 commit ae51209

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

charts/smarter-cloud/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ type: application
1717
# This is the chart version. This version number should be incremented each time you make changes
1818
# to the chart and its templates, including the app version.
1919
# Versions are expected to follow Semantic Versioning (https://semver.org/)
20-
version: 0.1.3
20+
version: 0.1.4
2121

2222
# This is the version number of the application being deployed. This version number should be
2323
# incremented each time you make changes to the application. Versions are not expected to

charts/smarter-cloud/templates/NOTES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ Your SMARTER cloud instance has been deployed. Next deploy an edge server and e
22
For more details and instructions go to https://getsmarter.io
33

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

charts/smarter-cloud/templates/grafana-ingress.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
cert-manager.io/cluster-issuer: cert-manager-acme-issuer
88
spec:
99
rules:
10-
- host: grafana.{{ .Values.domain }}
10+
- host: {{ .Values.host }}.{{ .Values.domain }}
1111
http:
1212
paths:
1313
- path: /
@@ -20,4 +20,4 @@ spec:
2020
tls:
2121
- secretName: {{ .Release.Name }}-grafana-tls
2222
hosts:
23-
- grafana.{{ .Values.domain }}
23+
- {{ .Values.host }}.{{ .Values.domain }}

charts/smarter-cloud/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# This is a YAML-formatted file.
33
# Declare variables to be passed into your templates.
44

5+
host: grafana
56
domain: example.com
67

78
cert-manager:

0 commit comments

Comments
 (0)