94162bd08f
This brings Kolla images inline with FHS and should make finding locations of things more consistent and reliable with the linux world at large. Change-Id: Iece5b4da4bace0fb8b1f41a65ab2c852ec73e6f8 Closes-Bug: #1485742
33 lines
1.1 KiB
Django/Jinja
33 lines
1.1 KiB
Django/Jinja
{
|
|
"command": "/usr/bin/ceph-mon -d -i {{ ansible_hostname }} --public-addr {{ hostvars[inventory_hostname]['ansible_' + storage_interface]['ipv4']['address'] }}:6789",
|
|
"config_files": [
|
|
{
|
|
"source": "{{ container_config_directory }}/ceph.conf",
|
|
"dest": "/etc/ceph/ceph.conf",
|
|
"owner": "ceph",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/ceph.client.admin.keyring",
|
|
"dest": "/etc/ceph/ceph.client.admin.keyring",
|
|
"owner": "ceph",
|
|
"perm": "0600",
|
|
"optional": "True"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/ceph.client.mon.keyring",
|
|
"dest": "/etc/ceph/ceph.client.mon.keyring",
|
|
"owner": "ceph",
|
|
"perm": "0600",
|
|
"optional": "True"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/ceph.monmap",
|
|
"dest": "/etc/ceph/ceph.monmap",
|
|
"owner": "ceph",
|
|
"perm": "0600",
|
|
"optional": "True"
|
|
}
|
|
]
|
|
}
|