-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathvalues.yaml
More file actions
157 lines (150 loc) · 5.32 KB
/
Copy pathvalues.yaml
File metadata and controls
157 lines (150 loc) · 5.32 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
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
# 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: "ghcr.io/joshuacox/resourcespace_docker/resourcespace"
# This is the version of the main application.
# Leave it to blank to use the Chart "AppVersion" value.
# key: resourcespace.repository.tag
tag: "latest"
# 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
# Default value for ingress.class annotation
# class: "-"
# If the value is "-", controller will not set ingressClassName
# If the value is "", Ingress will be set to an empty string, so
# controller will use the default value for ingressClass
# If the value is specified, controller will set the named class e.g. "nginx"
# key: resourcespace.ingress
ingress:
# key: resourcespace.ingress.annotations
annotations: {}
# key: resourcespace.ingress.host
host: resourcespace.example.com
# key: resourcespace.ingress.path
path: /
# key: resourcespace.ingress.class
class: '-'
# key: resourcespace.ingress.enabled
enabled: false
# Ingress TLS configuration
# If enabled, a secret containing the certificate and the key should be
# created by the ingress controller. If the name if emtpy, so the secret
# name is generated. You can specify the secret name to use your own secret.
# key: resourcespace.ingress.tls
tls:
# key: resourcespace.ingress.tls.enabled
enabled: true
# key: resourcespace.ingress.tls.secretName
secretName: ""
# 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