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
|
image:
repository: quay.io/kubevirt/cdi-operator
# This should be set to 'IfNotPresent' for released version
pullPolicy: IfNotPresent
# tag, if defined will use the given image tag, else Chart.AppVersion will be used
# tag
imagePullSecrets: []
controllerImage:
repository : quay.io/kubevirt/cdi-controller
# tag, if defined will use the given image tag, else Chart.AppVersion will be used
importerImage:
repository: quay.io/kubevirt/cdi-importer
# tag, if defined will use the given image tag, else Chart.AppVersion will be used
clonerImage:
repository: quay.io/kubevirt/cdi-cloner
# tag, if defined will use the given image tag, else Chart.AppVersion will be used
apiserverImage:
repository: quay.io/kubevirt/cdi-apiserver
# tag, if defined will use the given image tag, else Chart.AppVersion will be used
uploadServerImage:
repository: quay.io/kubevirt/cdi-uploadserver
# tag, if defined will use the given image tag, else Chart.AppVersion will be used
uploadProxyImage:
repository: quay.io/kubevirt/cdi-uploadproxy
# tag, if defined will use the given image tag, else Chart.AppVersion will be used
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 and create is true, a name is generated using the fullname template
name: cdi-operator
nameOverride: ""
fullnameOverride: ""
resources: {}
securityContext:
runAsNonRoot: true
nodeSelector:
kubernetes.io/os: linux
affinity: {}
tolerations:
- key: CriticalAddonsOnly
operator: Exists
|