diff --git a/charts/tellery/Chart.yaml b/charts/tellery/Chart.yaml index 61f3230..b6ce79d 100644 --- a/charts/tellery/Chart.yaml +++ b/charts/tellery/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v2 name: tellery type: application -version: 0.0.14 +version: 0.0.15 appVersion: 0.8.2 icon: https://avatars.githubusercontent.com/u/86034719?s=400&v=4 description: A Helm Chart for quickly installing highly available Tellery on Kubernetes diff --git a/charts/tellery/templates/NOTES.txt b/charts/tellery/templates/NOTES.txt index e6b6bfb..4db6c93 100644 --- a/charts/tellery/templates/NOTES.txt +++ b/charts/tellery/templates/NOTES.txt @@ -1,3 +1,17 @@ * When running upgrades, make sure to give back the `system.secretKey` value. -kubectl -n {{ .Release.Namespace }} get configmap {{ template "tellery.fullname" . }}-server -o json | grep -m1 -Po '(?<=SECRET_KEY": )[^\\]*' +kubectl -n {{ .Release.Namespace }} get configmap {{ template "tellery.fullname" . }}-server -o yaml | grep -m1 SECRET_KEY | sed 's/\s*SECRET_KEY:\s*//g' + +{{ if .Values.ingress.enabled }} + +Now you can access your service at https://{{ .Values.ingress.hostname}} + +{{ else }} + +Now you can access service by port-forwarding + +kubectl -n {{ .Release.Namespace }} port-forward service/{{ template "tellery.fullname" . }}-server {{ template "server.port" . }}:8080 + +and your service is ready on http://localhost:8080 + +{{ end}} \ No newline at end of file