kolla-ansible/ansible/roles/common/templates/cron.json.j2

45 lines
991 B
Django/Jinja

{% set cron_cmd = 'cron -f' if kolla_base_distro in ['ubuntu', 'debian'] else 'crond -s -n' %}
{% set services = [
"ansible",
"aodh",
"barbican",
"cinder",
"cloudkitty",
"glance",
"gnocchi",
"haproxy",
"heat",
"keepalived",
"keystone",
"magnum",
"manila",
"mariadb",
"mistral",
"murano",
"neutron",
"nova",
"rabbitmq",
"senlin",
"swift"
] %}
{
"command": "{{ cron_cmd }}",
"config_files": [
{
"source": "{{ container_config_directory }}/logrotate/global.conf",
"dest": "/etc/logrotate.conf",
"owner": "root",
"perm": "0644"
},
{% for service in services %}
{
"source": "{{ container_config_directory }}/logrotate/{{ service }}.conf",
"dest": "/etc/logrotate.d/{{ service }}.conf",
"owner": "root",
"perm": "0644"
}{% if not loop.last %},{% endif %}
{% endfor %}
]
}