BjornMagnussonXA | c5655db | 2023-03-17 14:55:16 +0100 | [diff] [blame^] | 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 KHOST=$(kube_get_controlplane_host) |
| 33 | if [ $? -ne 0 ]; then |
| 34 | echo $KHOST |
| 35 | echo "Exiting" |
| 36 | exit 1 |
| 37 | fi |
| 38 | |
| 39 | echo "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 | |
| 46 | echo "Installtion 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 | export KC_PORT=$(kube_get_nodeport keycloak nonrtric http) |
| 57 | . scripts/populate_keycloak.sh |
| 58 | |
| 59 | cid="console-setup" |
| 60 | TOKEN=$(get_client_token nonrtric-realm $cid) |
| 61 | |
| 62 | JOB='{"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 | }}' |
| 73 | echo $JOB > .job.json |
| 74 | create_ics_job kp-influx-json 0 $TOKEN |
| 75 | |
| 76 | echo "done" |
| 77 | |