Merge "Fix container image build issues with letsencrypt"

This commit is contained in:
Zuul 2024-06-04 10:20:05 +00:00 committed by Gerrit Code Review
commit e8adce4093
2 changed files with 9 additions and 2 deletions

View File

@ -162,7 +162,7 @@ overcloud_container_image_regex_map:
- regex: ^haproxy$
enabled: "{{ kolla_enable_haproxy | bool }}"
- regex: ^haproxy-ssh$
enabled: "{{ kolla_enable_letsencrypt }}"
enabled: "{{ kolla_enable_letsencrypt | bool }}"
- regex: ^heat
enabled: "{{ kolla_enable_heat | bool }}"
- regex: ^horizon
@ -184,7 +184,7 @@ overcloud_container_image_regex_map:
- regex: ^kuryr
enabled: "{{ kolla_enable_kuryr | bool }}"
- regex: ^letsencrypt
enabled: "{{ kolla_enable_letsencrypt }}"
enabled: "{{ kolla_enable_letsencrypt | bool }}"
- regex: ^magnum
enabled: "{{ kolla_enable_magnum | bool }}"
- regex: ^manila
@ -529,6 +529,7 @@ kolla_enable_ironic: "no"
kolla_enable_ironic_neutron_agent: "{{ kolla_enable_neutron | bool and kolla_enable_ironic | bool }}"
kolla_enable_iscsid: "{{ kolla_enable_cinder | bool and kolla_enable_cinder_backend_iscsi | bool }}"
kolla_enable_kuryr: "no"
kolla_enable_letsencrypt: "no"
kolla_enable_magnum: "no"
kolla_enable_manila: "no"
kolla_enable_masakari: "no"

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Fixes bugs with the ``kolla_enable_letsencrypt`` variable which were
causing overcloud container image build to fail, or to include
``letsencrypt`` images when disabled.