-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
327 lines (322 loc) · 10.1 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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
# -- Provide a name in place of the default application name.
nameOverride: ""
# -- String to fully override the default application name.
fullnameOverride: ""
# Image credentials configuration.
imageCredentials:
# -- Registry to pull images from.
registry: ""
# -- Username to pull images.
username: ""
# -- Password to pull images.
password: ""
# -- Email to pull images.
email: ""
# Global configuration.
global:
# -- Map of environment variables to inject into backend and frontend containers.
env: {}
# -- Map of environment variables to inject into backend and frontend containers.
secrets: {}
# Ingress configuration
ingress:
# -- Whether or not ingress should be enabled.
enabled: true
# -- Defines which ingress controller will implement the resource.
className: ""
# -- Additional ingress annotations.
annotations: {}
# -- Additional ingress labels.
labels: {}
# -- The list of hosts to be covered by ingress record.
hosts:
- "domain.local"
# -- Enable TLS configuration.
tls: []
# - secretName: domain.local-tls
# hosts:
# - domain.local
# Server configuration.
server:
# -- The number of application controller pods to run.
replicaCount: 1
## Server image.
image:
# -- Repository to use for the server.
repository: "docker.io/lissy93/dashy"
# -- Image pull policy for the server.
pullPolicy: "Always"
# -- Tag to use for the server.
## Overrides the image tag whose default is the chart appVersion.
tag: ""
# -- Annotations for the server deployed pods.
podAnnotations: {}
# -- Labels for the server deployed pods.
podLabels: {}
# -- Toggle and define pod-level security context.
podSecurityContext: {}
# fsGroup: 2000
# -- Init containers to add to the server pod.
initContainers: []
# - name: wait-for-keycloak
# image: docker.io/curlimages/curl:latest
# command:
# - "/bin/sh"
# - "-c"
# args:
# - "while [ $(curl -sw '%{http_code}' http://webserver.svc.cluster.local -o /dev/null) -ne 200 ]; do sleep 5; echo 'Waiting for the webserver...'; done"
# volumeMounts:
# - mountPath: /custom-volume
# name: custom-volume
container:
# -- server container port.
port: 8080
# -- server container command.
command: []
# -- server container command args.
args: []
# -- Toggle and define container-level security context.
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
# -- Extra containers to add to the server pod as sidecars.
extraContainers: []
# - name: fluentd
# image: "fluentd"
# volumeMounts:
# - mountPath: /my-volume/config
# name: config
# -- server container env variables loaded from configmap or secret reference.
envFrom: []
# - configMapRef:
# name: my-config
# - secretRef:
# name: my-secret
# -- server container env variables, it will be injected into a configmap and loaded into the container.
env: {}
# -- server container env secrets, it will be injected into a secret and loaded into the container.
secrets: {}
# -- server container healthcheck endpoint.
healthcheckPath: "/"
## Deployment strategy for CPN server deployment.
strategy:
# -- Strategy type used to replace old Pods by new ones, can be "Recreate" or "RollingUpdate".
type: "RollingUpdate"
## Startup probe for server.
startupProbe:
# -- Whether or not enable the probe.
enabled: true
# -- Number of seconds after the container has started before probe is initiated.
initialDelaySeconds: 0
# -- Minimum consecutive successes for the probe to be considered successful after having failed.
successThreshold: 1
# -- Minimum consecutive failures for the probe to be considered failed after having succeeded.
failureThreshold: 10
# -- How often (in seconds) to perform the probe.
periodSeconds: 10
# -- Number of seconds after which the probe times out.
timeoutSeconds: 5
## Readiness probe for server.
readinessProbe:
# -- Whether or not enable the probe.
enabled: true
# -- Number of seconds after the container has started before probe is initiated.
initialDelaySeconds: 15
# -- Minimum consecutive successes for the probe to be considered successful after having failed.
successThreshold: 2
# -- Minimum consecutive failures for the probe to be considered failed after having succeeded.
failureThreshold: 2
# -- How often (in seconds) to perform the probe.
periodSeconds: 10
# -- Number of seconds after which the probe times out.
timeoutSeconds: 5
## Liveness probe for server.
livenessProbe:
# -- Whether or not enable the probe.
enabled: true
# -- Whether or not enable the probe.
initialDelaySeconds: 30
# -- Number of seconds after the container has started before probe is initiated.
successThreshold: 1
# -- Minimum consecutive successes for the probe to be considered successful after having failed.
failureThreshold: 3
# -- Minimum consecutive failures for the probe to be considered failed after having succeeded.
periodSeconds: 30
# -- How often (in seconds) to perform the probe.
timeoutSeconds: 5
# -- Host aliases that will be injected at pod-level into /etc/hosts.
hostAliases: []
# - ip: "127.0.0.1"
# hostnames:
# - "foo.local"
# - "bar.local"
# - ip: "10.1.2.3"
# hostnames:
# - "foo.remote"
# - "bar.remote"
# -- List of extra volumes to add.
extraVolumes: []
# - name: extra-vol
# path: /host/path
# type: hostPath
# - name: extra-vol-cm
# type: configMap
# -- List of extra mounts to add (normally used with extraVolumes)
extraVolumeMounts: []
# - name: extra-vol
# mountPath: /volume/path
# - name: extra-vol-cm
# mountPath: /volume/cm/path
service:
# -- server service type.
type: "ClusterIP"
# -- server service port.
port: 80
resources:
requests:
# -- Memory request for the server.
memory: "256Mi"
# -- CPU request for the server.
cpu: "100m"
limits:
# -- Memory limit for the server.
memory: "2Gi"
# -- CPU limit for the server.
cpu: "500m"
autoscaling:
# -- Enable Horizontal Pod Autoscaler ([HPA]) for the server.
enabled: false
# -- Minimum number of replicas for the server [HPA].
minReplicas: 1
# -- Maximum number of replicas for the server [HPA].
maxReplicas: 3
# -- Average CPU utilization percentage for the server [HPA].
targetCPUUtilizationPercentage: 80
# -- Average memory utilization percentage for the server [HPA].
targetMemoryUtilizationPercentage: 80
# -- Default node selector for server.
nodeSelector: {}
# -- Default tolerations for server.
tolerations: []
# -- Default affinity for server.
affinity: {}
# Server configuration.
serviceAccount:
# -- Create a service account for the API.
create: false
# -- Annotations applied to created service account.
annotations: {}
# -- Service account name.
name: "server-sa"
# -- Mount path for the config file inside the container.
configMountPath: /app/user-data
# -- Application custom configuration that will be mount inside the container.
config:
pageInfo:
title: Home
navLinks:
- title: GitHub
path: https://github.com/this-is-tobi
# appConfig:
# theme: adventure-basic
# startingView: default
# statusCheck: true
# statusCheckInterval: 300
# disableConfigurationForNonAdmin: true
# webSearch:
# disableWebSearch: true
# disableConfiguration: true
# hideComponents:
# hideHeading: false
# hideNav: true
# hideSearch: true
# hideSettings: true
# hideFooter: true
# sections:
# - name: Services
# icon: fas fa-rocket
# items:
# - title: Grafana
# description: Watch cluster metrics & application logs
# url: https://monitoring.domain.local
# icon: hl-grafana
# - title: Harbor
# description: Container image registry & Helm chart registry
# url: https://registry.domain.local
# icon: hl-harbor
# - title: Minio
# description: Store data with s3 standard
# url: https://s3.domain.local
# icon: hl-minio
# displayData:
# sortBy: alphabetical
# collapsed: false
# rows: 5
# cols: 2
# itemSize: large
# - name: Utils
# icon: fas fa-wrench
# items:
# - title: Documentation
# description: As the saying goes RTFM
# url: https://this-is-tobi.com
# icon: fal fa-book
# statusCheck: false
# - title: Github
# description: Source code
# url: https://github.com/this-is-tobi/homelab
# icon: fab fa-github
# statusCheck: false
# displayData:
# sortBy: alphabetical
# collapsed: false
# rows: 2
# cols: 1
# itemSize: large
# - name: Services - Admin
# icon: fas fa-cog
# items:
# - title: Keycloak
# description: Single Sign On managment
# url: https://sso.domain.local
# icon: hl-keycloak
# displayData:
# sortBy: alphabetical
# collapsed: true
# rows: 3
# cols: 1
# itemSize: large
# Keycloak configuration.
## Ref: https://artifacthub.io/packages/helm/bitnami/keycloak
keycloak:
enabled: false
nameOverride: "keycloak"
auth:
adminUser: ""
adminPassword: ""
ingress:
enabled: true
ingressClassName: ""
annotations: {}
hostname: "keycloak.domain.local"
path: "/"
tls: false
secrets: []
production: true
proxy: "edge"
tls:
enabled: false
autoGenerated: false
postgresql:
nameOverride: "keycloak-db"
enabled: true
auth:
postgresPassword: ""
username: ""
password: ""
database: "keycloak"
architecture: "standalone"