diff options
| author | Jeff Cantrill <jcantril@redhat.com> | 2017-03-24 14:42:06 -0400 | 
|---|---|---|
| committer | Jeff Cantrill <jcantril@redhat.com> | 2017-03-28 08:50:07 -0400 | 
| commit | 9fcef0ea18469f3e12c6f9ca6f3f8c89a420d568 (patch) | |
| tree | 9411e6e611c818637f4d35342fe4619370f025d5 /roles/openshift_logging/templates | |
| parent | 0d38f04595fc2098cf8304faf20e15e62f43955c (diff) | |
| download | openshift-9fcef0ea18469f3e12c6f9ca6f3f8c89a420d568.tar.gz openshift-9fcef0ea18469f3e12c6f9ca6f3f8c89a420d568.tar.bz2 openshift-9fcef0ea18469f3e12c6f9ca6f3f8c89a420d568.tar.xz openshift-9fcef0ea18469f3e12c6f9ca6f3f8c89a420d568.zip | |
fix es config merge so template does not need quoting. gen then merge
Diffstat (limited to 'roles/openshift_logging/templates')
| -rw-r--r-- | roles/openshift_logging/templates/elasticsearch.yml.j2 | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/roles/openshift_logging/templates/elasticsearch.yml.j2 b/roles/openshift_logging/templates/elasticsearch.yml.j2 index 07e8c0c98..93c4d854c 100644 --- a/roles/openshift_logging/templates/elasticsearch.yml.j2 +++ b/roles/openshift_logging/templates/elasticsearch.yml.j2 @@ -49,7 +49,7 @@ openshift.searchguard:    keystore.path: /etc/elasticsearch/secret/admin.jks    truststore.path: /etc/elasticsearch/secret/searchguard.truststore -openshift.operations.allow_cluster_reader: "{{allow_cluster_reader | default (false)}}" +openshift.operations.allow_cluster_reader: {{allow_cluster_reader | default (false)}}  path:    data: /elasticsearch/persistent/${CLUSTER_NAME}/data | 
