Remove unused code
[nonrtric/plt/ranpm.git] / install / scripts / update_ics_job.sh
1 #!/bin/bash
2
3 #  ============LICENSE_START===============================================
4 #  Copyright (C) 2023 Nordix Foundation. All rights reserved.
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 #  ============LICENSE_END=================================================
18 #
19
20 # args: <job-id> <job-index-suffix> [<access-token>]
21 # job file shall exist in file "".job.json"
22 update_ics_job() {
23
24     ICS_PROXY_PORT=$(kubectl get svc -n nonrtric informationservice --output jsonpath='{.spec.ports[?(@.name=="http")].nodePort}')
25     echo "NodePort to ics: "$ICS_PROXY_PORT
26     JOB=$(<.job.json)
27     echo $JOB
28     retcode=1
29     echo "Updating job $1"
30     while [ $retcode -ne 0 ]; do
31         if [ -z "$2" ]; then
32             __bearer=""
33         else
34             __bearer="Authorization: Bearer $TOKEN"
35         fi
36         STAT=$(curl -s -X PUT -w '%{http_code}' -H accept:application/json -H Content-Type:application/json http://$KUBERNETESHOST:$ICS_PROXY_PORT/data-consumer/v1/info-jobs/$1 --data-binary @.job.json -H "$__bearer" )
37         retcode=$?
38         echo "curl return code: $retcode"
39         if [ $retcode -eq 0 ]; then
40             status=${STAT:${#STAT}-3}
41             echo "http status code: "$status
42             if [ "$status" == "200" ]; then
43                 echo "Job created ok"
44             elif [ "$status" == "201" ]; then
45                 echo "Job created ok"
46             else
47                 retcode=1
48             fi
49         fi
50         sleep 1
51     done
52 }