diff options
author | 2018-05-24 15:12:23 +0000 | |
---|---|---|
committer | 2018-05-24 15:12:23 +0000 | |
commit | 152fea2d2369328127cbdd0bc090ddfa621f4fb4 (patch) | |
tree | 81ae6cad38549280afcda6deb98f57b3845e13dd | |
parent | 1fe5ba0afdc48eb56500eb858b8182870207d67f (diff) | |
parent | 50d91d5fd0582722b0c58188cee26b3af45bc19e (diff) |
Merge "Fixes for OOM and Helm"
-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 + |