blob: 1de513ef0ce6094f55eb8115ad4f065a90a6fb0a [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
BjornMagnussonXA6ab531b2023-05-15 11:23:35 +020032export KUBERNETESHOST=$(kube_get_controlplane_host)
BjornMagnussonXAc5655db2023-03-17 14:55:16 +010033if [ $? -ne 0 ]; then
BjornMagnussonXA6ab531b2023-05-15 11:23:35 +020034 echo $KUBERNETESHOST
BjornMagnussonXAc5655db2023-03-17 14:55:16 +010035 echo "Exiting"
36 exit 1
37fi
38
BjornMagnussonXA6ab531b2023-05-15 11:23:35 +020039echo "Kubernetes control plane host: $KUBERNETESHOST"
BjornMagnussonXAc5655db2023-03-17 14:55:16 +010040
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
BjornMagnussonXAc5655db2023-03-17 14:55:16 +010056. scripts/populate_keycloak.sh
57
58cid="console-setup"
59TOKEN=$(get_client_token nonrtric-realm $cid)
60
61JOB='{"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 }}'
72echo $JOB > .job.json
73create_ics_job kp-influx-json 0 $TOKEN
74
75echo "done"
76