diff options
author | highstreetherbert <herbert.eiselt@highstreet-technologies.com> | 2021-08-10 16:53:05 +0200 |
---|---|---|
committer | highstreetherbert <herbert.eiselt@highstreet-technologies.com> | 2021-08-17 17:59:56 +0200 |
commit | 063addc2cdac841d2646e8f87fff86f48c33e655 (patch) | |
tree | c369b0cf445a3c0ea2507482a46d0f5387fcedeb /csit/plans | |
parent | 96225a9516e146223c3ce10e1181f56ee672a865 (diff) |
Fix root pom version definition
Change version range to version number
Issue-ID: SDNC-1587
Signed-off-by: highstreetherbert <herbert.eiselt@highstreet-technologies.com>
Change-Id: I3553270aa378c718e7e3ddd4564845d2cfc6e9a6
Signed-off-by: highstreetherbert <herbert.eiselt@highstreet-technologies.com>
Former-commit-id: e81e7ae9a71a33fd27904849929ffbc0c7269ce0
Diffstat (limited to 'csit/plans')
-rw-r--r-- | csit/plans/sdnc/setup.sh | 9 | ||||
-rwxr-xr-x | csit/plans/sdnr/setup.sh | 13 |
2 files changed, 21 insertions, 1 deletions
diff --git a/csit/plans/sdnc/setup.sh b/csit/plans/sdnc/setup.sh index 2a418e6f..91783582 100644 --- a/csit/plans/sdnc/setup.sh +++ b/csit/plans/sdnc/setup.sh @@ -18,11 +18,18 @@ # Modifications copyright (c) 2021 AT&T Intellectual Property # -# Remove all dangling images +# Remove all dangling images and cleanup /w/workspace and /tmp docker image prune -f +echo "Remove onap repository artifacts" +rm -r /tmp/r/org/onap +echo "Remove all target folders from workspace" +rm -r $(find /w/workspace -name target) ###################### Netconf Simulator Setup ###################### +echo "Clean" +sudo apt clean + # Get integration/simulators if [ -d ${WORKSPACE}/archives/pnf-simulator ] then diff --git a/csit/plans/sdnr/setup.sh b/csit/plans/sdnr/setup.sh index 08babea5..e2942b37 100755 --- a/csit/plans/sdnr/setup.sh +++ b/csit/plans/sdnr/setup.sh @@ -18,6 +18,19 @@ # Modifications copyright (c) 2021 highstreet technologies GmbH Property # +# Remove all not needed images and clean workspace +sudo apt clean +docker rmi -f $(docker images onap/sdnc-dmaap-listener-image -a -q) +docker rmi -f $(docker images onap/sdnc-ueb-listener-image -a -q) +docker rmi -f $(docker images onap/onap/sdnc-web-image -a -q) +docker rmi -f $(docker images onap/sdnc-ansible-server-image -a -q) +docker rmi -f $(docker images onap/sdnc-aaf-image -a -q) +docker rmi -f $(docker images onap/ccsdk-ansible-server-image -a -q) +docker rmi -f $(docker images onap/ccsdk-odlsli-alpine-image -a -q) +docker images + +echo "Start plan sdnr" + source ${WORKSPACE}/scripts/sdnr/sdnr-launch.sh onap_dependent_components_launch nts_networkfunctions_launch ${WORKSPACE}/plans/sdnr/testdata/nts-networkfunctions.csv |