summaryrefslogtreecommitdiffstats
path: root/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_5_setup_elasticsearch.rb
blob: 28f611267c815db8e97a8c483ca2c0d9fd9eb4ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
clusterName = node['elasticsearch'][:cluster_name]+node.chef_environment

template "elasticsearch.yml-config" do
  path "#{ENV['JETTY_BASE']}/config/elasticsearch.yml"
  source "BE-elasticsearch.yml.erb"
  owner "jetty"
  group "jetty"
  mode "0755"
  variables ({
    :cluster_name => "#{clusterName}",
    :es_host_ip => node['Nodes']['ES']
  })
end