8af400733d
This intentionally leaves out rabbitmq from this patchset. It will require additional work to remove its data container UpgradeImpact Partially-Implements: blueprint docker-named-volumes Change-Id: Id68b8e43a3c077ef4f4f4d67ea34d0692e66eef7
25 lines
800 B
YAML
25 lines
800 B
YAML
---
|
|
- name: Generating initial Ceph keyrings and monmap
|
|
kolla_docker:
|
|
action: "start_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
environment:
|
|
KOLLA_BOOTSTRAP:
|
|
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
|
|
MON_IP: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
|
|
image: "{{ ceph_mon_image_full }}"
|
|
name: "ceph_mon"
|
|
restart_policy: "never"
|
|
volumes:
|
|
- "{{ node_config_directory }}/ceph-mon/:{{ container_config_directory }}/:ro"
|
|
- "ceph_mon:/var/lib/ceph"
|
|
- "ceph_mon_config:/etc/ceph"
|
|
|
|
- name: Waiting for a few settings for cluster to generate keys
|
|
command: sleep 3
|
|
changed_when: False
|
|
|
|
- name: Setting host for cluster files
|
|
set_fact:
|
|
delegate_host: "{{ ansible_hostname }}"
|