|
@@ -1,5 +1,35 @@
|
|
|
---
|
|
|
# check if pod generated files exist -- if they all do don't run the pod
|
|
|
+- when:
|
|
|
+ - openshift_logging_es_allow_external | default(False)
|
|
|
+ - openshift_logging_es_hostname | default('') | regex_search('^[0-9]|[.][0-9]')
|
|
|
+ block:
|
|
|
+ - name: Report invalid external Elasticsearch hostnames for conclusion
|
|
|
+ run_once: true
|
|
|
+ set_stats:
|
|
|
+ data:
|
|
|
+ installer_phase_logging:
|
|
|
+ message: "Elasticsearch external hostname {{ openshift_logging_es_hostname }} contains invalid characters for certificate subject Alt Name. Not adding to Elasticsearch certificate."
|
|
|
+
|
|
|
+ - name: Report invalid external Elasticsearch hostnames
|
|
|
+ debug:
|
|
|
+ msg: "Elasticsearch external hostname {{ openshift_logging_es_hostname }} contains invalid characters for certificate subject Alt Name. Not adding to Elasticsearch certificate."
|
|
|
+
|
|
|
+- when:
|
|
|
+ - openshift_logging_es_ops_allow_external | default(False)
|
|
|
+ - openshift_logging_es_ops_hostname | default('') | regex_search('^[0-9]|[.][0-9]')
|
|
|
+ block:
|
|
|
+ - name: Report invalid external Elasticsearch ops hostnames for conclusion
|
|
|
+ run_once: true
|
|
|
+ set_stats:
|
|
|
+ data:
|
|
|
+ installer_phase_logging:
|
|
|
+ message: "Elasticsearch external ops hostname {{ openshift_logging_es_ops_hostname }} contains invalid characters for certificate subject Alt Name. Not adding to Elasticsearch certificate."
|
|
|
+
|
|
|
+ - name: Report invalid external Elasticsearch ops hostnames
|
|
|
+ debug:
|
|
|
+ msg: "Elasticsearch external hostname {{ openshift_logging_es_ops_hostname }} contains invalid characters for certificate subject Alt Name. Not adding to Elasticsearch certificate."
|
|
|
+
|
|
|
- name: Checking for elasticsearch.jks
|
|
|
stat: path="{{generated_certs_dir}}/elasticsearch.jks"
|
|
|
register: elasticsearch_jks
|