Fixed secrets used for appc
[demo.git] / tutorials / vFWDT / get_secret.sh
1 #!/bin/bash
2
3 # ============LICENSE_START=======================================================
4 # Copyright (C) 2020 Orange
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 # ============LICENSE_END=========================================================
19
20 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
21
22 `$DIR/yq > /dev/null 2>&1`
23
24 if [ $? -ne 0 ]; then
25         echo "Install yq"
26         wget -qcO $DIR/yq https://github.com/mikefarah/yq/releases/download/2.4.0/yq_linux_amd64 
27         chmod 755 $DIR/yq
28 fi
29
30 echo `kubectl get secret $1 -o jsonpath="{.data.password}" | base64 --decode`