diff options
Diffstat (limited to 'sdc-os-chef/sdc-elasticsearch/startup.sh')
-rw-r--r-- | sdc-os-chef/sdc-elasticsearch/startup.sh | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/sdc-os-chef/sdc-elasticsearch/startup.sh b/sdc-os-chef/sdc-elasticsearch/startup.sh index 0a602ade56..6c9b0c0629 100644 --- a/sdc-os-chef/sdc-elasticsearch/startup.sh +++ b/sdc-os-chef/sdc-elasticsearch/startup.sh @@ -1,20 +1,9 @@ #!/bin/sh -export CHEFNAME=${ENVNAME} -cd /root/chef-solo -echo "normal['HOST_IP'] = \"${HOST_IP}\"" > /root/chef-solo/cookbooks/sdc-elasticsearch/attributes/default.rb - -sed -i '/^exec/iES_JAVA_OPTS=\"-Xms1024M -Xmx1024M\"' /docker-entrypoint.sh - -chef-solo -c solo.rb -E ${CHEFNAME} +cd /root/chef-solo/ +chef-solo -c solo.rb -E ${ENVNAME} /docker-entrypoint.sh elasticsearch & -cd /root/chef-solo -chef-solo -c solo.rb -o recipe[sdc-elasticsearch::ES_3_create_audit_template] -chef-solo -c solo.rb -o recipe[sdc-elasticsearch::ES_4_create_resources_template] -chef-solo -c solo.rb -o recipe[sdc-elasticsearch::ES_5_create_monitoring_template] -chef-solo -c solo.rb -o recipe[sdc-elasticsearch::ES_6_create_kibana_dashboard_virtualization] - while true; do sleep 2; done |