1e2dfad50b
Ceph was not properly using storage network. TrivialFix Change-Id: Ibf3da5d19cd2ca874d251b455a7eb856154fc3f7
42 lines
1.0 KiB
YAML
42 lines
1.0 KiB
YAML
---
|
|
- name: Looking up hostname
|
|
command: getent hosts {{ hostvars[inventory_hostname]['ansible_' + storage_interface]['ipv4']['address'] }}
|
|
changed_when: False
|
|
register: storage_hostname
|
|
|
|
- name: Setting storage hostname
|
|
set_fact:
|
|
storage_hostname: "{{ storage_hostname.stdout.split()[1] }}"
|
|
|
|
- name: Ensuring config directories exist
|
|
file:
|
|
path: "{{ node_config_directory }}/{{ item }}"
|
|
state: "directory"
|
|
recurse: yes
|
|
with_items:
|
|
- "ceph-mon"
|
|
- "ceph-osd"
|
|
- "ceph-rgw"
|
|
|
|
- name: Copying over config.json files for services
|
|
template:
|
|
src: "{{ item }}.json.j2"
|
|
dest: "{{ node_config_directory }}/{{ item }}/config.json"
|
|
with_items:
|
|
- "ceph-mon"
|
|
- "ceph-osd"
|
|
- "ceph-rgw"
|
|
|
|
- name: Copying over ceph.conf
|
|
merge_configs:
|
|
vars:
|
|
service_name: "{{ item }}"
|
|
sources:
|
|
- "{{ role_path }}/templates/ceph.conf.j2"
|
|
- "/etc/kolla/config/ceph.conf"
|
|
dest: "{{ node_config_directory }}/{{ item }}/ceph.conf"
|
|
with_items:
|
|
- "ceph-mon"
|
|
- "ceph-osd"
|
|
- "ceph-rgw"
|