summaryrefslogtreecommitdiffstats
path: root/COPYING-LGPL3 (unfollow)
Commit message (Collapse)AuthorFilesLines
2024-11-05test/crimson/test_backfill: support projected log and pg logMatan Breizman1-1/+12
Signed-off-by: Matan Breizman <mbreizma@redhat.com>
2024-11-05crimson/osd/pg: introduce projected_logMatan Breizman5-16/+52
Signed-off-by: Matan Breizman <mbreizma@redhat.com>
2024-11-04doc/rgw/notification: add missing admin commandsYuval Lifshitz2-15/+20
also remove obsolete admin commands Fixes: https://tracker.ceph.com/issues/68818 Signed-off-by: Yuval Lifshitz <ylifshit@ibm.com>
2024-11-04mgr/dashboard: improve the kcli bootstrap processNizamudeen A7-4/+154
I have a new script added for starting the kcli cluster called quick-bootstrap.sh The goal is to use that script to download the ceph image on local (rather than inside vm) and then copy them over to all the vms that is being spawned by the kcli. This way all the hosts will get the ceph image which will make the deployment loads faster. Another thing I added is to add some dnf.conf to improve parallel_downlaods and get the fastest server to install deps eg: ``` ╰─$ ./quick-bootstrap.sh -h 255 ↵ + set +x Usage: ./quick-bootstrap.sh [OPTIONS] Options: -u, --use-cached-image Uses the existing podman image in local. Only use this if there is such an image present. -dir, --ceph-dir Use this to provide the local ceph directory. eg. --ceph-dir=/path/to/ceph -e, --expanded-cluster To add all the hosts and deploy OSDs on top of it. -h, --help Display this help message. Example: ./quick-bootstrap.sh --use-cached-image ``` ``` ./quick-bootstrap.sh -u --ceph-dir=/home/nia/projects/ceph ``` Signed-off-by: Nizamudeen A <nia@redhat.com>
2024-11-04mgr/cephadm: orch host drain command does not return error for invalid hostnameShweta Bhosale2-4/+12
Fixes: https://tracker.ceph.com/issues/68681 Signed-off-by: Shweta Bhosale <Shweta.Bhosale1@ibm.com>
2024-11-03mon/nvmeofgw*: fix no-listeners FSM, fix detection of no-listenersLeonid Chernin2-7/+23
condition Signed-off-by: Leonid Chernin <leonidc@il.ibm.com>
2024-11-01ceph.spec.in: Add an option to disable dwzZack Cerza1-0/+6
We disabled dwz in 2017, then re-enabled it in 2021. In my tests I observe dwz adding about 50% to build times in exchange for 33% space-saving. Signed-off-by: Zack Cerza <zack@redhat.com>
2024-11-01doc: s/Whereas,/Although/Zac Dover4-4/+4
Change the subordinating conjunction "Whereas" followed by a comma to the less grammatically-incorrect "Although". I've been meaning to do this since 22 Mar 2023. Signed-off-by: Zac Dover <zac.dover@proton.me>
2024-10-30cephadm: update default image imports to point to common locationAdam King13-112/+47
Additionally, remove the image defaults from the two previous locations and update the check for the number of instances of "quay" and "docker" in these areas respectively. Fixes: https://tracker.ceph.com/issues/68120 Signed-off-by: Adam King <adking@redhat.com>
2024-10-30cephadm: add python-common/ceph to MYPYPATH and pytest PYTHONPATHAdam King1-0/+8
Otherwise the unit tests will fail trying to import from here. Signed-off-by: Adam King <adking@redhat.com>
2024-10-30python-common: add spot in python-common for cephadm default imagesAdam King2-0/+21
To be shared between the binary and mgr module. Signed-off-by: Adam King <adking@redhat.com>
2024-10-30cephadm: add python-common/ceph to cephadm zipappAdam King1-0/+3
We want to use this location for files to be shared between the cephadm binary and cephadm mgr module so it must be included as part of the zipapp Signed-off-by: Adam King <adking@redhat.com>
2024-10-30test/pybind: update to test_fallocate for mode 0Milind Changire1-2/+2
Signed-off-by: Milind Changire <mchangir@redhat.com>