diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-02-10 11:26:26 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-10 11:26:26 -0500 |
commit | 5ee790032dae79a6dd588f53b24932248e00f9ec (patch) | |
tree | bbfc56032e9aea8808f6b7afd3eaaa12f7d1a943 /roles/openshift_logging/defaults | |
parent | 094fd21ceab111900c518dfad874b434c81e62ee (diff) | |
parent | f1e622ae0acb52fbd7ecd1b07b26b1b6884deb65 (diff) | |
download | openshift-5ee790032dae79a6dd588f53b24932248e00f9ec.tar.gz openshift-5ee790032dae79a6dd588f53b24932248e00f9ec.tar.bz2 openshift-5ee790032dae79a6dd588f53b24932248e00f9ec.tar.xz openshift-5ee790032dae79a6dd588f53b24932248e00f9ec.zip |
Merge pull request #3318 from jcantrill/bz_1420425_external_log_certs
bug 1420425. Allow setting of public facing certs for kibana in opens…
Diffstat (limited to 'roles/openshift_logging/defaults')
-rw-r--r-- | roles/openshift_logging/defaults/main.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/roles/openshift_logging/defaults/main.yml b/roles/openshift_logging/defaults/main.yml index 73849f46a..dc1e66d55 100644 --- a/roles/openshift_logging/defaults/main.yml +++ b/roles/openshift_logging/defaults/main.yml @@ -27,6 +27,18 @@ openshift_logging_kibana_proxy_cpu_limit: null openshift_logging_kibana_proxy_memory_limit: null openshift_logging_kibana_replica_count: 1 +#The absolute path on the control node to the cert file to use +#for the public facing kibana certs +openshift_logging_kibana_cert: "" + +#The absolute path on the control node to the key file to use +#for the public facing kibana certs +openshift_logging_kibana_key: "" + +#The absolute path on the control node to the CA file to use +#for the public facing kibana certs +openshift_logging_kibana_ca: "" + openshift_logging_kibana_ops_hostname: "{{ openshift_hosted_logging_ops_hostname | default(kibana-ops.{{openshift.common.dns_domain}}) }}" openshift_logging_kibana_ops_cpu_limit: null openshift_logging_kibana_ops_memory_limit: null |