Skip to content
Snippets Groups Projects
Commit 3cdc055b authored by Kevin TIBI's avatar Kevin TIBI
Browse files

add conf regex for build image

parent 1b96a208
No related branches found
No related tags found
No related merge requests found
...@@ -106,18 +106,28 @@ seed_container_image_sets: ...@@ -106,18 +106,28 @@ seed_container_image_sets:
# List of regular expressions matching names of container images to build for # List of regular expressions matching names of container images to build for
# controllers. # controllers.
controller_container_image_regex_map: controller_container_image_regex_map:
- regex: aodh
enabled: "{{ kolla_enable_aodh | bool }}"
- regex: barbican - regex: barbican
enabled: "{{ kolla_enable_barbican | bool }}" enabled: "{{ kolla_enable_barbican | bool }}"
- regex: ceilometer
enabled: "{{ kolla_enable_ceilometer | bool }}"
- regex: cinder - regex: cinder
enabled: True enabled: True
- regex: cron - regex: cron
enabled: True enabled: True
- regex: designate
enabled: "{{ kolla_enable_designate | bool }}"
- regex: dnsmasq - regex: dnsmasq
enabled: True enabled: True
- regex: elasticsearch
enabled: "{{ kolla_enable_elasticsearch | bool }}"
- regex: fluentd - regex: fluentd
enabled: True enabled: True
- regex: glance - regex: glance
enabled: "{{ kolla_enable_glance | bool }}" enabled: "{{ kolla_enable_glance | bool }}"
- regex: gnocchi
enabled: "{{ kolla_enable_gnocchi | bool }}"
- regex: haproxy - regex: haproxy
enabled: True enabled: True
- regex: heat - regex: heat
...@@ -132,6 +142,8 @@ controller_container_image_regex_map: ...@@ -132,6 +142,8 @@ controller_container_image_regex_map:
enabled: True enabled: True
- regex: keystone - regex: keystone
enabled: True enabled: True
- regex: kibana
enabled: "{{ kolla_enable_kibana | bool }}"
- regex: kolla-toolbox - regex: kolla-toolbox
enabled: True enabled: True
- regex: magnum - regex: magnum
...@@ -155,6 +167,8 @@ controller_container_image_regex_map: ...@@ -155,6 +167,8 @@ controller_container_image_regex_map:
enabled: True enabled: True
- regex: sahara - regex: sahara
enabled: "{{ kolla_enable_sahara | bool }}" enabled: "{{ kolla_enable_sahara | bool }}"
- regex: skydive
enabled: "{{ kolla_enable_skydive | bool }}"
- regex: swift - regex: swift
enabled: "{{ kolla_enable_swift | bool }}" enabled: "{{ kolla_enable_swift | bool }}"
- regex: tgtd - regex: tgtd
...@@ -242,18 +256,28 @@ kolla_openstack_logging_debug: "False" ...@@ -242,18 +256,28 @@ kolla_openstack_logging_debug: "False"
############################################################################### ###############################################################################
# Kolla feature flag configuration. # Kolla feature flag configuration.
kolla_enable_aodh: "no"
kolla_enable_barbican: "no" kolla_enable_barbican: "no"
kolla_enable_central_logging: "no"
kolla_enable_ceph: "no" kolla_enable_ceph: "no"
kolla_enable_ceilometer: "no"
kolla_enable_designate: "no"
kolla_enable_elasticsearch: "{{ 'yes' if kolla_enable_central_logging | bool or kolla_enable_freezer | bool or kolla_enable_osprofiler | bool or kolla_enable_skydive | bool else 'no' }}"
kolla_enable_freezer: "no"
kolla_enable_glance: "yes" kolla_enable_glance: "yes"
kolla_enable_gnocchi: "no"
kolla_enable_haproxy: "yes" kolla_enable_haproxy: "yes"
kolla_enable_heat: "yes" kolla_enable_heat: "yes"
kolla_enable_horizon: "yes" kolla_enable_horizon: "yes"
kolla_enable_ironic: "yes" kolla_enable_ironic: "yes"
kolla_enable_neutron: "yes" kolla_enable_kibana: "{{ 'yes' if kolla_enable_central_logging | bool else 'no' }}"
kolla_enable_nova: "yes"
kolla_enable_magnum: "no" kolla_enable_magnum: "no"
kolla_enable_murano: "no" kolla_enable_murano: "no"
kolla_enable_neutron: "yes"
kolla_enable_nova: "yes"
kolla_enable_osprofiler: "no"
kolla_enable_sahara: "no" kolla_enable_sahara: "no"
kolla_enable_skydive: "no"
kolla_enable_swift: "no" kolla_enable_swift: "no"
############################################################################### ###############################################################################
......
...@@ -88,6 +88,7 @@ kolla_feature_flags: ...@@ -88,6 +88,7 @@ kolla_feature_flags:
- influxdb - influxdb
- ironic - ironic
- karbor - karbor
- kibana
- kuryr - kuryr
- magnum - magnum
- manila - manila
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment