git push --set-upstream origin merlin
This commit is contained in:
8
roles/nova-compute/files/ceph.client.nova.keyring
Normal file
8
roles/nova-compute/files/ceph.client.nova.keyring
Normal file
@ -0,0 +1,8 @@
|
||||
$ANSIBLE_VAULT;1.1;AES256
|
||||
35383561643837376265356534363538386266646466313034383231313261343566626338613433
|
||||
3464373930663738316366383835336235636137356431390a626334343661353733616366633963
|
||||
33306166646465356531666364656236633766653639393636396234663538373136373266353136
|
||||
3433626231323638300a306437383862316463363533373131343561303934326135663532656630
|
||||
38616139373964313963326539346338353664613035633436326433343835343030653936363836
|
||||
65313537623937663438663734323265323634376238373761626236353665613931616566306536
|
||||
343334346138313539333338336663343863
|
1
roles/nova-compute/files/uuid
Normal file
1
roles/nova-compute/files/uuid
Normal file
@ -0,0 +1 @@
|
||||
b5044271-1918-4070-822c-f19ed14d7494
|
2
roles/nova-compute/tasks/ceph.conf
Normal file
2
roles/nova-compute/tasks/ceph.conf
Normal file
@ -0,0 +1,2 @@
|
||||
[client.nova]
|
||||
keyring = /etc/ceph/ceph.client.nova.keyring
|
@ -16,6 +16,27 @@
|
||||
force: True
|
||||
tags: pull
|
||||
|
||||
- name: Make build and persistent directories
|
||||
file:
|
||||
path: "{{ item }}"
|
||||
state: directory
|
||||
mode: 0777
|
||||
with_items:
|
||||
- /srv/nova-compute
|
||||
- /srv/nova-compute/etc/ceph
|
||||
|
||||
- name: copy ceph-client configurationfile
|
||||
copy:
|
||||
src: files/ceph.conf
|
||||
dest: /srv/nova-compute/etc/ceph/ceph.conf
|
||||
mode: 644
|
||||
|
||||
- name: copy ceph-client-keyring
|
||||
copy:
|
||||
src: files/ceph.client.nova.keyring
|
||||
dest: /srv/nova-compute/etc/ceph/ceph.client.nova.keyring
|
||||
mode: 644
|
||||
|
||||
- name: install service file.
|
||||
template:
|
||||
src: templates/nova-compute.service
|
||||
|
Reference in New Issue
Block a user