Comment 4 for bug 1784496

Revision history for this message
Eric Miller (erickmiller) wrote :

I think I found the problem, but am testing.

It looks like line 14 of /usr/share/kolla-ansible/ansible/roles/ceilometer/tasks/bootstrap_service.yml

has content:
    image: "{{ ceilometer_notification.image | reject('equalto', '')|list }}"

whereas the older version of this file has content:
    image: "{{ ceilometer_notification.image }}"

I removed the |list jinja2 filter and am testing the deployment.

Eric