aboutsummaryrefslogtreecommitdiffstats
path: root/kud/deployment_infra/helm/kubevirt-operator/values.yaml
diff options
context:
space:
mode:
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