devstack安装卡在 venv-tempest installdeps: -chttps://git.open...
发布网友
发布时间:2022-05-05 10:57
我来回答
共1个回答
热心网友
时间:2022-04-15 20:48
在tempest仓库下执行命令
tox -e genconfig
1
会在etc文件夹下生成tempest.conf.sample配置文件模版
初始化
确定测试环境目录,例如/opt目录,在/opt目录下执行命令
tempest init tempest-test-dir
1
会在/opt目录下生成tempest-test-dir测试文件夹,文件夹结构
[root@controller tempest-test-dir]# tree
.
├── etc
│ ├── tempest.conf
│ └── tempest.conf.sample
├── logs
└── tempest_lock
3 directories, 2 files
1
2
3
4
5
6
7
8
9
修改配置文件
修改测试文件夹下的etc/tempest.conf文件,主要包括修改认证信息、镜像信息、网络信息等。详细配置请参考tempest开发者文档
————————————————