summaryrefslogtreecommitdiffstats
path: root/kubernetes/config/docker/init/src/config/sdc/sdc-fe/FE_2_setup_configuration.rb
blob: 89f94fbf1eaaf45c972914275d2132ad8f148fb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
template "catalog-fe-config" do
   path "/var/lib/jetty/config/catalog-fe/configuration.yaml"
   source "FE-configuration.yaml.erb"
   owner "jetty"
   group "jetty"
   mode "0755"
   variables({
      :fe_host_ip   => node['HOST_IP'],
      :be_host_ip   => "sdc-be.onap-sdc",
      :catalog_port => node['BE'][:http_port],
      :ssl_port     => node['BE'][:https_port]
   })
end