26 lines
656 B
Plaintext
26 lines
656 B
Plaintext
PocketBase Helm Chart
|
|
|
|
{{- if not .Values.instances }}
|
|
WARNING: No instances configured! Add instances to your values.yaml file.
|
|
|
|
Example:
|
|
instances:
|
|
- id: "app1"
|
|
domain: "app1.pb.xiongxiao.me"
|
|
replicaCount: 1
|
|
{{- else }}
|
|
{{- range .Values.instances }}
|
|
PocketBase instance "{{ .id }}" has been deployed!
|
|
|
|
Access it at: https://{{ .domain }}
|
|
|
|
Admin UI: https://{{ .domain }}/_/
|
|
- Email: Check the secret: pocketbase-{{ .id }}-secrets
|
|
- Password: Check the secret: pocketbase-{{ .id }}-secrets
|
|
|
|
To get the admin password:
|
|
kubectl get secret pocketbase-{{ .id }}-secrets -o jsonpath='{.data.admin-password}' | base64 -d
|
|
|
|
{{- end }}
|
|
{{- end }}
|