aboutsummaryrefslogtreecommitdiffstats
path: root/kud/deployment_infra/helm/cdi-operator/values.yaml
diff options
context:
space:
mode:
authorTodd Malsbary <todd.malsbary@intel.com>2021-06-04 14:24:56 -0700
committerTodd Malsbary <todd.malsbary@intel.com>2021-06-15 14:42:16 -0700
commita99aa8015594cbfd9d46bbc8313f72321a95cc1f (patch)
tree85cba2e3b9a947d18b159cd19114a5357ed70d8e /kud/deployment_infra/helm/cdi-operator/values.yaml
parentdc925231a978d1ae4dce969cb4c386d4a1b0bb87 (diff)
Add kubevirt and cdi addon helm charts
Issue-ID: MULTICLOUD-1324 Signed-off-by: Todd Malsbary <todd.malsbary@intel.com> Change-Id: I6ba134140f0aca6717c656ffa35c6576426a8b98
Diffstat (limited to 'kud/deployment_infra/helm/cdi-operator/values.yaml')
-rw-r--r--kud/deployment_infra/helm/cdi-operator/values.yaml57
1 files changed, 57 insertions, 0 deletions
diff --git a/kud/deployment_infra/helm/cdi-operator/values.yaml b/kud/deployment_infra/helm/cdi-operator/values.yaml
new file mode 100644
index 00000000..2e1813d9
--- /dev/null
+++ b/kud/deployment_infra/helm/cdi-operator/values.yaml
@@ -0,0 +1,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