Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ ocp4_workload_openshift_virtualization_workload_tolerations: []
# For deployments on top of CNV with Ceph set to false
# When set to false CNV is configured to use PVCs for boot sources
# which elminiates VolumeSnapshots without associated PVCs
ocp4_workload_openshift_virtualization_boot_sources_shapshot: true
ocp4_workload_openshift_virtualization_boot_sources_snapshot: true

# For AWS it is possible to use KubeVirt without a metal node
# For that the subscription for the operator needs to have special config
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
# HyperConverged must have been created with .spec.featureGates.enableCommonBootImageImport: false
# See template for that logic
- name: Set boot sources to use PVCs
when: not ocp4_workload_openshift_virtualization_boot_sources_shapshot | bool
when: not ocp4_workload_openshift_virtualization_boot_sources_snapshot | bool
block:
- name: Get all available storage classes
kubernetes.core.k8s_info:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ spec:
tolerations:
{{ ocp4_workload_openshift_virtualization_workload_tolerations | to_yaml }}
{% endif %}
{% if ocp4_workload_openshift_virtualization_boot_sources_shapshot | default(true) | bool %}
{% if ocp4_workload_openshift_virtualization_boot_sources_snapshot | default(true) | bool %}
enableCommonBootImageImport: true
{% else %}
enableCommonBootImageImport: false
Expand Down
Loading