[SDC-154] - sdc-simulator docker task 07/7807/1
authorTal Gitelman <tg851x@intl.att.com>
Thu, 17 Aug 2017 09:11:12 +0000 (12:11 +0300)
committerTal Gitelman <tg851x@intl.att.com>
Thu, 17 Aug 2017 09:11:12 +0000 (12:11 +0300)
Change-Id: I2bce75940f27e0b1c31886cb78a44644df45745c
Signed-off-by: Tal Gitelman <tg851x@intl.att.com>
utils/webseal-simulator/sdc-simulator/Dockerfile.template
utils/webseal-simulator/sdc-simulator/chef-repo/cookbooks/sdc-simulator/recipes/SDC_Simulator_2_setup_configuration.rb
utils/webseal-simulator/sdc-simulator/startup.sh

index 66ce146..673b56f 100644 (file)
@@ -15,8 +15,7 @@ RUN curl -L https://www.opscode.com/chef/install.sh | bash
 
 RUN cp /usr/local/jetty/resources/log4j.properties /var/lib/jetty/resources/log4j.properties
 
-ADD onboarding-fe-__SDC-RELEASE__.war  /var/lib/jetty/webapps/
-ADD catalog-fe-__SDC-RELEASE__.war     /var/lib/jetty/webapps/
+ADD sdc-simulator-__SDC-RELEASE__.war  /var/lib/jetty/webapps/
 RUN chown -R jetty:jetty               /var/lib/jetty/webapps
 
 COPY startup.sh /root/
index 9a284de..05c787f 100644 (file)
@@ -1,5 +1,7 @@
+jetty_base="/var/lib/jetty"
+
 cookbook_file "webseal.conf" do
-   path "/#{jetty_base}/config/sdc-simulator/"
+   path "#{jetty_base}/config/sdc-simulator/webseal.conf"
    source "webseal.conf"
    owner "jetty"
    group "jetty"
@@ -8,7 +10,7 @@ end
 
 
 cookbook_file "logback.xml" do
-   path "/#{jetty_base}/config/sdc-simulator/"
+   path "#{jetty_base}/config/sdc-simulator/logback.xml"
    source "logback.xml"
    owner "jetty"
    group "jetty"
index 1b09313..46a3173 100644 (file)
@@ -1,11 +1,12 @@
 #!/bin/sh
 
-export CHEFNAME=${ENVNAME}
+#export CHEFNAME=${ENVNAME}
 cd /root/chef-solo
 echo "normal['HOST_IP'] = \"${HOST_IP}\"" > /root/chef-solo/cookbooks/sdc-simulator/attributes/default.rb
-chef-solo -c solo.rb -E ${CHEFNAME}
+chef-solo -c solo.rb
+#chef-solo -c solo.rb -E ${CHEFNAME}
 
-sed -i '/^set -e/aJAVA_OPTIONS=\"-Xdebug -Xmx128m -Xms128m -Xss1m -Dconfig.home=${JETTY_BASE}/config -Dlog.home=${JETTY_BASE}/logs -Dlogback.configurationFile=${JETTY_BASE}/config/sdc-simulator/logback.xml \"' /docker-entrypoint.sh 
+sed -i '/^set -e/aJAVA_OPTIONS=\"-Xdebug -Xmx128m -Xms128m -Xss1m -Dconfig.home=${JETTY_BASE}/config -Dlog.home=${JETTY_BASE}/logs -Dlogback.configurationFile=${JETTY_BASE}/config/sdc-simulator/logback.xml -Djetty.logging.dir=${JETTY_BASE}/logs\"' /docker-entrypoint.sh 
 sed -i '/^set -e/aTMPDIR=${JETTY_BASE}\/temp' /docker-entrypoint.sh
 
 cd /var/lib/jetty