-
Notifications
You must be signed in to change notification settings - Fork 10
/
values.yaml
146 lines (120 loc) · 3.49 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
### Default values for taiga.
image:
repository: mvitale1989/docker-taiga
tag: "20191031-4.2.14"
initRepository: alpine
initTag: 3.7
pullPolicy: IfNotPresent
service:
type: ClusterIP
port: 80
ingress:
enabled: false
#ingressClassName: "nginx"
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
- chart-example.local
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
resources: {}
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
nodeSelector: {}
tolerations: []
affinity: {}
extraLabels: {}
### Parameters for the taiga service
###
taiga:
### The name on which the taiga backend API server will be accessible. In this chart, it's the same name you will use to
### access the frontend. Notes:
### - Must be formatted exactly as you would type the hostname part of the URL in a browser, including the port number if needed.
### - Must be reachable by ALL clients using the service. See F.A.Q. in the readme, for more informations.
###
apiserver: localhost:8080
### Whether taiga is behind a TLS termination; if using a TLS ingress, set this to true.
###
behindTlsProxy: false
### Database access parameters
### You only need to specify `dbHost` if you don't use this chart's embedded postgresql
###
dbHost: ""
dbName: taiga
dbUser: taiga
dbPassword: "changeme"
### If you enable email, also uncomment and configure the parameters below
###
emailEnabled: false
# emailFrom: "[email protected]"
# emailUseTls: true
# emailSmtpHost: "smtp.example.com"
# emailSmtpPort: 587
# emailSmtpUser: "[email protected]"
# emailSmtpPassword: ""
ldap:
enabled: False
use_tls: False
ldap_server: ldap://<ldap_server_host_name>
port: 389
bind_dn: "cn=something,ou=admins,ou=theouhere,ou=auth,o=ethz,c=ch"
base_dn: "basednhere"
password: "changeme"
username_attribute: "uid"
email_attribute: "mail"
full_name_attribute: "displayName"
fallback: "normal"
save_password: False
filter: "(mail=*)"
### Configure taiga-back's secret key
### If omitted, a random alphanumeric string of 10 characters will be generated
###
# secretKey: "changeme"
### Persistent volume and database configuration for the taiga service
###
persistence:
### Whether or not you want this chart to provision the database for you
### Database parameters must be specified under the `postgres` value
###
deployPostgres: true
### If you don't want persistence for the taiga media storage, disable this
###
enabled: true
size: 8Gi
accessMode: ReadWriteOnce
# annotations:
# "helm.sh/resource-policy": keep
### StorageClass for the provisioned PVC.
###
# storageClass: ""
### If you prefer using a PVC defined outside of this chart instead, uncomment this
### Requires `persistence.enabled: true`
###
# existingClaim: ""
### Any stable/postgres values can be defined here
###
postgresql:
### Create a postgres user, password and database
###
postgresqlUsername: "taiga"
postgresqlPassword: "changeme"
postgresqlDatabase: "taiga"
persistence:
enabled: true
size: 2Gi
# annotations:
# "helm.sh/resource-policy": keep
### StorageClass for the provisioned PVC.
###
# storageClass: ""
### If you prefer using a PVC defined outside of this chart instead, uncomment this
### Requires `postgresql.persistence.enabled: true`
###
# existingClaim: ""