7b6fbdf41d
This was an attempt to get storage_interface to work properly but that work will not be completed and functional this cycle. There are design topics that need to be discussed about it that were brought to light by the RAX gate failing for it. TrivialFix Change-Id: I65579f9e0e0dcf3fa51c0ea031ff474145457c40
27 lines
886 B
YAML
27 lines
886 B
YAML
---
|
|
- name: Generating initial Ceph keyrings and monmap
|
|
kolla_docker:
|
|
action: "start_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
detach: False
|
|
environment:
|
|
KOLLA_BOOTSTRAP:
|
|
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
|
|
MON_IP: "{{ hostvars[inventory_hostname]['ansible_' + storage_interface]['ipv4']['address'] }}"
|
|
HOSTNAME: "{{ hostvars[inventory_hostname]['ansible_' + storage_interface]['ipv4']['address'] }}"
|
|
image: "{{ ceph_mon_image_full }}"
|
|
labels:
|
|
BOOTSTRAP:
|
|
name: "bootstrap_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"
|
|
|
|
- include: start_mons.yml
|
|
|
|
- name: Setting host for cluster files
|
|
set_fact:
|
|
delegate_host: "{{ ansible_hostname }}"
|