14 lines
414 B
YAML
14 lines
414 B
YAML
|
|
# Copy to secret.yaml (gitignored), set real values, and apply once:
|
||
|
|
# kubectl apply -f secret.yaml
|
||
|
|
# These are the PocketBase superuser credentials dashwise creates on first
|
||
|
|
# start; they are also what you use to reach the PocketBase admin UI.
|
||
|
|
apiVersion: v1
|
||
|
|
kind: Secret
|
||
|
|
metadata:
|
||
|
|
name: dashwise
|
||
|
|
namespace: dashwise
|
||
|
|
type: Opaque
|
||
|
|
stringData:
|
||
|
|
pb-admin-email: you@example.com
|
||
|
|
pb-admin-password: CHANGE-ME
|