This repository has been archived by the owner on Aug 31, 2021. It is now read-only.
forked from taksan/xwiki-helm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
160 lines (146 loc) · 3.67 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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
# Default values for node.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
replicaCount: 1
image:
name: xwiki
pullPolicy: IfNotPresent
wikiversion: lts
## Image Tag useful when externalDB is been used
tag: ''
service:
portName: node
name: http
type: LoadBalancer
externalPort: 80
internalPort: 8080
resources:
limits:
cpu: 3000m
memory: 6000Mi
requests:
cpu: 500m
memory: 3000Mi
##
## MySql chart configuration
##
## https://github.com/helm/charts/tree/master/stable/mysql
##
mysql:
## Whether to deploy a mysql server. Set false for a different database.
enabled: false
mysqlRootPassword: xwiki
mysqlUser: xwiki
mysqlPassword: xwiki
mysqlDatabase: xwiki
imageTag: 5.7
configurationFiles:
mysql.cnf: |-
[client]
default-character-set = utf8mb4
[mysqld]
character-set-server = utf8mb4
collation-server = utf8mb4_bin
explicit_defaults_for_timestamp = 1
[mysql]
default-character-set = utf8mb4
## MariaDB helm chart
## https://github.com/bitnami/charts/tree/master/bitnami/mariadb
mariadb:
## Whether to deploy a mariadb server
enabled: false
auth:
rootPassword: xwiki
username: xwiki
password: xwiki
database: xwiki
persistence:
size: 20Gi
image:
tag: 10.5.10
primary:
configuration: |-
[mysqld]
skip-name-resolve
explicit_defaults_for_timestamp = 1
basedir=/opt/bitnami/mariadb
plugin_dir=/opt/bitnami/mariadb/plugin
port=3306
socket=/opt/bitnami/mariadb/tmp/mysql.sock
tmpdir=/opt/bitnami/mariadb/tmp
max_allowed_packet=16M
bind-address=0.0.0.0
pid-file=/opt/bitnami/mariadb/tmp/mysqld.pid
log-error=/opt/bitnami/mariadb/logs/mysqld.log
character-set-server = utf8mb4
collation-server = utf8mb4_bin
[client]
port=3306
socket=/opt/bitnami/mariadb/tmp/mysql.sock
default-character-set = utf8mb4
plugin_dir=/opt/bitnami/mariadb/plugin
[manager]
port=3306
socket=/opt/bitnami/mariadb/tmp/mysql.sock
pid-file=/opt/bitnami/mariadb/tmp/mysqld.pid
[mysql]
default-character-set = utf8mb4
##
## Postgres chart configuration
##
## https://github.com/helm/charts/tree/master/stable/postgresql
##
postgresql:
## Whether to deploy a postgresql server. Set false for a different database.
enabled: false
postgresqlUsername: xwiki
postgresqlPassword: xwiki
postgresqlDatabase: xwiki
image:
tag: 11.3.0-debian-9-r38
#persistence:
# size: 8Gi
##
## For custom mysql and postgres database. Use externalDB.
## Would be used only if postgres and mysql is disabled.
## Set the image tag if want to use externalDB
##
externalDB:
password: ''
user: ''
database: ''
host: ''
##
## To use external solr enable solr, provide host and port
##
solr:
enabled: true
host: localhost
port: 8983
storage: 8Gi
storageAccessMode: ReadWriteOnce
# To use ingress for routing set ingress.enabled value to true and istio.enabled value to false
ingress:
enabled: false
annotations:
kubernetes.io/ingress.class: nginx
hostName:
tls:
# To use istio for routing set istio.enabled value to true and ingress.enabled value to false
istio:
enabled: false
host: "*"
storage: "500Mi"
storageClassName: ""
storageAccessMode: "ReadWriteOnce"
deployStrategy: "Recreate"
buildID: "123"
webXmlFile: default-web.xml
xwikiCfgFile: default-xwiki.cfg
xwikiPropertiesFile: default-xwiki.properties
## Read about PostDistribution budget at https://kubernetes.io/docs/concepts/workloads/pods/disruptions/
## Use only on a clustered setup
podDisruptionBudget:
enabled: false
minAvailable: 1
# maxUnavailable: 1