aboutsummaryrefslogtreecommitdiffstats
path: root/kud/deployment_infra/helm/kubevirt/templates/kubevirt.yaml
blob: c8f9d60a6b217c5328fbd5aff1968fb6076adcc2 (plain)
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
apiVersion: kubevirt.io/v1
kind: KubeVirt
metadata:
  name:  {{ include "kubevirt.fullname" . }}
  labels:
    {{- include "kubevirt.labels" . | nindent 4 }}
spec:
  {{- with .Values.certificateRotateStrategy }}
  certificateRotateStrategy:
    {{- toYaml . | nindent 4 }}
  {{- end }}
  {{- with .Values.configuration }}
  configuration:
    {{- toYaml . | nindent 4 }}
  {{- end }}
  {{- with .Values.customizeComponents }}
  customizeComponents:
    {{- toYaml . | nindent 4 }}
  {{- end }}
  {{- with .Values.imagePullPolicy }}
  imagePullPolicy: {{ . }}
  {{- end }}
  {{- with .Values.imageRegistry }}
  imageRegistry: {{ . }}
  {{- end }}
  {{- with .Values.imageTag }}
  imageTag: {{ . }}
  {{- end }}
  {{- with .Values.infra }}
  infra:
    {{- toYaml . | nindent 4 }}
  {{- end }}
  {{- with .Values.monitorAccount }}
  monitorAccount: {{ . }}
  {{- end }}
  {{- with .Values.monitorNamespace }}
  monitorNamespace: {{ . }}
  {{- end }}
  {{- with .Values.productName }}
  productName: {{ . }}
  {{- end }}
  {{- with .Values.productVersion }}
  productVersion: {{ . }}
  {{- end }}
  {{- with .Values.uninstallStrategy }}
  uninstallStrategy: {{ . }}
  {{- end }}
  {{- with .Values.workloadUpdateStrategy }}
  workloadUpdateStrategy:
    {{- toYaml . | nindent 4 }}
  {{- end }}
  {{- with .Values.workloads }}
  workloads:
    {{- toYaml . | nindent 4 }}
  {{- end }}