diff options
author | ToineSiebelink <toine.siebelink@est.tech> | 2021-12-23 12:36:40 +0000 |
---|---|---|
committer | Toine Siebelink <toine.siebelink@est.tech> | 2022-01-04 11:36:25 +0000 |
commit | 18a79ebafa6c2b8737eb0702e1c17acbf57159ba (patch) | |
tree | a913e1c0a8a22a9bcfba86b475fe0ff40ec04d60 /csit/plans | |
parent | 23bd18865486d334647a4928104acce625795e18 (diff) |
Remove compulsory body from delete passthrough request
- yaml spec (please note how order of parameter changed!)
- Updated CSIT test
- Slight improvement of cist setup script to prevent double download
Issue-ID: CPS-836
Signed-off-by: ToineSiebelink <toine.siebelink@est.tech>
Change-Id: Ic3510c9dfe28a3be09f5239ab5c8c4797d4f4792
Diffstat (limited to 'csit/plans')
-rwxr-xr-x | csit/plans/cps/setup.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/csit/plans/cps/setup.sh b/csit/plans/cps/setup.sh index 5b3fd96497..6ef4c9a1fe 100755 --- a/csit/plans/cps/setup.sh +++ b/csit/plans/cps/setup.sh @@ -75,8 +75,8 @@ mkdir -p $WORKSPACE/archives/dc-dmi cat $WORKSPACE/archives/ncmp-dmi-plugin/docker-compose/docker-compose.yml cp $WORKSPACE/archives/ncmp-dmi-plugin/docker-compose/*.yml $WORKSPACE/archives/dc-dmi cd $WORKSPACE/archives/dc-dmi -# download docker-compose of a required version (1.25.0 supports configuration of version 3.7) -curl -L https://github.com/docker/compose/releases/download/1.25.0/docker-compose-`uname -s`-`uname -m` > docker-compose +# copy docker-compose (downloaded already for cps) +cp $WORKSPACE/archives/dc-cps/docker-compose . chmod +x docker-compose ./docker-compose up -d |