mirror of https://github.com/ceph/ceph-ansible.git
create a calamari task in ceph-mon
Signed-off-by: Alfredo Deza <adeza@redhat.com>pull/614/head
parent
8b64c6c8ed
commit
b0a3f5b06d
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
- name: install calamari server
|
||||
apt:
|
||||
pkg: calamari-server
|
||||
state: present
|
||||
when: ansible_os_family == 'Debian'
|
||||
tags:
|
||||
- package-install
|
||||
|
||||
- name: install calamari server
|
||||
yum:
|
||||
pkg: calamari-server
|
||||
state: present
|
||||
when: ansible_os_family == 'RedHat'
|
||||
tags:
|
||||
- package-install
|
||||
|
||||
- name: initialize the calamari server api
|
||||
command: calamari-ctl initialize
|
Loading…
Reference in New Issue