- Align tornjak backend naming with same convention as frontend - Align Tornjak backend and frontend notes style - Add disclaimer for Tornjak usage to example --------- Signed-off-by: Marco Franssen <[email protected]>
24 lines
752 B
Plaintext
24 lines
752 B
Plaintext
Installed {{ .Chart.Name }}…
|
|
|
|
1. Get the currently registered SPIFFE entries from the server:
|
|
|
|
kubectl exec -n {{ .Release.Namespace }} {{ include "spire-server.fullname" . }}-0 -c spire-server -- \
|
|
spire-server entry show
|
|
|
|
{{- if eq (.Values.tornjak.enabled | toString) "true" }}
|
|
|
|
Installed {{ include "spire-tornjak.fullname" . }}…
|
|
|
|
### WARNING ###
|
|
|
|
Tornjak runs without authentication and is therefore NOT suitable to run in production environments.
|
|
Only use in test environments!
|
|
|
|
Access Tornjak:
|
|
|
|
kubectl -n {{ include "spire-server.namespace" . }} port-forward service/{{ include "spire-tornjak.backend" . }} {{ .Values.tornjak.service.port }}:10000
|
|
|
|
Open browser to: http://localhost:{{ .Values.tornjak.service.port }}
|
|
|
|
{{- end }}
|