Access es_template_config with @

To prevent this on every puppet run:
(warning): Variable access via 'es_template_config' is deprecated. Use
'@es_template_config' instead.
template[/etc/puppet/modules/elasticsearch/templates/elasticsearch.yml.erb]:33

Change-Id: Ie6c685d0748ce26c2bd2d227ce3b4e0578a95018
This commit is contained in:
Alex Monk 2016-08-07 00:13:30 +00:00
parent 4f6c91e3f0
commit d4fcbbff1c
1 changed files with 8 additions and 8 deletions

View File

@ -30,8 +30,8 @@
# multiple clusters on the same network, make sure you're using unique names.
#
# cluster.name: elasticsearch
<% if es_template_config.has_key?('cluster.name') then -%>
cluster.name: <%= es_template_config['cluster.name'] %>
<% if @es_template_config.has_key?('cluster.name') then -%>
cluster.name: <%= @es_template_config['cluster.name'] %>
<% end -%>
@ -184,8 +184,8 @@ index.routing.allocation.total_shards_per_node: "<%= @es_template_config['index.
# space on creation. For example:
#
# path.data: /path/to/data1,/path/to/data2
<% if es_template_config.has_key?('path.data') then -%>
path.data: "<%= es_template_config['path.data'] %>"
<% if @es_template_config.has_key?('path.data') then -%>
path.data: "<%= @es_template_config['path.data'] %>"
<% end -%>
# Path to temporary files:
@ -273,12 +273,12 @@ network.publish_host: <%= @es_template_config['network.publish_host'] %>
#
# http.enabled: false
<% if es_template_config.has_key?('http.cors.enabled') then -%>
http.cors.enabled: <%= es_template_config['http.cors.enabled'] %>
<% if @es_template_config.has_key?('http.cors.enabled') then -%>
http.cors.enabled: <%= @es_template_config['http.cors.enabled'] %>
<% end -%>
<% if es_template_config.has_key?('http.cors.allow-origin') then -%>
http.cors.allow-origin: <%= es_template_config['http.cors.allow-origin'] %>
<% if @es_template_config.has_key?('http.cors.allow-origin') then -%>
http.cors.allow-origin: <%= @es_template_config['http.cors.allow-origin'] %>
<% end -%>
################################### Gateway ###################################