summaryrefslogtreecommitdiffstats
path: root/kud/deployment_infra/helm/kubevirt-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/kubevirt-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/kubevirt-operator/values.yaml')
-rw-r--r--kud/deployment_infra/helm/kubevirt-operator/values.yaml49
1 files changed, 49 insertions, 0 deletions
diff --git a/kud/deployment_infra/helm/kubevirt-operator/values.yaml b/kud/deployment_infra/helm/kubevirt-operator/values.yaml
new file mode 100644
index 00000000..3095ffd2
--- /dev/null
+++ b/kud/deployment_infra/helm/kubevirt-operator/values.yaml
@@ -0,0 +1,49 @@
+image:
+ repository: quay.io/kubevirt/virt-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: []
+
+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: kubevirt-operator
+
+priorityClass:
+ name: kubevirt-cluster-critical
+
+nameOverride: ""
+fullnameOverride: ""
+
+resources:
+ requests:
+ cpu: 10m
+ memory: 150Mi
+
+securityContext:
+ runAsNonRoot: true
+
+nodeSelector: {}
+
+affinity:
+ podAntiAffinity:
+ preferredDuringSchedulingIgnoredDuringExecution:
+ - podAffinityTerm:
+ labelSelector:
+ matchExpressions:
+ - key: kubevirt.io
+ operator: In
+ values:
+ - virt-operator
+ topologyKey: kubernetes.io/hostname
+ weight: 1
+
+tolerations:
+- key: CriticalAddonsOnly
+ operator: Exists