diff options
author | Bruno Sakoto <bruno.sakoto@bell.ca> | 2022-03-03 12:57:42 -0500 |
---|---|---|
committer | Bruno Sakoto <bruno.sakoto@bell.ca> | 2022-03-08 11:09:59 -0500 |
commit | f7dd1c8d0681862ca1c91d1fe0d5da1fd325d209 (patch) | |
tree | 965e10e2c7ca0cf43c9f1e1525850102ac3a9ee8 /csit | |
parent | 867906c056c122f1db17c143ad2be63f826c58b4 (diff) |
Fix docker images for csit tests
Following are the images to be used for csit tests:
* CPS Temporal: Locally build image corresponding to the current
change to be tested.
* CPS Core: Nexus published image corresponding to the current
release. This is the image Temporal needs to be intergrated with.
When the release is made, it needs to be set to CPS Core released
image.
Issue-ID: CPS-905
Signed-off-by: Bruno Sakoto <bruno.sakoto@bell.ca>
Change-Id: Icf682fb9da62c5ef93c1b6e4592fb60b9e7b0a2a
Diffstat (limited to 'csit')
-rwxr-xr-x | csit/plans/default/setup.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/csit/plans/default/setup.sh b/csit/plans/default/setup.sh index 7bf0340..3385bc0 100755 --- a/csit/plans/default/setup.sh +++ b/csit/plans/default/setup.sh @@ -1,7 +1,7 @@ #!/bin/bash # # ============LICENSE_START======================================================= -# Copyright (C) 2021 Bell Canada. +# Copyright (C) 2021-2022 Bell Canada. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -30,6 +30,9 @@ source $WORKSPACE/plans/default/setup.properties curl -L https://github.com/docker/compose/releases/download/1.25.0/docker-compose-`uname -s`-`uname -m` > docker-compose chmod +x docker-compose +# Set environment variables for docker compose +export CPS_TEMPORAL_DOCKER_REPO= +export STABLE_CPS_CORE_VERSION=3.0.0-SNAPSHOT-20220303T233031Z # start CPS Temporal, cps-core, timescaledb, PostgresSQL and kafka containers with docker compose ./docker-compose up -d python3 --version |