ea1a1dee0d
This patchset implements yamllint test to all *.yml files. Also fixes syntax errors to make jobs to pass. Change-Id: I3186adf9835b4d0cada272d156b17d1bc9c2b799
65 lines
2.5 KiB
YAML
65 lines
2.5 KiB
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
|
|
|
|
common_services:
|
|
fluentd:
|
|
container_name: fluentd
|
|
enabled: "{{ enable_fluentd | bool }}"
|
|
image: "{{ fluentd_image_full }}"
|
|
environment:
|
|
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
|
|
volumes:
|
|
- "{{ node_config_directory }}/fluentd/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
kolla-toolbox:
|
|
container_name: kolla_toolbox
|
|
enabled: True
|
|
image: "{{ kolla_toolbox_image_full }}"
|
|
environment:
|
|
ANSIBLE_NOCOLOR: "1"
|
|
ANSIBLE_LIBRARY: "/usr/share/ansible"
|
|
privileged: True
|
|
volumes:
|
|
- "{{ node_config_directory }}/kolla-toolbox/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "/dev/:/dev/"
|
|
- "/run/:/run/:shared"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
# DUMMY_ENVIRONMENT is needed because empty environment is not supported
|
|
cron:
|
|
container_name: cron
|
|
enabled: True
|
|
image: "{{ cron_image_full }}"
|
|
environment:
|
|
DUMMY_ENVIRONMENT: kolla_useless_env
|
|
volumes:
|
|
- "{{ node_config_directory }}/cron/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
|
|
|
|
####################
|
|
# 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 }}"
|
|
|
|
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 }}"
|
|
|
|
fluentd_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-fluentd"
|
|
fluentd_tag: "{{ openstack_release }}"
|
|
fluentd_image_full: "{{ fluentd_image }}:{{ fluentd_tag }}"
|
|
|
|
kubetoolbox_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-kubetoolbox"
|
|
kubetoolbox_tag: "{{ openstack_release }}"
|
|
kubetoolbox_image_full: "{{ kubetoolbox_image }}:{{ kubetoolbox_tag }}"
|
|
|
|
syslog_swift_facility: "local0"
|
|
syslog_haproxy_facility: "local1"
|