Minor fix for RANPM
[nonrtric/plt/ranpm.git] / install / install-pm-influx-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 . scripts/kube_get_controlplane_host.sh
21
22 # Generic error printout function
23 # args: <numeric-response-code> <descriptive-string>
24 check_error() {
25     if [ $1 -ne 0 ]; then
26         echo "Failed: $2"
27         echo "Exiting..."
28         exit 1
29     fi
30 }
31
32 export KUBERNETESHOST=$(kube_get_controlplane_host)
33 if [ $? -ne 0 ]; then
34     echo $KUBERNETESHOST
35     echo "Exiting"
36     exit 1
37 fi
38
39 echo "Kubernetes control plane host: $KUBERNETESHOST"
40
41 . scripts/kube_get_nodeport.sh
42 . scripts/get_influxdb2_token.sh
43 . scripts/create_influxdb2_bucket.sh
44 . scripts/create_ics_job.sh
45
46 echo "Installation pm to influx job"
47
48 echo " Retriving influxdb2 access token..."
49 INFLUXDB2_TOKEN=$(get_influxdb2_token influxdb2-0 nonrtric)
50
51
52 bucket=pm-bucket
53 echo "Creating bucket $bucket in influxdb2"
54 create_influxdb2_bucket influxdb2-0 nonrtric $bucket
55
56 . scripts/populate_keycloak.sh
57
58 cid="console-setup"
59 TOKEN=$(get_client_token nonrtric-realm $cid)
60
61 JOB='{"info_type_id": "json-file-data-from-filestore-to-influx",
62      "job_owner": "console",
63      "status_notification_uri": "http://callback.nonrtric:80/post",
64      "job_definition": {
65         "db-url":"http://influxdb2.nonrtric:8086",
66         "db-org":"est",
67         "db-bucket":"pm-bucket",
68         "db-token":"'$INFLUXDB2_TOKEN'",
69         "filterType":"pmdata",
70         "filter":{}
71      }}'
72 echo $JOB > .job.json
73 create_ics_job kp-influx-json 0 $TOKEN
74
75 echo "done"
76