From a99aa8015594cbfd9d46bbc8313f72321a95cc1f Mon Sep 17 00:00:00 2001 From: Todd Malsbary Date: Fri, 4 Jun 2021 14:24:56 -0700 Subject: Add kubevirt and cdi addon helm charts Issue-ID: MULTICLOUD-1324 Signed-off-by: Todd Malsbary Change-Id: I6ba134140f0aca6717c656ffa35c6576426a8b98 --- .../helm/kubevirt-operator/values.yaml | 49 ++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 kud/deployment_infra/helm/kubevirt-operator/values.yaml (limited to 'kud/deployment_infra/helm/kubevirt-operator/values.yaml') 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 -- cgit 1.2.3-korg