32a4cadac9
Add cron image and playbook for logrotate. The "common" Ansible playbook includes configuration files for logrotate. At this point the operator cannot customize/override the logrotate configuration. Closes-Bug: #1553244 Change-Id: Ic9fdda9a273c9ccd90502f0acc7614d2c7157dca
20 lines
948 B
YAML
20 lines
948 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 }}"
|
|
|
|
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 }}"
|