Files
addons/virt/kubevirt/cr_KubeVirt.tf
2024-09-19 08:37:03 +02:00

21 lines
528 B
HCL

resource "kubectl_manifest" "KubeVirt_kubevirt" {
yaml_body = <<-EOF
apiVersion: kubevirt.io/v1
kind: KubeVirt
metadata:
name: kubevirt
namespace: ${var.namespace}
ownerReferences: ${jsonencode(var.install_owner)}
labels: ${jsonencode(local.common-labels)}
spec:
certificateRotateStrategy: {}
configuration:
developerConfiguration:
featureGates: []
customizeComponents: {}
imagePullPolicy: IfNotPresent
workloadUpdateStrategy: {}
EOF
}