apiVersion: v1 kind: Secret metadata: name: jitsi-settings type: Opaque stringData: # Django settings DEBUG: "False" # This is hidden behind ingress and (presumably) only works if it has access to # all jitsi pods and services # If this is not set to '*' there is 404 on every webpage ALLOWED_HOSTS: "*" # For better security, set this to your deployment's domain. Comma separated. DJANGO_SECRET_KEY: django-secret-key ACCOUNT_SIGNUPS_ENABLED: "False" TIME_ZONE: "America/New_York" # Redis configuration (if you use the default Kubernetes config, this will work) REDIS_CACHE_LOCATION: "redis://jitsi-redis.default.svc.cluster.local/0" CELERY_BROKER_URL: "redis://jitsi-redis.default.svc.cluster.local/1" # PostgreSQL settings DB_NAME: "jitsi" DB_USER: postgres-db-user DB_PASSWORD: postgres-db-password DB_HOST: "postgresql-service" # Email settings EMAIL_HOST_USER: "" EMAIL_HOST_PASSWORD: "" EMAIL_HOST: "" SERVER_EMAIL: "jitsi "