|
69 | 69 | swiftContainerImage: {{ container_registry }}/{{ container_namespace }}/openstack-swift-container:{{ container_tag }} |
70 | 70 | swiftObjectImage: {{ container_registry }}/{{ container_namespace }}/openstack-swift-object:{{ container_tag }} |
71 | 71 | swiftProxyImage: {{ container_registry }}/{{ container_namespace }}/openstack-swift-proxy-server:{{ container_tag }} |
| 72 | +{% if (backend_services_cindervolumes | length > 0 or |
| 73 | + (backend_services_cindervolumes_extraimages is defined and backend_services_cindervolumes_extraimages is mapping)) %} |
72 | 74 | cinderVolumeImages: |
73 | | - volume1: {{ container_registry }}/{{ container_namespace }}/openstack-cinder-volume:{{ container_tag }} |
| 75 | +{% endif %} |
| 76 | +{% if backend_services_cindervolumes | length > 0 %} |
| 77 | +{% for _vol in backend_services_cindervolumes %} |
| 78 | + {{ _vol }}: {{ container_registry }}/{{ container_namespace }}/openstack-cinder-volume:{{ container_tag }} |
| 79 | +{% endfor %} |
| 80 | +{% endif %} |
| 81 | +{% if (backend_services_cindervolumes_extraimages is defined and backend_services_cindervolumes_extraimages is mapping) %} |
| 82 | +{% for _container_name, _container_uri in backend_services_cindervolumes_extraimages.items() %} |
| 83 | + {{ _container_name }}: {{ _container_uri }} |
| 84 | +{% endfor %} |
| 85 | +{% endif %} |
| 86 | +{% if (backend_services_manilashares | length > 0 or |
| 87 | + (backend_services_manilashares_extraimages is defined and backend_services_manilashares_extraimages is mapping)) %} |
74 | 88 | manilaShareImages: |
75 | | - share1: {{ container_registry }}/{{ container_namespace }}/openstack-manila-share:{{ container_tag }} |
| 89 | +{% endif %} |
| 90 | +{% if backend_services_manilashares | length > 0 %} |
| 91 | +{% for _vol in backend_services_manilashares %} |
| 92 | + {{ _vol }}: {{ container_registry }}/{{ container_namespace }}/openstack-manila-share:{{ container_tag }} |
| 93 | +{% endfor %} |
| 94 | +{% endif %} |
| 95 | +{% if (backend_services_manilashares_extraimages is defined and backend_services_manilashares_extraimages is mapping) %} |
| 96 | +{% for _container_name, _container_uri in backend_services_manilashares_extraimages.items() %} |
| 97 | + {{ _container_name }}: {{ _container_uri }} |
| 98 | +{% endfor %} |
| 99 | +{% endif %} |
0 commit comments