mirror of
https://github.com/ceph/ceph
synced 2025-02-23 11:07:35 +00:00
upstart, ceph-create-keys: Make client.admin key generation automatic.
This should help simplify Chef etc deployments. Now (when using the Upstart jobs), when a ceph-mon is started, ceph-create-admin-key is triggered. If /etc/ceph/$cluster.client.admin.keyring already exists, it does nothing; otherwise, it waits for ceph-mon to reach quorum, and then does a "ceph auth get-or-create" to create the key, and writes it atomically to disk. The equivalent code can be removed from the Chef cookbook once this is in.
This commit is contained in:
parent
0de719567f
commit
f2c4510848
@ -329,6 +329,7 @@ fi
|
|||||||
%{_libdir}/rados-classes/libcls_lock.so*
|
%{_libdir}/rados-classes/libcls_lock.so*
|
||||||
/sbin/ceph-disk-activate
|
/sbin/ceph-disk-activate
|
||||||
/sbin/ceph-disk-prepare
|
/sbin/ceph-disk-prepare
|
||||||
|
/sbin/ceph-create-keys
|
||||||
|
|
||||||
#################################################################################
|
#################################################################################
|
||||||
%files fuse
|
%files fuse
|
||||||
|
1
debian/ceph.install
vendored
1
debian/ceph.install
vendored
@ -8,6 +8,7 @@ usr/bin/ceph-osd
|
|||||||
usr/bin/ceph-debugpack
|
usr/bin/ceph-debugpack
|
||||||
sbin/ceph-disk-prepare usr/sbin/
|
sbin/ceph-disk-prepare usr/sbin/
|
||||||
sbin/ceph-disk-activate usr/sbin/
|
sbin/ceph-disk-activate usr/sbin/
|
||||||
|
sbin/ceph-create-keys usr/sbin/
|
||||||
sbin/mkcephfs
|
sbin/mkcephfs
|
||||||
usr/lib/ceph/ceph_common.sh
|
usr/lib/ceph/ceph_common.sh
|
||||||
usr/lib/rados-classes/*
|
usr/lib/rados-classes/*
|
||||||
|
@ -28,7 +28,8 @@ bin_DEBUGPROGRAMS =
|
|||||||
sbin_PROGRAMS =
|
sbin_PROGRAMS =
|
||||||
sbin_SCRIPTS = \
|
sbin_SCRIPTS = \
|
||||||
ceph-disk-prepare \
|
ceph-disk-prepare \
|
||||||
ceph-disk-activate
|
ceph-disk-activate \
|
||||||
|
ceph-create-keys
|
||||||
bin_SCRIPTS = ceph-run $(srcdir)/ceph-clsinfo ceph-debugpack ceph-rbdnamer
|
bin_SCRIPTS = ceph-run $(srcdir)/ceph-clsinfo ceph-debugpack ceph-rbdnamer
|
||||||
dist_bin_SCRIPTS =
|
dist_bin_SCRIPTS =
|
||||||
# C/C++ tests to build will be appended to this
|
# C/C++ tests to build will be appended to this
|
||||||
@ -964,7 +965,8 @@ EXTRA_DIST += \
|
|||||||
$(srcdir)/upstart/radosgw-all.conf \
|
$(srcdir)/upstart/radosgw-all.conf \
|
||||||
$(srcdir)/upstart/radosgw-all-starter.conf \
|
$(srcdir)/upstart/radosgw-all-starter.conf \
|
||||||
ceph-disk-prepare \
|
ceph-disk-prepare \
|
||||||
ceph-disk-activate
|
ceph-disk-activate \
|
||||||
|
ceph-create-keys
|
||||||
|
|
||||||
|
|
||||||
EXTRA_DIST += $(srcdir)/$(shell_scripts:%=%.in)
|
EXTRA_DIST += $(srcdir)/$(shell_scripts:%=%.in)
|
||||||
|
145
src/ceph-create-keys
Executable file
145
src/ceph-create-keys
Executable file
@ -0,0 +1,145 @@
|
|||||||
|
#!/usr/bin/python
|
||||||
|
import argparse
|
||||||
|
import errno
|
||||||
|
import json
|
||||||
|
import logging
|
||||||
|
import os
|
||||||
|
import subprocess
|
||||||
|
import sys
|
||||||
|
import time
|
||||||
|
|
||||||
|
|
||||||
|
log = logging.getLogger(os.path.basename(sys.argv[0]))
|
||||||
|
|
||||||
|
QUORUM_STATES = ['leader', 'peon']
|
||||||
|
|
||||||
|
def wait_for_quorum(cluster, mon_id):
|
||||||
|
while True:
|
||||||
|
p = subprocess.Popen(
|
||||||
|
args=[
|
||||||
|
'ceph',
|
||||||
|
'--cluster={cluster}'.format(cluster=cluster),
|
||||||
|
'--admin-daemon=/var/run/ceph/{cluster}-mon.{mon_id}.asok'.format(
|
||||||
|
cluster=cluster,
|
||||||
|
mon_id=mon_id,
|
||||||
|
),
|
||||||
|
'mon_status',
|
||||||
|
],
|
||||||
|
stdout=subprocess.PIPE,
|
||||||
|
)
|
||||||
|
out = p.stdout.read()
|
||||||
|
returncode = p.wait()
|
||||||
|
if returncode != 0:
|
||||||
|
log.info('ceph-mon admin socket not ready yet.')
|
||||||
|
time.sleep(1)
|
||||||
|
continue
|
||||||
|
|
||||||
|
data = json.loads(out)
|
||||||
|
state = data['state']
|
||||||
|
if state not in QUORUM_STATES:
|
||||||
|
log.info('ceph-mon is not in quorum: %r', state)
|
||||||
|
time.sleep(1)
|
||||||
|
continue
|
||||||
|
|
||||||
|
break
|
||||||
|
|
||||||
|
|
||||||
|
def get_key(cluster, mon_id):
|
||||||
|
path = '/etc/ceph/{cluster}.client.admin.keyring'.format(
|
||||||
|
cluster=cluster,
|
||||||
|
)
|
||||||
|
if os.path.exists(path):
|
||||||
|
log.info('Key exists already: %s', path)
|
||||||
|
return
|
||||||
|
tmp = '{path}.{pid}.tmp'.format(
|
||||||
|
path=path,
|
||||||
|
pid=os.getpid(),
|
||||||
|
)
|
||||||
|
wait_for_quorum(cluster=cluster, mon_id=mon_id)
|
||||||
|
while True:
|
||||||
|
try:
|
||||||
|
with file(tmp, 'w') as f:
|
||||||
|
os.fchmod(f.fileno(), 0600)
|
||||||
|
log.info('Talking to monitor...')
|
||||||
|
returncode = subprocess.call(
|
||||||
|
args=[
|
||||||
|
'ceph',
|
||||||
|
'--cluster={cluster}'.format(cluster=cluster),
|
||||||
|
'--name=mon.',
|
||||||
|
'--keyring=/var/lib/ceph/mon/{cluster}-{mon_id}/keyring'.format(
|
||||||
|
cluster=cluster,
|
||||||
|
mon_id=mon_id,
|
||||||
|
),
|
||||||
|
'auth',
|
||||||
|
'get-or-create',
|
||||||
|
'client.admin',
|
||||||
|
'mon', 'allow *',
|
||||||
|
'osd', 'allow *',
|
||||||
|
'mds', 'allow',
|
||||||
|
],
|
||||||
|
stdout=f,
|
||||||
|
)
|
||||||
|
if returncode != 0:
|
||||||
|
log.info('Cannot get or create admin key')
|
||||||
|
time.sleep(1)
|
||||||
|
continue
|
||||||
|
|
||||||
|
os.rename(tmp, path)
|
||||||
|
break
|
||||||
|
finally:
|
||||||
|
try:
|
||||||
|
os.unlink(tmp)
|
||||||
|
except OSError as e:
|
||||||
|
if e.errno == errno.ENOENT:
|
||||||
|
pass
|
||||||
|
else:
|
||||||
|
raise
|
||||||
|
|
||||||
|
|
||||||
|
def parse_args():
|
||||||
|
parser = argparse.ArgumentParser(
|
||||||
|
description='Create Ceph client.admin key when ceph-mon is ready',
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
'-v', '--verbose',
|
||||||
|
action='store_true', default=None,
|
||||||
|
help='be more verbose',
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
'--cluster',
|
||||||
|
metavar='NAME',
|
||||||
|
help='name of the cluster',
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
'--id', '-i',
|
||||||
|
metavar='ID',
|
||||||
|
help='id of a ceph-mon that is coming up',
|
||||||
|
required=True,
|
||||||
|
)
|
||||||
|
parser.set_defaults(
|
||||||
|
cluster='ceph',
|
||||||
|
)
|
||||||
|
parser.set_defaults(
|
||||||
|
# we want to hold on to this, for later
|
||||||
|
prog=parser.prog,
|
||||||
|
)
|
||||||
|
args = parser.parse_args()
|
||||||
|
return args
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
args = parse_args()
|
||||||
|
|
||||||
|
loglevel = logging.INFO
|
||||||
|
if args.verbose:
|
||||||
|
loglevel = logging.DEBUG
|
||||||
|
|
||||||
|
logging.basicConfig(
|
||||||
|
level=loglevel,
|
||||||
|
)
|
||||||
|
|
||||||
|
get_key(cluster=args.cluster, mon_id=args.id)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
main()
|
7
src/upstart/ceph-create-keys.conf
Normal file
7
src/upstart/ceph-create-keys.conf
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
description "Create Ceph client.admin key when possible"
|
||||||
|
|
||||||
|
start on started ceph-mon
|
||||||
|
|
||||||
|
task
|
||||||
|
|
||||||
|
exec /usr/sbin/ceph-create-keys --cluster="${cluster:-ceph}" -i "${id:-$(hostname)}"
|
Loading…
Reference in New Issue
Block a user