16 lines
499 B
YAML
16 lines
499 B
YAML
# Copy to secret.yaml, fill in real values, and apply with:
|
|
# kubectl apply -f secret.yaml
|
|
# Never commit the filled-in secret.yaml to git.
|
|
#
|
|
# POSTGRES_USER/POSTGRES_PASSWORD must match k8s/postgres/secret.yaml.
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: miniflux-credentials
|
|
namespace: watch
|
|
type: Opaque
|
|
stringData:
|
|
DATABASE_URL: postgres://postgres:changeme@postgres-postgresql.postgres.svc.cluster.local:5432/miniflux?sslmode=disable
|
|
ADMIN_USERNAME: admin
|
|
ADMIN_PASSWORD: changeme
|