Minor fix for RANPM
[nonrtric/plt/ranpm.git] / install / update-pm-log.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/update_ics_job.sh
45
46 echo "Installation of 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-logg-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='{
62        "info_type_id": "PmData",
63        "job_owner": "console",
64        "job_definition": {
65           "filter": {
66              "sourceNames": ["node2-1"],
67              "measObjInstIds": [],
68              "measTypeSpecs": [
69                 {
70                    "measuredObjClass": "NRCellDU",
71                    "measTypes": [
72                       "pmCounterNumber102"
73                    ]
74                 }
75              ],
76              "measuredEntityDns": []
77           },
78           "deliveryInfo": {
79              "topic": "pmreports",
80              "bootStrapServers": "kafka-1-kafka-bootstrap.nonrtric:9097"
81           }
82        }
83     }'
84 echo $JOB > .job.json
85 update_ics_job pmlog $TOKEN
86
87 echo "done"
88