diff options
author | ToineSiebelink <toine.siebelink@est.tech> | 2023-02-07 10:30:03 +0000 |
---|---|---|
committer | ToineSiebelink <toine.siebelink@est.tech> | 2023-02-15 08:43:26 +0000 |
commit | b2c8bc6b9bfd502be01e524c24628fcd10b1e177 (patch) | |
tree | e76c0e54ba3089a1384cca6366b862dd095b7c4c /csit | |
parent | bf95fbd1a9b0f41dcea6d852c384e6ee2598979d (diff) |
Introducing Grafana
- Added profiles to docker compose: dmi-service/dmi-stub, monitoring
- NOTE: now need to add '--profile dmi-service' to enable dm-plugin (e.g. for csit)
- using container names to resolve hosts for prometheus
Issue-ID: CPS-1465
Signed-off-by: ToineSiebelink <toine.siebelink@est.tech>
Change-Id: I5d7365a3f789cc698e2702d72700a002cf03eaef
Diffstat (limited to 'csit')
-rwxr-xr-x | csit/plans/cps/setup.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/csit/plans/cps/setup.sh b/csit/plans/cps/setup.sh index c715da142f..e7ad67e2b6 100755 --- a/csit/plans/cps/setup.sh +++ b/csit/plans/cps/setup.sh @@ -63,8 +63,8 @@ curl -L https://github.com/docker/compose/releases/download/1.29.2/docker-compos chmod +x docker-compose docker-compose version -# start CPS/NCMP, DMI, and PostgreSQL containers with docker compose -docker-compose up -d +# start CPS/NCMP, DMI Plugin, and PostgreSQL containers with docker compose +docker-compose --profile dmi-service up -d ###################### setup sdnc ####################################### source $WORKSPACE/plans/cps/sdnc/sdnc_setup.sh @@ -129,4 +129,4 @@ check_health $DMI_HOST:$DMI_MANAGEMENT_PORT 'dmi-plugin' ###################### ROBOT Configurations ########################## # Pass variables required for Robot test suites in ROBOT_VARIABLES -ROBOT_VARIABLES="-v CPS_CORE_HOST:$CPS_CORE_HOST -v CPS_CORE_PORT:$CPS_CORE_PORT -v DMI_HOST:$LOCAL_IP -v DMI_PORT:$DMI_PORT -v CPS_CORE_MANAGEMENT_PORT:$CPS_CORE_MANAGEMENT_PORT -v DATADIR:$WORKSPACE/data --exitonfailure"
\ No newline at end of file +ROBOT_VARIABLES="-v CPS_CORE_HOST:$CPS_CORE_HOST -v CPS_CORE_PORT:$CPS_CORE_PORT -v DMI_HOST:$LOCAL_IP -v DMI_PORT:$DMI_PORT -v CPS_CORE_MANAGEMENT_PORT:$CPS_CORE_MANAGEMENT_PORT -v DATADIR:$WORKSPACE/data --exitonfailure" |