4b5df0d866
Some services look for /etc/timezone on Debian/Ubuntu, so we should introduce it to the containers. In addition, added prechecks for /etc/localtime and /etc/timezone. Closes-Bug: #1821592 Change-Id: I9fef14643d1bcc7eee9547eb87fa1fb436d8a6b3
36 lines
1.2 KiB
YAML
36 lines
1.2 KiB
YAML
---
|
|
project_name: "multipathd"
|
|
|
|
multipathd_services:
|
|
multipathd:
|
|
container_name: multipathd
|
|
group: multipathd
|
|
enabled: true
|
|
ipc_mode: "host"
|
|
privileged: True
|
|
image: "{{ multipathd_image_full }}"
|
|
volumes: "{{ multipathd_default_volumes + multipathd_extra_volumes }}"
|
|
|
|
|
|
####################
|
|
# Docker
|
|
####################
|
|
multipathd_install_type: "{{ kolla_install_type }}"
|
|
multipathd_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ multipathd_install_type }}-multipathd"
|
|
multipathd_tag: "{{ openstack_tag }}"
|
|
multipathd_image_full: "{{ multipathd_image }}:{{ multipathd_tag }}"
|
|
|
|
multipathd_default_volumes:
|
|
- "{{ node_config_directory }}/multipathd/:{{ container_config_directory }}/:ro"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "{{ '/etc/timezone:/etc/timezone:ro' if kolla_base_distro in ['debian', 'ubuntu'] else '' }}"
|
|
- "/dev/:/dev/"
|
|
- "/run/:/run/:shared"
|
|
- "/sys/fs/cgroup:/sys/fs/cgroup:ro"
|
|
- "/lib/modules:/lib/modules:ro"
|
|
- "/sys/kernel/config:/configfs"
|
|
- "cinder:/var/lib/cinder"
|
|
- "iscsi_info:/etc/iscsi"
|
|
multipathd_extra_volumes: "{{ default_extra_volumes }}"
|