Near RT RIC Platform new-installer initial release
[ric-plt/ric-dep.git] / new-installer / helm / charts / nearrtric / appmgr / bin / _appmgr-tiller-secret-copier.sh.tpl
1 #!/bin/sh
2 ###########################################################################
3 #   Copyright (c) 2019 AT&T Intellectual Property.
4 #   Copyright (c) 2019 Nokia.
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
19 if [ -x /svcacct-to-kubeconfig.sh ] ; then
20  /svcacct-to-kubeconfig.sh
21 fi
22
23 if [ ! -z "${HELM_TLS_CA_CERT}" ]; then
24   kubectl -n ${SECRET_NAMESPACE} get secret -o yaml ${SECRET_NAME} | \
25    grep 'ca.crt:' | \
26    awk '{print $2}' | \
27    base64 -d > ${HELM_TLS_CA_CERT}
28 fi
29
30 if [ ! -z "${HELM_TLS_CERT}" ]; then
31   kubectl -n ${SECRET_NAMESPACE} get secret -o yaml ${SECRET_NAME} | \
32    grep 'tls.crt:' | \
33    awk '{print $2}' | \
34    base64 -d > ${HELM_TLS_CERT}
35 fi
36
37 if [ ! -z "${HELM_TLS_KEY}" ]; then
38   kubectl -n ${SECRET_NAMESPACE} get secret -o yaml ${SECRET_NAME} | \
39    grep 'tls.key:' | \
40    awk '{print $2}' | \
41    base64 -d > ${HELM_TLS_KEY}
42 fi