diff options
author | Adam King <47704447+adk3798@users.noreply.github.com> | 2024-10-16 17:49:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-16 17:49:38 +0200 |
commit | 202c8358361958b9964129f06377679d01584404 (patch) | |
tree | 94fae1ceba265929c0b7404ce538fe0f7554a050 /src/cephadm | |
parent | Merge pull request #60077 from adk3798/cephadm-ganesha-conf-allow-set-io-flus... (diff) | |
parent | cephadm: add ability to continue on failure when applying multiple specs (diff) | |
download | ceph-202c8358361958b9964129f06377679d01584404.tar.xz ceph-202c8358361958b9964129f06377679d01584404.zip |
Merge pull request #59680 from adk3798/bootstrap-apply-spec-fail-continue
cephadm: add ability to continue on failure when applying multiple specs
Reviewed-by: John Mulligan <jmulligan@redhat.com>
Diffstat (limited to 'src/cephadm')
-rwxr-xr-x | src/cephadm/cephadm.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cephadm/cephadm.py b/src/cephadm/cephadm.py index 1ab98a0ac4f..261bed8e793 100755 --- a/src/cephadm/cephadm.py +++ b/src/cephadm/cephadm.py @@ -2954,7 +2954,7 @@ def command_bootstrap(ctx): mounts = {} mounts[pathify(ctx.apply_spec)] = '/tmp/spec.yml:ro' try: - out = cli(['orch', 'apply', '-i', '/tmp/spec.yml'], extra_mounts=mounts) + out = cli(['orch', 'apply', '--continue-on-error', '-i', '/tmp/spec.yml'], extra_mounts=mounts) logger.info(out) except Exception: ctx.error_code = -errno.EINVAL |