We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc04627 commit ea8a035Copy full SHA for ea8a035
roles/odf_setup/tasks/validation.yml
@@ -1,7 +1,8 @@
1
---
2
- name: "Check if the OCS CRD is present"
3
block:
4
- - kubernetes.core.k8s_info:
+ - name: "Check if the OCS CRD is present"
5
+ kubernetes.core.k8s_info:
6
kind: CustomResourceDefinition
7
name: storageclusters.ocs.openshift.io
8
register: req_crd
@@ -14,7 +15,7 @@
14
15
ansible.builtin.fail:
16
msg: "OCS CRDs are not present, please install the Openshift Cluster Storage Operator"
17
when: req_crd.resources | list | count == 0
-
18
+
19
- name: "Check if the main LSO CRD is present"
20
kubernetes.core.k8s_info:
21
0 commit comments