blob: 5f9271f2a0aa0192bb4a16e6e332106d61ef10bc [file] [log] [blame]
Filip Krzywkaccdbec82018-12-12 08:14:57 +01001#!/usr/bin/env bash
2# ============LICENSE_START=======================================================
3# dcaegen2-collectors-veshv
4# ================================================================================
5# Copyright (C) 2018 NOKIA
6# ================================================================================
7# Licensed under the Apache License, Version 2.0 (the "License");
8# you may not use this file except in compliance with the License.
9# You may obtain a copy of the License at
10#
11# http://www.apache.org/licenses/LICENSE-2.0
12#
13# Unless required by applicable law or agreed to in writing, software
14# distributed under the License is distributed on an "AS IS" BASIS,
15# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16# See the License for the specific language governing permissions and
17# limitations under the License.
18# ============LICENSE_END=========================================================
19
20set -euo pipefail
21
22usage() {
23 echo "Put HV-VES configuration into Consul key-value store"
24 echo "Usage: $0 [-h|--help] [-v|--verbose] [domain [topic]]"
25 exit 1
26}
27
28optspec=":vh-:" # catch v, h and -
29while getopts "$optspec" arg; do
30 case "${arg}" in
31 -) # handle longopts
32 case "${OPTARG}" in
33 verbose)
34 VERBOSE=True
35 ;;
36 help)
37 usage
38 ;;
39 *)
40 echo "Unknown option --${OPTARG}" >&2
41 usage
42 ;;
43 esac
44 ;;
45 v)
46 VERBOSE=True
47 ;;
48 h)
49 usage
50 ;;
51 *)
52 echo "Unknown option -${OPTARG}" >&2
53 usage
54 ;;
55 esac
56done
57shift $((OPTIND-1))
58
59DOMAIN=${1:-perf3gpp}
60TOPIC=${2:-HV_VES_PERF3GPP}
61
Filip Krzywka5ddee4d2019-03-29 14:52:25 +010062CONFIGURATION="{
Filip Krzywka4d763452019-04-08 12:40:26 +020063 \"streams_publishes\": {
64 \"${DOMAIN}\": {
65 \"type\": \"kafka\",
66 \"kafka_info\": {
67 \"bootstrap_servers\": \"message-router-kafka:9092\",
68 \"topic_name\": \"${TOPIC}\"
Filip Krzywka5ddee4d2019-03-29 14:52:25 +010069 }
70 }
71 }
Filip Krzywkaccdbec82018-12-12 08:14:57 +010072}"
Filip Krzywka4d763452019-04-08 12:40:26 +020073CONFIGURATION_ENDPOINT=localhost:8500/v1/kv/dcae-hv-ves-collector
Filip Krzywkaccdbec82018-12-12 08:14:57 +010074
75
76if [ -n "${VERBOSE+x}" ]; then
77 echo "Configuration: ${CONFIGURATION}"
Filip Krzywka4d763452019-04-08 12:40:26 +020078 echo "Putting configuration under ${CONFIGURATION_ENDPOINT}"
Filip Krzywkaccdbec82018-12-12 08:14:57 +010079fi
80curl --request PUT ${CONFIGURATION_ENDPOINT} -d "${CONFIGURATION}"
81echo