80b7266ed1
This change is needed for clarity. We have a kolla-ansible script. We have a kolla-mesos repo. We plan to have a kolla-ansible repo. Already we have had far too much confusion about whether we are talking about the container or the project. Naming this kolla-toolbox eliminates all of that confusion and its probably a bit more accurate of a name too. Closes-Bug: #1541053 Change-Id: I8fd1f49d5a22b36ede5b10f46b9fe02ddda9007e
16 lines
733 B
YAML
16 lines
733 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
|
|
####################
|
|
ansible_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-kolla-toolbox"
|
|
ansible_tag: "{{ openstack_release }}"
|
|
ansible_image_full: "{{ ansible_image }}:{{ ansible_tag }}"
|
|
|
|
rsyslog_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-rsyslog"
|
|
rsyslog_tag: "{{ openstack_release }}"
|
|
rsyslog_image_full: "{{ rsyslog_image }}:{{ rsyslog_tag }}"
|