diff options
author | Areli, Fuss (af732p) <af732p@att.com> | 2018-05-23 13:14:02 +0300 |
---|---|---|
committer | Areli, Fuss (af732p) <af732p@att.com> | 2018-05-23 13:14:02 +0300 |
commit | 50d91d5fd0582722b0c58188cee26b3af45bc19e (patch) | |
tree | 4305aa811d6f2cc488c3d6f47f7cb8b1f06b18ca | |
parent | e07a88ad1e1a3719154d8eb2490e8731f2ba21a0 (diff) |
Fixes for OOM and Helm
Fixes for OOM and Helm
Change-Id: If7968f2077ded563ab84a1dee17ea671d818b933
Issue-ID: SDC-1361
Signed-off-by: Areli, Fuss (af732p) <af732p@att.com>
-rw-r--r-- | docker/startup.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docker/startup.sh b/docker/startup.sh index 806a9a7..46925ae 100644 --- a/docker/startup.sh +++ b/docker/startup.sh @@ -1,5 +1,6 @@ #!/bin/sh -set -x +#set -x + # Run chef-solo for configuration cd /var/opt/dcae-fe/chef-solo chef-solo -c solo.rb -E ${ENVNAME} --log_level "debug" --logfile "/tmp/Chef-Solo.log" @@ -14,5 +15,5 @@ fi cd /var/lib/jetty /docker-entrypoint.sh & -#while true; do sleep 2; done -exec "$@"; +while true; do sleep 2; done + |