diff options
author | Tal Gitelman <tg851x@intl.att.com> | 2018-01-24 17:59:53 +0200 |
---|---|---|
committer | Michael Lando <ml636r@att.com> | 2018-01-25 20:21:27 +0000 |
commit | 38211c83410f610aa889a687fdecebb3fed53f02 (patch) | |
tree | 17c46fdd2a49c97ae87641b7d940f4e998edb08b /sdc-os-chef/sdc-elasticsearch/startup.sh | |
parent | 62ae83d66ecdc04ee722f5219aba687873d76760 (diff) |
ES OOM alignment
Change-Id: I986fc13f8e32a103e3868f4da9ffb41631c70201
Issue-ID: SDC-912
Signed-off-by: Tal Gitelman <tg851x@intl.att.com>
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 |