apps/meet/calcom/calcom: overhaul app configuration
This commit is contained in:
parent
b68e4da80c
commit
7c7812f68c
|
@ -4,16 +4,31 @@ metadata:
|
||||||
name: stackspin-calcom-keys
|
name: stackspin-calcom-keys
|
||||||
namespace: stackspout
|
namespace: stackspout
|
||||||
stringData:
|
stringData:
|
||||||
|
# https://github.com/calcom/cal.com/blob/main/.env.example
|
||||||
DATABASE_URL: "postgresql://calcom:${postgresql_password}@calcom-postgresql/calcom"
|
DATABASE_URL: "postgresql://calcom:${postgresql_password}@calcom-postgresql/calcom"
|
||||||
#ALLOWED_HOSTNAMES: '"${calcom_domain}"'
|
|
||||||
NEXT_PUBLIC_WEBAPP_URL: "https://${calcom_domain}"
|
NEXT_PUBLIC_WEBAPP_URL: "https://${calcom_domain}"
|
||||||
|
#ALLOWED_HOSTNAMES: '"${calcom_domain}"'
|
||||||
#NEXT_PUBLIC_API_V2_URL: "https://${calcom_domain}/api/v2"
|
#NEXT_PUBLIC_API_V2_URL: "https://${calcom_domain}/api/v2"
|
||||||
|
CALCOM_TELEMETRY_DISABLED: 1
|
||||||
|
SEND_FEEDBACK_EMAIL: "${admin_email}"
|
||||||
|
|
||||||
|
NEXT_PUBLIC_APP_NAME: "Bookings for ${org_name}"
|
||||||
|
NEXT_PUBLIC_SUPPORT_MAIL_ADDRESS: "${admin_email}"
|
||||||
|
NEXT_PUBLIC_COMPANY_NAME: "${org_name}"
|
||||||
|
# Set this to true in to disable new signups
|
||||||
|
# NEXT_PUBLIC_DISABLE_SIGNUP=true
|
||||||
|
|
||||||
NEXTAUTH_SECRET: "${nextauth_secret}"
|
NEXTAUTH_SECRET: "${nextauth_secret}"
|
||||||
CALENDSO_ENCRYPTION_KEY: "${calendso_key}"
|
CALENDSO_ENCRYPTION_KEY: "${calendso_key}"
|
||||||
|
|
||||||
EMAIL_FROM: "${outgoing_mail_from_address}"
|
EMAIL_FROM: "${outgoing_mail_from_address}"
|
||||||
#EMAIL_FROM_NAME: "${org_name}"
|
EMAIL_FROM_NAME: "${org_name}"
|
||||||
EMAIL_SERVER_HOST: "${outgoing_mail_smtp_host}"
|
EMAIL_SERVER_HOST: "${outgoing_mail_smtp_host}"
|
||||||
EMAIL_SERVER_PORT: ${quote}${outgoing_mail_smtp_port}${quote}
|
EMAIL_SERVER_PORT: ${quote}${outgoing_mail_smtp_port}${quote}
|
||||||
EMAIL_SERVER_USER: "${outgoing_mail_smtp_user}"
|
EMAIL_SERVER_USER: "${outgoing_mail_smtp_user}"
|
||||||
EMAIL_SERVER_PASSWORD: "${outgoing_mail_smtp_password}"
|
EMAIL_SERVER_PASSWORD: "${outgoing_mail_smtp_password}"
|
||||||
# email_enabled: "${outgoing_mail_enabled}"
|
# email_enabled: "${outgoing_mail_enabled}"
|
||||||
|
|
||||||
|
# NEXT_PUBLIC_LOGGER_LEVEL=3 sets to log info, warn, error and fatal logs.
|
||||||
|
# [0: silly & upwards, 1: trace & upwards, 2: debug & upwards, 3: info & upwards, 4: warn & upwards, 5: error & fatal, 6: fatal]
|
||||||
|
# NEXT_PUBLIC_LOGGER_LEVEL=2
|
||||||
|
|
|
@ -27,9 +27,7 @@ data:
|
||||||
#image:
|
#image:
|
||||||
# tag: v4.5.10
|
# tag: v4.5.10
|
||||||
secretRef: "stackspin-calcom-keys"
|
secretRef: "stackspin-calcom-keys"
|
||||||
commonLabels:
|
labels:
|
||||||
stackspin.net/backupSet: "calcom"
|
|
||||||
podLabels:
|
|
||||||
stackspin.net/backupSet: "calcom"
|
stackspin.net/backupSet: "calcom"
|
||||||
ingress:
|
ingress:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
Loading…
Reference in New Issue