58 lines
1.8 KiB
YAML
58 lines
1.8 KiB
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: stackspin-calcom-values
|
|
namespace: stackspout
|
|
data:
|
|
values.yaml: |
|
|
postgresql:
|
|
# https://github.com/Pyrrha/calcom-helm/blob/main/charts/calcom-stack/values.yaml
|
|
enabled: true
|
|
commonLabels:
|
|
stackspin.net/backupSet: "calcom"
|
|
# https://github.com/bitnami/charts/tree/main/bitnami/postgresql/#postgresql-common-parameters
|
|
auth:
|
|
database: calcom
|
|
username: calcom
|
|
existingSecret: "stackspin-calcom-postgres"
|
|
primary:
|
|
persistence:
|
|
existingClaim: calcom-postgres
|
|
podAnnotations:
|
|
backup.velero.io/backup-volumes: "data"
|
|
|
|
calcom:
|
|
# https://github.com/Pyrrha/calcom-helm/blob/main/charts/calcom/values.yaml
|
|
secretRef: "stackspin-calcom-keys"
|
|
commonLabels:
|
|
stackspin.net/backupSet: "calcom"
|
|
podLabels:
|
|
stackspin.net/backupSet: "calcom"
|
|
ingress:
|
|
enabled: true
|
|
annotations:
|
|
kubernetes.io/tls-acme: "true"
|
|
hosts:
|
|
- host: "${calcom_domain}"
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- secretName: calcom-tls
|
|
hosts:
|
|
- "${calcom_domain}"
|
|
|
|
# TODO Adjust calcom Mailing config
|
|
# mailer:
|
|
# enabled: "${outgoing_mail_enabled}"
|
|
# host: "${outgoing_mail_smtp_host}"
|
|
# port: "${outgoing_mail_smtp_port}"
|
|
# username: "${outgoing_mail_smtp_user}"
|
|
# password: "${outgoing_mail_smtp_password}"
|
|
# fromemail: "${outgoing_mail_from_address}"
|
|
# TODO Adjust calcom OpenID Connect Single Sign-On Configuration
|
|
# - name: Stackspin
|
|
# key: "${client_id}"
|
|
# secret: "${client_secret}"
|
|
# autoDiscoverUrl: 'https://${hydra_domain}/.well-known/openid-configuration'
|