mirror of https://github.com/ceph/ceph-ansible.git
Merge pull request #327 from ceph/generate-monkey
Generate initial monitor key dynamicallypull/328/head
commit
6bdf09d166
|
@ -105,7 +105,7 @@ dummy:
|
|||
## Monitor options
|
||||
#
|
||||
#monitor_interface: interface
|
||||
#monitor_secret:
|
||||
#monitor_secret: "{{ monitor_keyring.stdout }}"
|
||||
#mon_osd_down_out_interval: 600
|
||||
#mon_osd_min_down_reporters: 7 # number of OSDs per host + 1
|
||||
#mon_clock_drift_allowed: .15
|
||||
|
|
|
@ -11,7 +11,7 @@ dummy:
|
|||
|
||||
# ACTIVATE BOTH FSID AND MONITOR_SECRET VARIABLES FOR NON-VAGRANT DEPLOYMENT
|
||||
#fsid: "{{ cluster_uuid.stdout }}"
|
||||
#monitor_secret:
|
||||
#monitor_secret: "{{ monitor_keyring.stdout }}"
|
||||
#cephx: true
|
||||
|
||||
# CephFS
|
||||
|
|
|
@ -14,10 +14,6 @@
|
|||
not ceph_stable_rh_storage_cdn_install and
|
||||
not ceph_stable_rh_storage_iso_install
|
||||
|
||||
- name: make sure a monitor secret is defined
|
||||
fail: msg"monitor_secret must be defined. Go edit group_vars/all or read https://github.com/ceph/ceph-ansible/wiki"
|
||||
when: monitor_secret is not defined
|
||||
|
||||
- name: make sure journal_size configured
|
||||
fail: msg="journal_size must be configured. See http://ceph.com/docs/master/rados/configuration/osd-config-ref/"
|
||||
when: journal_size|int == 0
|
||||
|
|
|
@ -9,7 +9,7 @@ rgw_group_name: rgws
|
|||
|
||||
# ACTIVATE BOTH FSID AND MONITOR_SECRET VARIABLES FOR NON-VAGRANT DEPLOYMENT
|
||||
fsid: "{{ cluster_uuid.stdout }}"
|
||||
#monitor_secret:
|
||||
monitor_secret: "{{ monitor_keyring.stdout }}"
|
||||
cephx: true
|
||||
|
||||
# CephFS
|
||||
|
|
|
@ -1,7 +1,22 @@
|
|||
---
|
||||
- name: generate monitor initial keyring
|
||||
local_action: >
|
||||
shell python -c "import os ; import struct ; import time; import base64 ; key = os.urandom(16) ; header = struct.pack('<hiih',1,int(time.time()),0,len(key)) ; print base64.b64encode(header + key)' > fetch/monitor_keyring.conf"
|
||||
creates=fetch/monitor_keyring.conf
|
||||
register: monitor_keyring
|
||||
sudo: false
|
||||
|
||||
- name: read monitor initial keyring if it already exists
|
||||
local_action: >
|
||||
command cat fetch/monitor_keyring.conf
|
||||
removes=fetch/monitor_keyring.conf
|
||||
changed_when: false
|
||||
register: monitor_keyring
|
||||
sudo: false
|
||||
|
||||
- name: create monitor initial keyring
|
||||
command: >
|
||||
ceph-authtool /var/lib/ceph/tmp/keyring.mon.{{ ansible_hostname }} --create-keyring --name=mon. --add-key={{ monitor_secret | mandatory }} --cap mon 'allow *'
|
||||
ceph-authtool /var/lib/ceph/tmp/keyring.mon.{{ ansible_hostname }} --create-keyring --name=mon. --add-key={{ monitor_secret }} --cap mon 'allow *'
|
||||
creates=/var/lib/ceph/tmp/keyring.mon.{{ ansible_hostname }}
|
||||
|
||||
- name: set initial monitor key permissions
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
- name: check if Ceph REST API is already started
|
||||
shell: "pgrep ceph-rest-api"
|
||||
changed_when: false
|
||||
ignore_errors: true
|
||||
register: restapi_status
|
||||
|
||||
|
|
Loading…
Reference in New Issue