Add manila support to tempest

This commit is contained in:
Corey Bryant
2022-05-18 20:53:37 +00:00
parent 8fae05e0c2
commit 41bc9e0069
2 changed files with 12 additions and 3 deletions

View File

@@ -10,6 +10,15 @@ admin_project_name = {{ admin_project_name }}
admin_password = {{ admin_password }}
admin_domain_name = {{ admin_domain_name }}
{% if 'manila' in enabled_services %}
[share]
multitenancy_enabled = false
capability_snapshot_support = true
enable_protocols = nfs
capability_storage_protocol = NFS
max_api_microversion = 2.63
{% endif %}
{% if 'nova' in enabled_services %}
[compute]
image_ref = {{ image_id }}
@@ -110,4 +119,4 @@ backup = false
enable_security_groups = true
test_with_ipv6 = false
test_server_path = {{ workspace_path }}/test_server.bin
{% endif %}
{% endif %}

View File

@@ -38,8 +38,8 @@ IGNORABLE_VARS = ['TEST_CIDR_PRIV']
TEMPEST_FLAVOR_NAME = 'm1.tempest'
TEMPEST_ALT_FLAVOR_NAME = 'm2.tempest'
TEMPEST_SVC_LIST = ['ceilometer', 'cinder', 'glance', 'heat', 'horizon',
'ironic', 'neutron', 'nova', 'octavia', 'sahara', 'swift',
'trove', 'zaqar']
'ironic', 'manila', 'neutron', 'nova', 'octavia',
'sahara', 'swift', 'trove', 'zaqar']
def render_tempest_config_keystone_v2():