-
Notifications
You must be signed in to change notification settings - Fork 47
/
sample-values-overrides.yaml
375 lines (326 loc) · 12.7 KB
/
sample-values-overrides.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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
##
##
## This file demonstrates how you might structure overrides for the 'sample-values.yaml' file.
## By default, this file makes NO changes when applied over the 'sample-values.yaml' file.
##
## Notes:
## - YAML maps are RECURSIVELY merged across values files
## - YAML lists are REPLACED in their entirety across values files
## - Do NOT include empty/null sections, as this will remove ALL values from that section.
## To include a section without overriding any values, set it to an empty map: `{}`
## - We don't show all sections/values, only those which are commonly overridden.
## The full list is available at https://www.deploykf.org/reference/deploykf-values/
##
##
## --------------------------------------------------------------------------------
## deploykf-dependencies
## --------------------------------------------------------------------------------
deploykf_dependencies:
## --------------------------------------
## cert-manager
## --------------------------------------
cert_manager:
{} # <-- REMOVE THIS, IF YOU INCLUDE VALUES UNDER THIS SECTION!
## extra manifests
##
#extraManifests:
# - |
# apiVersion: cert-manager.io/v1
# kind: ClusterIssuer
# metadata:
# name: my-cluster-issuer
# spec:
# acme:
# << YOUR ACME CONFIGURATION >>
## istio gateway certificate issuer configs
## - https://www.deploykf.org/guides/platform/deploykf-gateway/#use-lets-encrypt-with-cert-manager
##
#clusterIssuer:
# enabled: false
# issuerName: my-cluster-issuer
## --------------------------------------
## istio
## --------------------------------------
istio:
{} # <-- REMOVE THIS, IF YOU INCLUDE VALUES UNDER THIS SECTION!
## --------------------------------------
## kyverno
## --------------------------------------
kyverno:
{} # <-- REMOVE THIS, IF YOU INCLUDE VALUES UNDER THIS SECTION!
## --------------------------------------------------------------------------------
## deploykf-core
## --------------------------------------------------------------------------------
deploykf_core:
## --------------------------------------
## deploykf-auth
## --------------------------------------
deploykf_auth:
## dex configs
##
dex:
{} # <-- REMOVE THIS, IF YOU INCLUDE VALUES UNDER THIS SECTION!
## dex static passwords
## - https://www.deploykf.org/guides/platform/deploykf-authentication/#static-userpassword-combinations
## - there are default static passwords, set this to an empty list to disable them
##
#staticPasswords: []
## dex connectors
## - https://www.deploykf.org/guides/platform/deploykf-authentication/#external-identity-providers
##
#connectors: []
## --------------------------------------
## deploykf-istio-gateway
## --------------------------------------
deploykf_istio_gateway:
{} # <-- REMOVE THIS, IF YOU INCLUDE VALUES UNDER THIS SECTION!
## extra manifests
## - https://www.deploykf.org/guides/platform/deploykf-gateway/#use-a-kubernetes-ingress
##
#extraManifests:
# - |
# apiVersion: extensions/v1beta1
# kind: Ingress
# metadata:
# name: deploykf-gateway
# spec:
# << YOUR INGRESS CONFIGURATION >>
## istio gateway configs
## - https://www.deploykf.org/guides/platform/deploykf-gateway/#configure-dns-records
##
#gateway:
# hostname: deploykf.example.com
# ports:
# http: 80
# https: 443
## istio gateway service configs
## - https://www.deploykf.org/guides/platform/deploykf-gateway/#use-a-loadbalancer-service
##
#gatewayService:
# name: deploykf-gateway
# type: LoadBalancer
# annotations:
# << YOUR SERVICE ANNOTATIONS >>
## --------------------------------------
## deploykf-profiles-generator
## --------------------------------------
deploykf_profiles_generator:
## profile defaults
profileDefaults:
## the default access for members of profiles, when not explicitly specified
##
#memberAccess:
# role: view
# notebooksAccess: false
## the default list of plugins for profiles, when not explicitly specified
## - you may override these defaults for a specific profile definition
##
#plugins: []
## the default tool configs for profiles
##
tools:
## the default Kubeflow Pipelines configs for profiles
##
kubeflowPipelines:
{} # <-- REMOVE THIS, IF YOU INCLUDE VALUES UNDER THIS SECTION!
## the default Kubeflow Pipelines object store auth configs for profiles
## - https://www.deploykf.org/guides/external/object-store/#connect-an-external-object-store
## - the matching secret is CLONED into the profile namespace for use by Kubeflow Pipelines
## - you will need to manually create the secrets you reference here
## - you can have all profiles share the same secret, by removing '{profile_name}' from the name
## - you may override these defaults for a specific profile definition
##
#objectStoreAuth:
# existingSecret: "kubeflow-pipelines--profile-object-store-auth--{profile_name}"
# existingSecretNamespace: "my-namespace-with-the-secrets"
# existingSecretAccessKeyKey: "access_key"
# existingSecretSecretKeyKey: "secret_key"
## user entities
## - https://www.deploykf.org/guides/platform/deploykf-profiles/#user-entities
##
#users:
# - id: user-1
# email: "[email protected]"
# - id: user-2
# email: "[email protected]"
## group entities
## - https://www.deploykf.org/guides/platform/deploykf-profiles/#group-entities
##
#groups:
# - id: team-1
# users:
# - user-1
# - user-2
## profile definitions
## - https://www.deploykf.org/guides/platform/deploykf-profiles/#profile-definitions
##
#profiles:
# - name: team-1
# members:
# - group: team-1
# access:
# role: edit
# notebooksAccess: true
#
# - name: team-1-prod
# members:
# - group: team-1
# access:
# role: view
# notebooksAccess: false
## --------------------------------------------------------------------------------
## deploykf-opt
## --------------------------------------------------------------------------------
deploykf_opt:
## --------------------------------------
## deploykf-minio
## --------------------------------------
deploykf_minio:
{} # <-- REMOVE THIS, IF YOU INCLUDE VALUES UNDER THIS SECTION!
## if an embedded MinIO instance will be deployed
## - https://www.deploykf.org/guides/tools/external-object-store/
##
#enabled: false
## --------------------------------------
## deploykf-mysql
## --------------------------------------
deploykf_mysql:
{} # <-- REMOVE THIS, IF YOU INCLUDE VALUES UNDER THIS SECTION!
## if an embedded MySQL instance will be deployed
## - https://www.deploykf.org/guides/tools/external-mysql/
##
#enabled: false
## --------------------------------------------------------------------------------
## kubeflow-tools
## --------------------------------------------------------------------------------
kubeflow_tools:
## --------------------------------------
## katib
## --------------------------------------
katib:
{} # <-- REMOVE THIS, IF YOU INCLUDE VALUES UNDER THIS SECTION!
## mysql connection configs
## - https://www.deploykf.org/guides/external/mysql/#3-connect-katib
## - we recommend storing credentials in a Secret, rather than in plaintext
##
#mysql:
# useExternal: true
# host: "mysql.example.com"
# port: 3306
# auth:
# #username: kubeflow
# #password: password
# existingSecret: "katib--mysql-auth" # <-- YOUR EXISTING SECRET, IN 'kubeflow' NAMESPACE
# existingSecretUsernameKey: "username"
# existingSecretPasswordKey: "password"
## mysql database name
## - you must create this database in your MySQL instance
##
#mysqlDatabase: katib
## --------------------------------------
## notebooks
## --------------------------------------
notebooks:
## notebook spawner configs
## - https://www.deploykf.org/guides/tools/kubeflow-notebooks/
##
spawnerFormDefaults:
{} # <-- REMOVE THIS, IF YOU INCLUDE VALUES UNDER THIS SECTION!
## Jupyter-like Container Images
## - https://www.deploykf.org/guides/tools/kubeflow-notebooks/#container-images
##
#image:
# ## the default container image
# value: kubeflownotebookswg/jupyter-scipy:v1.7.0
#
# ## the list of available container images in the dropdown
# options:
# - kubeflownotebookswg/jupyter-scipy:v1.7.0
# - kubeflownotebookswg/jupyter-pytorch-full:v1.7.0
# - kubeflownotebookswg/jupyter-pytorch-cuda-full:v1.7.0
# - kubeflownotebookswg/jupyter-tensorflow-full:v1.7.0
# - kubeflownotebookswg/jupyter-tensorflow-cuda-full:v1.7.0
## VSCode-like Container Images (Group 1)
## - https://www.deploykf.org/guides/tools/kubeflow-notebooks/#container-images
##
#imageGroupOne:
# ## the default container image
# value: kubeflownotebookswg/codeserver-python:v1.7.0
#
# ## the list of available container images in the dropdown
# options:
# - kubeflownotebookswg/codeserver-python:v1.7.0
## RStudio-like Container Images (Group 2)
## - https://www.deploykf.org/guides/tools/kubeflow-notebooks/#container-images
##
#imageGroupTwo:
# ## the default container image
# value: kubeflownotebookswg/rstudio-tidyverse:v1.7.0
#
# ## the list of available container images in the dropdown
# options:
# - kubeflownotebookswg/rstudio-tidyverse:v1.7.0
## --------------------------------------
## pipelines
## --------------------------------------
pipelines:
## storage bucket configs
##
#bucket:
# name: my-bucket-name
# region: ""
## object store configs
## - https://www.deploykf.org/guides/external/object-store/#connect-an-external-object-store
##
objectStore:
{} # <-- REMOVE THIS, IF YOU INCLUDE VALUES UNDER THIS SECTION!
## object store connection configs
##
#useExternal: true
#host: s3.amazonaws.com
#port: ""
#useSSL: true
## object store auth configs
## - we recommend storing credentials in a Secret, rather than in plaintext
## - this auth is used by the backend, in-profile auth is configured by 'deploykf-profiles-generator'
##
#auth:
# fromEnv: false
# #accessKey: my-access-key
# #secretKey: my-secret-key
# existingSecret: "kubeflow-pipelines--object-store-auth" # <-- YOUR EXISTING SECRET, IN 'kubeflow' NAMESPACE
# existingSecretAccessKeyKey: "AWS_ACCESS_KEY_ID"
# existingSecretSecretKeyKey: "AWS_SECRET_ACCESS_KEY"
## mysql connection configs
## - https://www.deploykf.org/guides/external/mysql/#4-connect-kubeflow-pipelines
## - we recommend storing credentials in a Secret, rather than in plaintext
##
#mysql:
# useExternal: true
# host: "mysql.example.com"
# port: 3306
# auth:
# #username: kubeflow
# #password: password
# existingSecret: "kubeflow-pipelines--mysql-auth" # <-- YOUR EXISTING SECRET, IN 'kubeflow' NAMESPACE
# existingSecretUsernameKey: "username"
# existingSecretPasswordKey: "password"
## mysql database names
## - you must create these databases in your MySQL instance
##
#mysqlDatabases:
# cacheDatabase: kfp_cache
# metadataDatabase: kfp_metadata
# pipelinesDatabase: kfp_pipelines
## configs specific to Kubeflow Pipelines v2
##
kfpV2:
{} # <-- REMOVE THIS, IF YOU INCLUDE VALUES UNDER THIS SECTION!
## profile resource generation configs
##
profileResourceGeneration:
{} # <-- REMOVE THIS, IF YOU INCLUDE VALUES UNDER THIS SECTION!
## if a PodDefault named "kubeflow-pipelines-api-token" should be generated in each profile namespace
## - https://www.deploykf.org/user-guides/access-kubeflow-pipelines-api/#automatically-mount-a-token-volume-with-poddefaults
##
#kfpApiTokenPodDefault: true