This commit removes some config values for tempest that no
longer exist in tempest/config.py therefore are no longer needed
in tempest.conf.
Change-Id: I5778973012e57e8d9df9bf864590f8ed7fe05561
| ... | ... |
@@ -267,8 +267,7 @@ function configure_tempest {
|
| 267 | 267 |
if [[ "$TEMPEST_HAS_ADMIN" == "True" ]]; then |
| 268 | 268 |
iniset $TEMPEST_CONFIG auth admin_username $admin_username |
| 269 | 269 |
iniset $TEMPEST_CONFIG auth admin_password "$password" |
| 270 |
- iniset $TEMPEST_CONFIG auth admin_tenant_name $admin_project_name |
|
| 271 |
- iniset $TEMPEST_CONFIG auth admin_tenant_id $admin_project_id |
|
| 270 |
+ iniset $TEMPEST_CONFIG auth admin_project_name $admin_project_name |
|
| 272 | 271 |
iniset $TEMPEST_CONFIG auth admin_domain_name $admin_domain_name |
| 273 | 272 |
fi |
| 274 | 273 |
if [ "$ENABLE_IDENTITY_V2" == "False" ]; then |
| ... | ... |
@@ -306,15 +305,10 @@ function configure_tempest {
|
| 306 | 306 |
fi |
| 307 | 307 |
|
| 308 | 308 |
# Compute |
| 309 |
- iniset $TEMPEST_CONFIG compute ssh_user ${DEFAULT_INSTANCE_USER:-cirros} # DEPRECATED
|
|
| 310 | 309 |
iniset $TEMPEST_CONFIG compute image_ref $image_uuid |
| 311 | 310 |
iniset $TEMPEST_CONFIG compute image_ref_alt $image_uuid_alt |
| 312 |
- iniset $TEMPEST_CONFIG compute image_alt_ssh_user ${ALT_INSTANCE_USER:-cirros}
|
|
| 313 | 311 |
iniset $TEMPEST_CONFIG compute flavor_ref $flavor_ref |
| 314 | 312 |
iniset $TEMPEST_CONFIG compute flavor_ref_alt $flavor_ref_alt |
| 315 |
- iniset $TEMPEST_CONFIG compute ssh_connect_method $ssh_connect_method |
|
| 316 |
- # set the equiv validation option here as well to ensure they are |
|
| 317 |
- # in sync. They shouldn't be separate options. |
|
| 318 | 313 |
iniset $TEMPEST_CONFIG validation connect_method $ssh_connect_method |
| 319 | 314 |
if ! is_service_enabled n-cell && ! is_service_enabled neutron; then |
| 320 | 315 |
iniset $TEMPEST_CONFIG compute fixed_network_name $PRIVATE_NETWORK_NAME |
| ... | ... |
@@ -419,9 +413,6 @@ function configure_tempest {
|
| 419 | 419 |
iniset $TEMPEST_CONFIG scenario aki_img_file "cirros-${CIRROS_VERSION}-${CIRROS_ARCH}-vmlinuz"
|
| 420 | 420 |
iniset $TEMPEST_CONFIG scenario img_file "cirros-${CIRROS_VERSION}-${CIRROS_ARCH}-disk.img"
|
| 421 | 421 |
|
| 422 |
- # Telemetry |
|
| 423 |
- iniset $TEMPEST_CONFIG telemetry-feature-enabled events "True" |
|
| 424 |
- |
|
| 425 | 422 |
# Validation |
| 426 | 423 |
iniset $TEMPEST_CONFIG validation run_validation ${TEMPEST_RUN_VALIDATION:-False}
|
| 427 | 424 |
iniset $TEMPEST_CONFIG validation ip_version_for_ssh 4 |