Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mimic: qa/workunits/ceph-disk: --no-mon-config #21956

Merged
merged 1 commit into from
May 14, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions qa/workunits/ceph-disk/ceph-disk-no-lockbox
Original file line number Diff line number Diff line change
Expand Up @@ -1039,6 +1039,7 @@ def get_conf_with_default(cluster, variable):
out = _check_output(
args=[
'ceph-osd',
'--no-mon-config',
'--cluster={cluster}'.format(
cluster=cluster,
),
Expand Down Expand Up @@ -1327,16 +1328,19 @@ def get_free_partition_index(dev):
def check_journal_reqs(args):
_, _, allows_journal = command([
'ceph-osd', '--check-allows-journal',
'--no-mon-config',
'-i', '0',
'--cluster', args.cluster,
])
_, _, wants_journal = command([
'ceph-osd', '--check-wants-journal',
'--no-mon-config',
'-i', '0',
'--cluster', args.cluster,
])
_, _, needs_journal = command([
'ceph-osd', '--check-needs-journal',
'--no-mon-config',
'-i', '0',
'--cluster', args.cluster,
])
Expand Down Expand Up @@ -2462,6 +2466,7 @@ def mkfs(
command_check_call(
[
'ceph-osd',
'--no-mon-config',
'--cluster', cluster,
'--mkfs',
'--mkkey',
Expand All @@ -2478,6 +2483,7 @@ def mkfs(
command_check_call(
[
'ceph-osd',
'--no-mon-config',
'--cluster', cluster,
'--mkfs',
'--mkkey',
Expand Down Expand Up @@ -3361,6 +3367,7 @@ def get_space_osd_uuid(name, path):
out = _check_output(
args=[
'ceph-osd',
'--no-mon-config',
'--get-device-fsid',
path,
],
Expand Down