diff options
author | Yang Xu <yang.xu@futurewei.com> | 2019-06-13 13:19:20 -0400 |
---|---|---|
committer | Yang Xu <yang.xu@futurewei.com> | 2019-06-13 13:37:46 -0400 |
commit | 21b09c956609d3ebee0081686802d20da194c523 (patch) | |
tree | 2349f3054d9953195382a4d8fc3cd9ee0367b5d8 /test/vcpe/bin/setup.sh | |
parent | 8f04ed2a73c671717c50a0e27699ac3ff690c2a6 (diff) |
Improve vCPE test automation
Signed-off-by: Yang Xu <yang.xu@futurewei.com>
Issue-ID: INT-847
Change-Id: Ib5b0a547f1c228de4cee02f3526401028c10bff0
Diffstat (limited to 'test/vcpe/bin/setup.sh')
-rwxr-xr-x | test/vcpe/bin/setup.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/vcpe/bin/setup.sh b/test/vcpe/bin/setup.sh new file mode 100755 index 000000000..a52e0222e --- /dev/null +++ b/test/vcpe/bin/setup.sh @@ -0,0 +1,20 @@ +#!/bin/bash +# +# Copyright 2019 Futurewei Technologies Co., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# + +apt-get install -y python-pip +pip install ipaddress +pip install pyyaml +pip install mysql-connector-python +pip install progressbar2 +pip install python-novaclient +pip install python-openstackclient +pip install netaddr +pip install kubernetes |