forked from xwiki-contrib/xwiki-helm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalues.yaml
More file actions
executable file
·94 lines (87 loc) · 2.05 KB
/
values.yaml
File metadata and controls
executable file
·94 lines (87 loc) · 2.05 KB
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
# 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
## Image Tag useful when externalDB is been used
tag: ''
service:
portName: node
name: http
type: ClusterIP
externalPort: 80
internalPort: 8080
resources:
limits:
cpu: 350m
memory: 1000Mi
requests:
cpu: 150m
memory: 250Mi
##
## 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
##
## MySql 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: true
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: false
host: localhost
port: 8983
# To use ingress for routing set ingress.enabled value to true and istio.enabled value to false
ingress:
enabled: true
issuer: dev-issuer
annotations:
kubernetes.io/ingress.class: nginx
# ingress.kubernetes.io/rewrite-target: /
# To use istio for routing set istio.enabled value to true and ingress.enabled value to false
istio:
enabled: false
host: "*"
storage: "500Mi"
storageClassName: ""
buildID: "123"
## 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