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 6ced719 commit 88f049eCopy full SHA for 88f049e
roles/verify/inventory/tasks/main.yml
@@ -32,3 +32,18 @@
32
not (
33
'ca_server' in groups and krb5_kdc_type == "Red Hat IPA")
34
}}
35
+
36
+- block:
37
+ - set_fact:
38
+ cluster_hosts: >-
39
+ {{ groups.cluster | default([])
40
+ | union(groups.cloudera_manager | default([]))
41
+ }}
42
43
+ - name: Ensure that all hosts requiring TLS certificates have a FreeIPA client
44
+ assert:
45
+ that: >-
46
+ {{ groups.tls | difference(cluster_hosts) | length == 0 }}
47
+ when:
48
+ - krb5_kdc_type == "Red Hat IPA"
49
+ - not (skip_ipa_signing | default(false))
0 commit comments