shynet/kubernetes/secrets_template.yml

29 lines
809 B
YAML
Raw Normal View History

2020-04-15 02:57:27 +08:00
apiVersion: v1
kind: Secret
metadata:
2020-05-08 05:06:04 +08:00
name: shynet-settings
2020-04-15 02:57:27 +08:00
type: Opaque
stringData:
# Django settings
DEBUG: "False"
ALLOWED_HOSTS: "*" # For better security, set this to your deployment's domain. Comma separated.
DJANGO_SECRET_KEY: ""
ACCOUNT_SIGNUPS_ENABLED: "False"
TIME_ZONE: "America/New_York"
2020-04-15 02:57:27 +08:00
# Redis configuration (if you use the default Kubernetes config, this will work)
2020-05-06 02:42:26 +08:00
REDIS_CACHE_LOCATION: "redis://shynet-redis.default.svc.cluster.local/0"
CELERY_BROKER_URL: "redis://shynet-redis.default.svc.cluster.local/1"
2020-04-15 02:57:27 +08:00
# PostgreSQL settings
DB_NAME: ""
DB_USER: ""
DB_PASSWORD: ""
DB_HOST: ""
# Email settings
EMAIL_HOST_USER: ""
EMAIL_HOST_PASSWORD: ""
EMAIL_HOST: ""
SERVER_EMAIL: "Shynet <noreply@shynet.example.com>"