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