blob: 9f4abb32bd2928418d42488fc572312c2590eca3 [file] [log] [blame]
BjornMagnussonXAc5655db2023-03-17 14:55:16 +01001#!/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>
24check_error() {
25 if [ $1 -ne 0 ]; then
26 echo "Failed: $2"
27 echo "Exiting..."
28 exit 1
29 fi
30}
31
32export KHOST=$(kube_get_controlplane_host)
33if [ $? -ne 0 ]; then
34 echo $KHOST
35 echo "Exiting"
36 exit 1
37fi
38
39echo "Kubernetes control plane host: $KHOST"
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
46echo "Installtion pm to influx job"
47
48echo " Retriving influxdb2 access token..."
49INFLUXDB2_TOKEN=$(get_influxdb2_token influxdb2-0 nonrtric)
50
51
52bucket=pm-bucket
53echo "Creating bucket $bucket in influxdb2"
54create_influxdb2_bucket influxdb2-0 nonrtric $bucket
55
56export KC_PORT=$(kube_get_nodeport keycloak nonrtric http)
57. scripts/populate_keycloak.sh
58
59cid="console-setup"
60TOKEN=$(get_client_token nonrtric-realm $cid)
61
62JOB='{"info_type_id": "json-file-data-from-filestore-to-influx",
63 "job_owner": "console",
64 "status_notification_uri": "http://callback.nonrtric:80/post",
65 "job_definition": {
66 "db-url":"http://influxdb2.nonrtric:8086",
67 "db-org":"est",
68 "db-bucket":"pm-bucket",
69 "db-token":"'$INFLUXDB2_TOKEN'",
70 "filterType":"pmdata",
71 "filter":{}
72 }}'
73echo $JOB > .job.json
74create_ics_job kp-influx-json 0 $TOKEN
75
76echo "done"
77