summaryrefslogtreecommitdiffstats
path: root/src/test/centos-8 (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-05-06doc/rados/configuration: correct space amp in bluestore-config-ref.rstAnthony D'Atri1-3/+3
Signed-off-by: Anthony D'Atri <anthonyeleven@users.noreply.github.com>
2023-05-06doc/cephfs: repairing inaccessible FSesZac Dover1-0/+58
Add a procedure to doc/cephfs/troubleshooting.rst that explains how to restore access to FileSystems that became inaccessible after post-Nautilus upgrades. The procedure included here was written by Harry G Coin, and merely lightly edited by me. I include him here as a "co-author", but it should be noted that he did the heavy lifting on this. See the email thread here for more context: https://lists.ceph.io/hyperkitty/list/ceph-users@ceph.io/message/HS5FD3QFR77NAKJ43M2T5ZC25UYXFLNW/ Co-authored-by: Harry G Coin <hgcoin@gmail.com> Signed-off-by: Zac Dover <zac.dover@proton.me>
2023-05-05script: improve author scraping on cherry picksLaura Flores1-2/+9
Signed-off-by: Laura Flores <lflores@redhat.com>
2023-05-05script: handle a corner case for author in cherry-picked PRsLaura Flores1-0/+2
Signed-off-by: Laura Flores <lflores@redhat.com>
2023-05-05script: fix author and title for cherry picksLaura Flores1-12/+33
Signed-off-by: Laura Flores <lflores@redhat.com>
2023-05-04doc: Use `ceph osd crush tree` command to display weight set weightsJames Lakin1-1/+1
The previous `ceph osd tree` doesn't show pool-defined weight-sets as the above documentation suggests. Signed-off-by: James Lakin <james@jameslakin.co.uk>
2023-05-04mgr/dashboard: Edit ceph authx usersPedro Gonzalez Gomez13-52/+234
Signed-off-by: Pedro Gonzalez Gomez <pegonzal@redhat.com> Signed-off-by: Pere Diaz Bou <pdiazbou@redhat.com>
2023-05-03mgr/dashboard: add support for editing RGW zoneavanthakkar22-90/+1184
Fixes: https://tracker.ceph.com/issues/59328 Signed-off-by: Avan Thakkar <athakkar@redhat.com> Co-authored-by: Aashish Sharma <aasharma@redhat.com>
2023-05-03doc/rados: stretch-mode: stretch cluster issuesZac Dover1-20/+33
Edit "Stretch Cluster Issues", which might better be called "Netsplits" or "Recognizing Netsplits". Signed-off-by: Zac Dover <zac.dover@proton.me>
2023-05-03crimson/osd/objclass: Compilation warningMatan Breizman1-1/+1
``` In copy constructor ‘ceph::buffer::v15_2_0::list::list(const ceph::buffer::v15_2_0::list&)’, inlined from ‘OSDOp::OSDOp(const OSDOp&)’ at ../src/osd/osd_types.h:4081:8, inlined from ‘int cls_cxx_snap_revert(cls_method_context_t, snapid_t)’ at ../src/crimson/osd/objclass.cc:279:37: ../src/include/buffer.h:945:20: warning: ‘op.OSDOp::indata.ceph::buffer::v15_2_0::list::_len’ is used uninitialized [-Wuninitialized] 945 | _len(other._len), | ~~~~~~^~~~ ../src/crimson/osd/objclass.cc: In function ‘int cls_cxx_snap_revert(cls_method_context_t, snapid_t)’: ../src/crimson/osd/objclass.cc:279:9: note: ‘op’ declared here 279 | OSDOp op{op = CEPH_OSD_OP_ROLLBACK}; | ``` Signed-off-by: Matan Breizman <mbreizma@redhat.com>
2023-05-03crimson/osd/ops_executer: Fix usage of Message's connectionMatan Breizman2-3/+21
See #50835. In crimson, conn is independently maintained outside Message. Therefore, when trying to use the message's connection for `get_orig_source_inst()` we won't be able to get the peer address. Fixes: https://tracker.ceph.com/issues/59589 Signed-off-by: Matan Breizman <mbreizma@redhat.com>
2023-05-03Revert "common/tracer: fix decoding when jaeger tracing is disabled"Matan Breizman1-15/+2
This reverts commit 3701ffa6733b001d4278a0b68395c5efe2382f25. Signed-off-by: Matan Breizman <mbreizma@redhat.com>
2023-05-03doc/rados: edit stretch-mode.rstZac Dover1-22/+27
Edit "Stretch Mode Limitations" (renamed "Limitations of Stretch Mode" in this commit) in doc/rados/operations/stretch-mode.rst. Co-authored-by: Greg Farnum <gfarnum@redhat.com> Co-authored-by: Anthony D'Atri <anthony.datri@gmail.com> Signed-off-by: Zac Dover <zac.dover@proton.me>
2023-05-02rgw/archive: Correct the bucket sync status cmd outputSoumya Koduri1-1/+1
Signed-off-by: Soumya Koduri <skoduri@redhat.com>
2023-05-02rgw: Disable logging for datalog and bilog if zone doesn't export dataSoumya Koduri3-8/+12
Zones (such as archive zone) which do not export data should have sync logging disabled. Fixes# https://tracker.ceph.com/issues/59106 Signed-off-by: Soumya Koduri <skoduri@redhat.com>
2023-05-01mgr/cephadm: prefer same hosts as related service daemons when picking ↵Adam King3-2/+69
arbitrary hosts For now, just for linking ingress services and their backend services. The idea is if one, or both, of the ingress service and backend service is using a count, to try and get them to deploy their daemons on the same host(s). If the placements have explicit placements (not using count) we still stick to those placements regardless. This should enable something like specifying a host for the backend service and leaving the ingress placement as just "count: 1" and having the ingress service get on the same host as the backend service daemon. This is particularly useful for the keepalive-only (VIP but no haproxy) over NFS setup where the keepalive must share a host with the NFS to function, but will also be useful for other VIP only setups we may do in the future. Signed-off-by: Adam King <adking@redhat.com>