-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathvalues.yaml
More file actions
126 lines (120 loc) · 4.05 KB
/
Copy pathvalues.yaml
File metadata and controls
126 lines (120 loc) · 4.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
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
# This file is autogenerated by katenary
#
# DO NOT EDIT IT BY HAND UNLESS YOU KNOW WHAT YOU ARE DOING
#
# If you want to change the content of this file, you should edit the
# compose file and run katenary again.
# If you need to override some values, you can do it in a override file
# and use the -f flag to specify it when running the helm command.
# mariadb configuration
mariadb:
# key: mariadb.repository
repository:
# key: mariadb.repository.image
image: mariadb
# key: mariadb.repository.tag
tag: ""
# key: mariadb.persistence
persistence:
# key: mariadb.persistence.mariadb
mariadb:
# Storage class to use for PVCs
# storageClass: "-" means use default
# storageClass: "" means do not specify
# storageClass: "foo" means use that storageClass
# key: mariadb.persistence.mariadb.storageClass
storageClass: '-'
# key: mariadb.persistence.mariadb.size
size: 1Gi
# key: mariadb.persistence.mariadb.accessMode
accessMode:
- ReadWriteOnce
# key: mariadb.persistence.mariadb.enabled
enabled: true
# key: mariadb.replicas
replicas: 1
# key: mariadb.nodeSelector
nodeSelector: {}
# Resources allows you to specify the resource requests and limits for a service.
# Resources are used to specify the amount of CPU and memory that
# a container needs.
#
# e.g.
# resources:
# requests:
# memory: "64Mi"
# cpu: "250m"
# limits:
# memory: "128Mi"
# cpu: "500m"
# key: mariadb.resources
resources: {}
# imagePullPolicy allows you to specify a policy to cache or always pull an image.
# You must provide a string value with one of the following values:
# - Always -> will always pull the image
# - Never -> will never pull the image, the image should be present on the node
# - IfNotPresent -> will pull the image only if it is not present on the node
# key: mariadb.imagePullPolicy
imagePullPolicy: IfNotPresent
# key: mariadb.serviceAccount
serviceAccount: ""
# imagePullSecrets allows you to specify a name of an image pull secret.
# You must provide a list of object with the name field set to the name of the
# e.g.
# pullSecrets:
# - name: regcred
# You are, for now, responsible for creating the secret.
pullSecrets: []
# resourcespace configuration
resourcespace:
# key: resourcespace.repository
repository:
# key: resourcespace.repository.image
image: ""
# key: resourcespace.repository.tag
tag: ""
# key: resourcespace.persistence
persistence:
# key: resourcespace.persistence.filestore
filestore:
# Storage class to use for PVCs
# storageClass: "-" means use default
# storageClass: "" means do not specify
# storageClass: "foo" means use that storageClass
# key: resourcespace.persistence.filestore.storageClass
storageClass: '-'
# key: resourcespace.persistence.filestore.size
size: 1Gi
# key: resourcespace.persistence.filestore.accessMode
accessMode:
- ReadWriteOnce
# key: resourcespace.persistence.filestore.enabled
enabled: true
# key: resourcespace.replicas
replicas: 1
# key: resourcespace.nodeSelector
nodeSelector: {}
# Resources allows you to specify the resource requests and limits for a service.
# Resources are used to specify the amount of CPU and memory that
# a container needs.
#
# e.g.
# resources:
# requests:
# memory: "64Mi"
# cpu: "250m"
# limits:
# memory: "128Mi"
# cpu: "500m"
# key: resourcespace.resources
resources: {}
# imagePullPolicy allows you to specify a policy to cache or always pull an image.
# You must provide a string value with one of the following values:
# - Always -> will always pull the image
# - Never -> will never pull the image, the image should be present on the node
# - IfNotPresent -> will pull the image only if it is not present on the node
# key: resourcespace.imagePullPolicy
imagePullPolicy: IfNotPresent
# key: resourcespace.serviceAccount
serviceAccount: ""
# vim: ft=yaml