16 lines
441 B
YAML
16 lines
441 B
YAML
|
|
# Copy to secret.yaml (gitignored), set real values, and apply once:
|
||
|
|
# kubectl apply -f secret.yaml
|
||
|
|
# user-email / user-password are the login tududi creates on first start.
|
||
|
|
# session-secret signs session cookies -- generate with:
|
||
|
|
# openssl rand -hex 64
|
||
|
|
apiVersion: v1
|
||
|
|
kind: Secret
|
||
|
|
metadata:
|
||
|
|
name: tududi
|
||
|
|
namespace: tududi
|
||
|
|
type: Opaque
|
||
|
|
stringData:
|
||
|
|
user-email: you@example.com
|
||
|
|
user-password: CHANGE-ME
|
||
|
|
session-secret: CHANGE-ME
|