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
81 lines
2.8 KiB
YAML
81 lines
2.8 KiB
YAML
---
|
|
project_name: "iscsi"
|
|
|
|
iscsi_services:
|
|
iscsid:
|
|
container_name: iscsid
|
|
group: iscsid
|
|
enabled: "{{ enable_iscsid_for_cinder or enable_iscsid_for_ironic }}"
|
|
image: "{{ iscsid_image_full }}"
|
|
ipc_mode: "host"
|
|
privileged: True
|
|
volumes: "{{ iscsid_default_volumes + iscsid_extra_volumes }}"
|
|
dimensions: "{{ iscsid_dimensions }}"
|
|
tgtd:
|
|
container_name: tgtd
|
|
group: tgtd
|
|
enabled: "{{ enable_tgtd }}"
|
|
image: "{{ tgtd_image_full }}"
|
|
ipc_mode: "host"
|
|
privileged: True
|
|
volumes: "{{ tgtd_default_volumes + tgtd_extra_volumes }}"
|
|
dimensions: "{{ tgtd_dimensions }}"
|
|
|
|
|
|
####################
|
|
# Docker
|
|
####################
|
|
iscsi_install_type: "{{ kolla_install_type }}"
|
|
iscsi_tag: "{{ openstack_tag }}"
|
|
|
|
iscsid_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ iscsi_install_type }}-iscsid"
|
|
iscsid_tag: "{{ iscsi_tag }}"
|
|
iscsid_image_full: "{{ iscsid_image }}:{{ iscsid_tag }}"
|
|
|
|
tgtd_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ iscsi_install_type }}-tgtd"
|
|
tgtd_tag: "{{ iscsi_tag }}"
|
|
tgtd_image_full: "{{ tgtd_image }}:{{ tgtd_tag }}"
|
|
|
|
iscsid_dimensions: "{{ default_container_dimensions }}"
|
|
tgtd_dimensions: "{{ default_container_dimensions }}"
|
|
|
|
iscsid_default_volumes:
|
|
- "{{ node_config_directory }}/iscsid/:{{ 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"
|
|
tgtd_default_volumes:
|
|
- "{{ node_config_directory }}/tgtd/:{{ 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"
|
|
iscsid_extra_volumes: "{{ default_extra_volumes }}"
|
|
tgtd_extra_volumes: "{{ default_extra_volumes }}"
|
|
|
|
enable_iscsid_for_cinder: >-
|
|
{{ (inventory_hostname in groups['compute']
|
|
or inventory_hostname in groups['cinder-backup']
|
|
or inventory_hostname in groups['cinder-volume'])
|
|
and enable_cinder | bool
|
|
and enable_cinder_backend_iscsi | bool }}
|
|
enable_iscsid_for_ironic: >-
|
|
{{ inventory_hostname in groups['ironic-conductor'] and enable_ironic | bool }}
|
|
enable_tgtd: >-
|
|
{{ enable_cinder | bool and
|
|
enable_cinder_backend_lvm | bool and
|
|
cinder_target_helper == "tgtadm" }}
|