2024-02-29 13:56:11 +00:00
|
|
|
apiVersion: v1
|
|
|
|
kind: ConfigMap
|
|
|
|
metadata:
|
|
|
|
name: stackspin-taiga-values
|
|
|
|
namespace: stackspout
|
|
|
|
data:
|
|
|
|
values.yaml: |
|
|
|
|
# https://github.com/nemonik/taiga-helm/blob/master/values.yaml
|
|
|
|
commonLabels:
|
|
|
|
stackspin.net/backupSet: "taiga"
|
|
|
|
podLabels:
|
|
|
|
stackspin.net/backupSet: "taiga"
|
|
|
|
|
|
|
|
taigaDB:
|
|
|
|
persistence:
|
|
|
|
enabled: true
|
|
|
|
existingClaim: taiga-postgres
|
|
|
|
podAnnotations:
|
|
|
|
backup.velero.io/backup-volumes: "data"
|
|
|
|
|
|
|
|
taigaGateway:
|
|
|
|
ingress:
|
|
|
|
enabled: true
|
|
|
|
annotations:
|
|
|
|
kubernetes.io/tls-acme: "true"
|
2024-04-10 13:21:21 +00:00
|
|
|
nginx.ingress.kubernetes.io/configuration-snippet: |
|
|
|
|
more_set_headers "Content-Security-Policy: frame-ancestors 'self' files.${domain}";
|
2024-02-29 13:56:11 +00:00
|
|
|
hosts:
|
|
|
|
- host: "${taiga_domain}"
|
|
|
|
paths:
|
|
|
|
- path: /
|
|
|
|
pathType: Prefix
|
|
|
|
tls:
|
|
|
|
- secretName: taiga-tls
|
|
|
|
hosts:
|
|
|
|
- "${taiga_domain}"
|
|
|
|
|
|
|
|
env:
|
2024-03-02 11:54:19 +00:00
|
|
|
#taigaURL: "https://${taiga_domain}"
|
|
|
|
#taigaWebsocketsURL: "ws://${taiga_domain}"
|
2024-02-29 13:56:11 +00:00
|
|
|
|
2024-03-02 11:54:19 +00:00
|
|
|
enableEmail: "${outgoing_mail_enabled}"
|
|
|
|
emailHost: "${outgoing_mail_smtp_host}"
|
|
|
|
emailPort: "${outgoing_mail_smtp_port}"
|
|
|
|
emailHostUser: "${outgoing_mail_smtp_user}"
|
|
|
|
emailHostPassword: "${outgoing_mail_smtp_password}"
|
|
|
|
defaultFromEmail: "${outgoing_mail_from_address}"
|
|
|
|
|
|
|
|
# taiga OpenID Connect Single Sign-On Configuration
|
2024-02-29 13:56:11 +00:00
|
|
|
# - name: Stackspin
|
|
|
|
# key: "${client_id}"
|
|
|
|
# secret: "${client_secret}"
|
|
|
|
# issuer: "https://${hydra_domain}"
|
|
|
|
# autoDiscoverUrl: 'https://${hydra_domain}/.well-known/openid-configuration'
|