6df1b20618
Change-Id: I0cbc51eedb218f6b2f7d5c50372ad7a8be9bdcc0
73 lines
2.6 KiB
YAML
73 lines
2.6 KiB
YAML
---
|
|
project_name: "common"
|
|
|
|
# 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/"
|
|
dimensions: "{{ fluentd_dimensions }}"
|
|
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/"
|
|
dimensions: "{{ kolla_toolbox_dimensions }}"
|
|
# 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/"
|
|
dimensions: "{{ cron_dimensions }}"
|
|
|
|
|
|
####################
|
|
# Docker
|
|
####################
|
|
common_install_type: "{{ kolla_install_type }}"
|
|
common_tag: "{{ openstack_release }}"
|
|
|
|
cron_dimensions: "{{ default_container_dimensions }}"
|
|
kolla_toolbox_dimensions: "{{ default_container_dimensions }}"
|
|
fluentd_dimensions: "{{ default_container_dimensions }}"
|
|
|
|
kolla_toolbox_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ common_install_type }}-kolla-toolbox"
|
|
kolla_toolbox_tag: "{{ common_tag }}"
|
|
kolla_toolbox_image_full: "{{ kolla_toolbox_image }}:{{ kolla_toolbox_tag }}"
|
|
|
|
cron_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ common_install_type }}-cron"
|
|
cron_tag: "{{ common_tag }}"
|
|
cron_image_full: "{{ cron_image }}:{{ cron_tag }}"
|
|
|
|
fluentd_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ common_install_type }}-fluentd"
|
|
fluentd_tag: "{{ common_tag }}"
|
|
fluentd_image_full: "{{ fluentd_image }}:{{ fluentd_tag }}"
|
|
|
|
syslog_swift_facility: "local0"
|
|
syslog_haproxy_facility: "local1"
|