7634899fed6fda323942c57d0ffa003fdb1b8f36
[nonrtric/plt/ranpm.git] / install / scripts / create_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 create_ics_job() {
23     JOB=$(<.job.json)
24     echo $JOB
25     retcode=1
26     echo "Creating job-$1"'-'"$2"
27     while [ $retcode -ne 0 ]; do
28         if [ -z "$3" ]; then
29             __bearer=""
30         else
31             __bearer="Authorization: Bearer $TOKEN"
32         fi
33         STAT=$(curl -s -X PUT -w '%{http_code}' -H accept:application/json -H Content-Type:application/json http://$KHOST:$(kube_get_nodeport informationservice nonrtric http)/data-consumer/v1/info-jobs/job-$1"-"$2 --data-binary @.job.json -H "$__bearer" )
34         retcode=$?
35         echo "curl return code: $retcode"
36         if [ $retcode -eq 0 ]; then
37             status=${STAT:${#STAT}-3}
38             echo "http status code: "$status
39             if [ "$status" == "200" ]; then
40                 echo "Job created ok"
41             elif [ "$status" == "201" ]; then
42                 echo "Job created ok"
43             else
44                 retcode=1
45             fi
46         fi
47         sleep 1
48     done
49 }