17 lines
634 B
YAML
17 lines
634 B
YAML
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: stackspin-calcom-keys
|
|
namespace: stackspout
|
|
stringData:
|
|
DATABASE_URL: "postgresql://calcom:${postgresql_password}@calcom-postgresql/calcom"
|
|
NEXT_PUBLIC_WEBAPP_URL: "https://${calcom_domain}"
|
|
NEXTAUTH_SECRET: "${nextauth_secret}"
|
|
CALENDSO_ENCRYPTION_KEY: "${calendso_key}"
|
|
EMAIL_FROM: "${outgoing_mail_from_address}"
|
|
EMAIL_SERVER_HOST: "${outgoing_mail_smtp_host}"
|
|
EMAIL_SERVER_PORT: "!!str ${outgoing_mail_smtp_port}"
|
|
EMAIL_SERVER_USER: "${outgoing_mail_smtp_user}"
|
|
EMAIL_SERVER_PASSWORD: "${outgoing_mail_smtp_password}"
|
|
# email_enabled: "${outgoing_mail_enabled}"
|