diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2021-09-21 06:17:38 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-09-21 06:17:38 +0000 |
commit | fb53e04383b0cf9ec9c8728d9cbeb00010d8d623 (patch) | |
tree | a0eadc08932c1793a5f52c7e0cdb89659cc166f3 /kubernetes/robot/scripts/etescript/security-etescript.sh | |
parent | 3097ca89ffaafda3147cd3328d8ede99d12e25c9 (diff) | |
parent | 7bf306eeb0f6be832558c6edb48b78f5909b2831 (diff) |
Merge "[COMMON] Replace tabs by 4 ws in shell scripts"
Diffstat (limited to 'kubernetes/robot/scripts/etescript/security-etescript.sh')
-rwxr-xr-x | kubernetes/robot/scripts/etescript/security-etescript.sh | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kubernetes/robot/scripts/etescript/security-etescript.sh b/kubernetes/robot/scripts/etescript/security-etescript.sh index 1cd911ca60..bf51329431 100755 --- a/kubernetes/robot/scripts/etescript/security-etescript.sh +++ b/kubernetes/robot/scripts/etescript/security-etescript.sh @@ -25,29 +25,29 @@ TMPTPL='onap_security' CSV2JSON='import csv; import json; import sys; print(json.dumps({i[0]: i[1] for i in csv.reader(sys.stdin)}))' FILTER="$(tr -d [:space:] <<TEMPLATE {{range .items}} - {{range.spec.ports}} - {{if .nodePort}} - {{.nodePort}}{{','}}{{.name}}{{'\n'}} - {{end}} - {{end}} + {{range.spec.ports}} + {{if .nodePort}} + {{.nodePort}}{{','}}{{.name}}{{'\n'}} + {{end}} + {{end}} {{end}} TEMPLATE)" setup () { - export NODEPORTS_FILE="$(mktemp -p ${TMPDIR} ${TMPTPL}XXX)" + export NODEPORTS_FILE="$(mktemp -p ${TMPDIR} ${TMPTPL}XXX)" } create_actual_nodeport_json () { - kubectl get svc -n $NAMESPACE -o go-template="$FILTER" | python3 -c "$CSV2JSON" > "$NODEPORTS_FILE" + kubectl get svc -n $NAMESPACE -o go-template="$FILTER" | python3 -c "$CSV2JSON" > "$NODEPORTS_FILE" } copy_actual_nodeport_json_to_robot () { - kubectl cp "$1" "$2/$3:$4" + kubectl cp "$1" "$2/$3:$4" } cleanup () { - rm "$NODEPORTS_FILE" + rm "$NODEPORTS_FILE" } |