aravind.est | df28b0a | 2023-02-14 09:29:14 +0000 | [diff] [blame] | 1 | #!/usr/bin/env sh |
| 2 | # |
| 3 | # ============LICENSE_START======================================================= |
| 4 | # Copyright (C) 2023 Nordix Foundation. |
| 5 | # ================================================================================ |
| 6 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | # you may not use this file except in compliance with the License. |
| 8 | # You may obtain a copy of the License at |
| 9 | # |
| 10 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | # |
| 12 | # Unless required by applicable law or agreed to in writing, software |
| 13 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | # See the License for the specific language governing permissions and |
| 16 | # limitations under the License. |
| 17 | # |
| 18 | # SPDX-License-Identifier: Apache-2.0 |
| 19 | # ============LICENSE_END========================================================= |
| 20 | # |
| 21 | |
| 22 | KEYSTORE="${KEYSTORE:-$POLICY_HOME/etc/ssl/policy-keystore}" |
| 23 | TRUSTSTORE="${TRUSTSTORE:-$POLICY_HOME/etc/ssl/policy-truststore}" |
| 24 | KEYSTORE_PASSWD="${KEYSTORE_PASSWD:-Pol1cy_0nap}" |
| 25 | TRUSTSTORE_PASSWD="${TRUSTSTORE_PASSWD:-Pol1cy_0nap}" |
| 26 | |
| 27 | if [ "$#" -eq 1 ]; then |
| 28 | CONFIG_FILE=$1 |
| 29 | fi |
| 30 | |
| 31 | if [ -z "$CONFIG_FILE" ]; then |
| 32 | CONFIG_FILE="${POLICY_HOME}/etc/KserveParticipantParameters.yaml" |
| 33 | fi |
| 34 | |
| 35 | echo "Policy clamp Kserve participant config file: $CONFIG_FILE" |
| 36 | |
| 37 | if [ -f "${POLICY_HOME}/etc/mounted/policy-truststore" ]; then |
| 38 | echo "overriding policy-truststore" |
| 39 | cp -f "${POLICY_HOME}"/etc/mounted/policy-truststore "${TRUSTSTORE}" |
| 40 | fi |
| 41 | |
| 42 | if [ -f "${POLICY_HOME}/etc/mounted/policy-keystore" ]; then |
| 43 | echo "overriding policy-keystore" |
| 44 | cp -f "${POLICY_HOME}"/etc/mounted/policy-keystore "${KEYSTORE}" |
| 45 | fi |
| 46 | |
| 47 | if [ -f "${POLICY_HOME}/etc/mounted/logback.xml" ]; then |
| 48 | echo "overriding logback xml file" |
| 49 | cp -f "${POLICY_HOME}"/etc/mounted/logback.xml "${POLICY_HOME}"/etc/ |
| 50 | fi |
| 51 | |
| 52 | $JAVA_HOME/bin/java \ |
| 53 | -Dlogging.config="${POLICY_HOME}/etc/logback.xml" \ |
| 54 | -Dserver.ssl.keyStore="${KEYSTORE}" \ |
| 55 | -Dserver.ssl.keyStorePassword="${KEYSTORE_PASSWD}" \ |
| 56 | -Djavax.net.ssl.trustStore="${TRUSTSTORE}" \ |
| 57 | -Djavax.net.ssl.trustStorePassword="${TRUSTSTORE_PASSWD}" \ |
| 58 | -jar /app/app.jar \ |
| 59 | --spring.config.location="${CONFIG_FILE}" |