Merge "ironic: handle Swift object storage"

This commit is contained in:
Zuul 2020-04-29 00:53:48 +00:00 committed by Gerrit Code Review
commit 2f77670f7d
2 changed files with 17 additions and 0 deletions

View File

@ -127,6 +127,20 @@ valid_interfaces = internal
cafile = {{ openstack_cacert }}
{% endif %}
{% if enable_swift | bool %}
[swift]
auth_url = {{ keystone_admin_url }}
auth_type = password
project_domain_id = {{ default_project_domain_id }}
user_domain_id = {{ default_user_domain_id }}
project_name = service
username = {{ ironic_keystone_user }}
password = {{ ironic_keystone_password }}
region_name = {{ openstack_region_name }}
valid_interfaces = internal
cafile = {{ openstack_cacert }}
{% endif %}
[inspector]
{% if enable_keystone | bool %}
auth_url = {{ keystone_admin_url }}

View File

@ -0,0 +1,3 @@
---
features:
- Add Object Storage service (Swift) support for Ironic.