forked from rstudio/helm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
29 lines (24 loc) · 1.31 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
# -- The targetNamespaces that the launcher will be able to launch sessions into
targetNamespaces: []
# -- Whether the helm release namespace should be a possible launcher target
includeReleaseNamespace: true
# -- remove explicit namespace references (problematic if targetNamespaces is defined)
removeNamespaceReferences: false
# -- The override for "ChartName" in the "FullName" which defaults to "ReleaseName-ChartName" or "ReleaseName" (if "ReleaseName" contains "ChartName")
nameOverride: ""
# -- The override for the "FullName" which defaults to "ReleaseName-ChartName" or "ReleaseName" (if "ReleaseName" contains "ChartName")
fullnameOverride: ""
# -- Whether to create the ClusterRole that grants access to the Kubernetes nodes API. This is used by the Launcher
# to get all of the IP addresses associated with the node that is running a particular job. In most cases, this can
# be disabled as the node's internal address is sufficient to allow proper functionality.
clusterRoleCreate: false
serviceAccount:
# -- Specifies whether a service account should be created
create: true
# -- Annotations to add to the service account
annotations: {}
# -- The name of the service account to use.
# If not set, a name is generated using the fullname template
name: ""
# -- Labels to add to the service account
labels: {}