f5e0a3959b
All the images follow the same naming schema where the container name is part of the ansible variable name. Currently, the kolla_toolbox container is named ansible_image_full. Change this to match what the container name is. Could impact operators who are specifying ansible_image_full in globals.yml. TrivialFix Change-Id: I9f0cbe4bd69ce17489310a1f5734a254e6ebe27b
20 lines
978 B
YAML
20 lines
978 B
YAML
---
|
|
# Due to the way we do our inventory, ansible does not pick up on the fact that
|
|
# this role has already run. We can track what has run with host facts.
|
|
common_run: False
|
|
|
|
####################
|
|
# Docker
|
|
####################
|
|
kolla_toolbox_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-kolla-toolbox"
|
|
kolla_toolbox_tag: "{{ openstack_release }}"
|
|
kolla_toolbox_image_full: "{{ kolla_toolbox_image }}:{{ kolla_toolbox_tag }}"
|
|
|
|
heka_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-heka"
|
|
heka_tag: "{{ openstack_release }}"
|
|
heka_image_full: "{{ heka_image }}:{{ heka_tag }}"
|
|
|
|
cron_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-cron"
|
|
cron_tag: "{{ openstack_release }}"
|
|
cron_image_full: "{{ cron_image }}:{{ cron_tag }}"
|