ironic: handle Swift object storage

Change-Id: I18f8855a758703968aba032add68add24b31f673
Closes-bug: #1875588
This commit is contained in:
Marcin Juszkiewicz 2020-04-28 11:22:38 +02:00
parent 0747ebf1c9
commit fee9ff9c9d
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.