diff options
author | Jeff Cantrill <jcantril@redhat.com> | 2017-03-13 19:38:56 -0400 |
---|---|---|
committer | Jeff Cantrill <jcantril@redhat.com> | 2017-03-14 08:53:20 -0400 |
commit | 13c4362cf18235614c707aa40ae6820a6e28d42b (patch) | |
tree | e98923390e66fb81332e58b395793ac33df73c45 /roles/openshift_logging/defaults | |
parent | 0ee14573521daf459e9fa8609769c954425979d7 (diff) | |
download | openshift-13c4362cf18235614c707aa40ae6820a6e28d42b.tar.gz openshift-13c4362cf18235614c707aa40ae6820a6e28d42b.tar.bz2 openshift-13c4362cf18235614c707aa40ae6820a6e28d42b.tar.xz openshift-13c4362cf18235614c707aa40ae6820a6e28d42b.zip |
Allow user to specify additions to ES config
Diffstat (limited to 'roles/openshift_logging/defaults')
-rw-r--r-- | roles/openshift_logging/defaults/main.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/roles/openshift_logging/defaults/main.yml b/roles/openshift_logging/defaults/main.yml index ad9c1ce42..11cedfa1c 100644 --- a/roles/openshift_logging/defaults/main.yml +++ b/roles/openshift_logging/defaults/main.yml @@ -78,6 +78,8 @@ openshift_logging_es_pvc_prefix: "{{ openshift_hosted_logging_elasticsearch_pvc_ openshift_logging_es_recover_after_time: 5m openshift_logging_es_storage_group: "{{ openshift_hosted_logging_elasticsearch_storage_group | default('65534') }}" openshift_logging_es_nodeselector: "{{ openshift_hosted_logging_elasticsearch_nodeselector | default('') | map_from_pairs }}" +# openshift_logging_es_config is a hash to be merged into the defaults for the elasticsearch.yaml +openshift_logging_es_config: {} # allow cluster-admin or cluster-reader to view operations index openshift_logging_es_ops_allow_cluster_reader: False |