Add docker file for all simulators
[policy/models.git] / models-sim / policy-models-simulators / src / main / package / docker / simulators.sh
1 #!/bin/bash
2 #
3 # ============LICENSE_START=======================================================
4 # ONAP
5 # ================================================================================
6 # Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
7 # ================================================================================
8 # Licensed under the Apache License, Version 2.0 (the "License");
9 # you may not use this file except in compliance with the License.
10 # You may obtain a copy of the License at
11 #
12 #      http://www.apache.org/licenses/LICENSE-2.0
13 #
14 # Unless required by applicable law or agreed to in writing, software
15 # distributed under the License is distributed on an "AS IS" BASIS,
16 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 # See the License for the specific language governing permissions and
18 # limitations under the License.
19 #
20 # SPDX-License-Identifier: Apache-2.0
21 # ============LICENSE_END=========================================================
22 #
23
24 if [ -z "$SIMULATOR_HOME" ]
25 then
26     SIMULATOR_HOME=${POLICY_HOME}/simulators
27 fi
28
29 JAVA_HOME=/usr/lib/jvm/java-11-openjdk
30 KEYSTORE="${SIMULATOR_HOME}/etc/ssl/policy-keystore"
31 KEYSTORE_PASSWD="Pol1cy_0nap"
32 TRUSTSTORE="${SIMULATOR_HOME}/etc/ssl/policy-truststore"
33 TRUSTSTORE_PASSWD="Pol1cy_0nap"
34
35 ${JAVA_HOME}/bin/java \
36     -cp "${SIMULATOR_HOME}/etc:${SIMULATOR_HOME}/lib/*" \
37     -Dlogback.configurationFile=${SIMULATOR_HOME}/etc/logback.xml \
38     -Djavax.net.ssl.keyStore="${KEYSTORE}" \
39     -Djavax.net.ssl.keyStorePassword="${KEYSTORE_PASSWD}" \
40     -Djavax.net.ssl.trustStore="${TRUSTSTORE}" \
41     -Djavax.net.ssl.trustStorePassword="${TRUSTSTORE_PASSWD}" \
42     org.onap.policy.models.simulators.Main \
43         ${SIMULATOR_HOME}/etc/parameters/simParameters.json