Skip to content

Commit

Permalink
chore: update NOTES
Browse files Browse the repository at this point in the history
  • Loading branch information
raycursive committed Oct 15, 2021
1 parent 34b61db commit 2b66e2c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/tellery/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
16 changes: 15 additions & 1 deletion charts/tellery/templates/NOTES.txt
Original file line number Diff line number Diff line change
@@ -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}}

0 comments on commit 2b66e2c

Please sign in to comment.