Files
ceph/debian/control
Kefu Chai 91de0e1933 cmake: migrate Python module installation from setup.py to pip
Replace 'setup.py install' with 'pip install --use-pep517' to fix
Cython compilation failures and eliminate deprecation warnings.

Problem Statement:
The build process for Cython modules involves preprocessing .pyx files
(e.g., generating rbd_processed.pyx from rbd.pyx) and then cythonizing
with specific compiler_directives. The previous approach using separate
'setup.py build' and 'setup.py install' commands caused this failure:

```
Error compiling Cython file:
------------------------------------------------------------
...
        """
        name = cstr(name, 'name')
        cdef:
            rados_ioctx_t _ioctx = convert_ioctx(ioctx)
            char *_name = name
            librbd_progress_fn_t _prog_cb = &no_op_progress_callback
                                            ^
------------------------------------------------------------

rbd_processed.pyx:781:44: Cannot assign type 'int (*)(uint64_t, uint64_t, void *) except? -1' to 'librbd_progress_fn_t'. Exception values are incompatible. Suggest adding 'noexcept' to type 'int (uint64_t, uint64_t, void *) except? -1'.
```

This occurs because:
1. 'setup.py build build_ext' successfully preprocesses and cythonizes
   with compiler_directives from setup.py's cythonize() call
2. 'setup.py install' internally triggers a rebuild that:
   - Regenerates the preprocessed .pyx files
   - Re-runs cythonize() through Cython.Distutils.build_ext
   - Does NOT apply the compiler_directives from setup.py
   - Fails on the regenerated files missing required directives

New Options Explained:

`--use-pep517`:
  Addresses deprecation warning:
  ```
    DEPRECATION: Building 'rados' using the legacy setup.py bdist_wheel
    mechanism, which will be removed in a future version. pip 25.3 will
    enforce this behaviour change.
  ```
  Uses the modern PEP 517 build backend which:
  - Performs a single build pass with all compiler_directives applied
  - Prevents the implicit rebuild that caused CompileError
  - Future-proofs against pip 25.3+ which will require this

`--no-build-isolation`:
  Ensures that environment variables set by CMake are respected:
  - CC, LDSHARED (compiler toolchain)
  - CPPFLAGS, LDFLAGS (compilation flags)
  - CYTHON_BUILD_DIR, CEPH_LIBDIR (build paths)

  Without this flag, pip would create an isolated build environment
  that ignores these critical build settings.

`--no-deps`:
  Prevents pip from attempting to install Python dependencies listed
  in setup.py's install_requires. All dependencies are managed by
  CMake and the distribution's package manager, not pip.

`--ignore-installed`:
  Addresses installation error when DESTDIR is set:
  ```
    ERROR: Could not install packages due to an OSError: [Errno 13]
    Permission denied: '/usr/lib/python3/dist-packages/rados-2.0.0.egg-info'

    OSError: [Errno 18] Invalid cross-device link:
    '/usr/lib/python3/dist-packages/rados-2.0.0.egg-info' -> '/tmp/pip-uninstall-...'
  ```
  This error occurs because pip detects an existing system installation
  and tries to uninstall it before installing to DESTDIR. With
  --ignore-installed, pip skips the uninstall step and directly installs
  to the DESTDIR staging directory, which is the correct behavior for
  packaging.

Removed Options:

`--install-layout=deb`:
  This Debian-specific patch to 'setup.py install' is no longer needed.
  Modern pip automatically detects the distribution and uses the correct
  layout (dist-packages on Debian, site-packages on RPM distros).

`--single-version-externally-managed`:
  This option was specific to 'setup.py install' to prevent egg
  installation. With pip, this is handled automatically.

`--record /dev/null`:
  No longer needed as pip manages installation records internally.

`egg_info --egg-base`:
  Not needed with pip as metadata is generated automatically during
  the build process.

Not added option:
`--root-user-action=ignore`: not added
  In this change, we installing a python module using pip with
  `fakeroot` before packaging it. But pip warned:
  ```
  Error: WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behavior with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
  ```
  But we use fakeroot on purpose, this option could have been added  to
  silence this warning. But it is not available in all supported pip
  versions. see
  2e1112a814

New environmental variable:
`DEB_PYTHON_INSTALL_LAYOUT=deb` is conditionally applied when packaging
for debian-derivative distributions. As pip does not support
`--install-layout` option. Since debian patches pip so it installs Python
modules into /usr/local/lib instead of /usr/lib where debian dh_install
helper looks for the content to be packaged, so we have to enforce the
debian layout using the environmental variable.

Working Directory Change:

Changed from `CMAKE_CURRENT_SOURCE_DIR` to `CMAKE_CURRENT_BINARY_DIR` to
keep pip's temporary files and logs in the build directory rather than
polluting the source tree.

Additional Dependencies:

Since the build process uses pip and creates a wheel distribution,
we need to add `pip` and `wheel` Python modules as build dependencies.

Python moduels packaging:

- with `--use-pep517`, pip creates .dist-info directoires as per PEP-517
instead of .egg-info, so we need to package the new metadata directory.

Future Improvements

We considered implementing a custom `build_templates` command or using
setuptools' `sub_commands` mechanism to avoid regenerating `*_processed.pyx`
files on every build (tracking dependencies via file modification times or
hash-based checks). However, to keep `setup.py` simple and maintainable,
we've deferred this optimization for future work. The current solution
using `pip install --use-pep517` ensures correct builds without additional
complexity.

This solution works correctly for both Debian and RPM packaging workflows,
both of which use DESTDIR-based staged installations.

Fixes: 719b749846
Signed-off-by: Kefu Chai <k.chai@proxmox.com>
2026-01-29 08:45:50 +08:00

1415 lines
49 KiB
Plaintext

Source: ceph
Section: admin
Priority: optional
Homepage: http://ceph.com/
Vcs-Git: git://github.com/ceph/ceph.git
Vcs-Browser: https://github.com/ceph/ceph
Maintainer: Ceph Maintainers <ceph-maintainers@ceph.io>
Uploaders: Ken Dreyer <kdreyer@redhat.com>,
Alfredo Deza <adeza@redhat.com>,
Build-Depends: automake,
bison,
cmake (>= 3.10.2),
cpio,
cython3,
debhelper (>= 10),
default-jdk,
dh-exec,
dh-python,
flex,
git,
golang,
gperf,
g++ (>= 11),
iproute2 <pkg.ceph.check>,
javahelper,
jq <pkg.ceph.check>,
jsonnet <pkg.ceph.check>,
junit4,
libarrow-dev <pkg.ceph.arrow>,
libparquet-dev <pkg.ceph.arrow>,
libaio-dev,
libbabeltrace-ctf-dev,
libbabeltrace-dev,
libblkid-dev (>= 2.17),
libc-ares-dev <pkg.ceph.crimson>,
libcrypto++-dev <pkg.ceph.crimson>,
libcryptsetup-dev,
libcap-ng-dev,
libcap-dev,
libcunit1-dev,
libcurl4-openssl-dev,
libevent-dev,
libexpat1-dev,
libffi-dev [!amd64] <pkg.ceph.check>,
libfmt-dev (>= 6.1.2),
libfuse-dev,
libgoogle-perftools-dev [i386 amd64 arm64],
libgnutls28-dev <pkg.ceph.crimson>,
libhwloc-dev <pkg.ceph.crimson>,
libibverbs-dev,
libicu-dev,
librdmacm-dev,
libkeyutils-dev,
libldap2-dev,
liblttng-ust-dev,
liblua5.3-dev,
liblz4-dev (>= 0.0~r131),
libnbd-dev,
libncurses-dev,
libnss3-dev,
liboath-dev,
libnuma-dev,
libpciaccess-dev <pkg.ceph.crimson>,
libsctp-dev <pkg.ceph.crimson>,
libsnappy-dev,
libsqlite3-dev,
libssl-dev,
libtool,
liblmdb-dev,
libudev-dev,
libnl-genl-3-dev,
libxml2-dev,
librabbitmq-dev,
libre2-dev,
libutf8proc-dev (>= 2.2.0),
librdkafka-dev,
libthrift-dev (>= 0.13.0),
libyaml-cpp-dev (>= 0.6),
libzstd-dev <pkg.ceph.check>,
libxmlsec1 <pkg.ceph.check>,
libxmlsec1-nss <pkg.ceph.check>,
libxmlsec1-openssl <pkg.ceph.check>,
libxmlsec1-dev <pkg.ceph.check>,
libdaxctl-dev (>= 63) <pkg.ceph.pmdk>,
libndctl-dev (>= 63) <pkg.ceph.pmdk>,
libpmem-dev <pkg.ceph.pmdk>,
libpmemobj-dev (>= 1.8) <pkg.ceph.pmdk>,
libprotobuf-dev <pkg.ceph.crimson>,
libxsimd-dev <!pkg.ceph.arrow>,
ninja-build,
nlohmann-json3-dev,
patch,
pkg-config,
prometheus <pkg.ceph.check>,
protobuf-compiler <pkg.ceph.crimson>,
python3-all-dev,
python3-cherrypy3,
python3-natsort,
python3-bcrypt <pkg.ceph.check>,
tox <pkg.ceph.check>,
python3-coverage <pkg.ceph.check>,
python3-dateutil <pkg.ceph.check>,
python3-grpcio <pkg.ceph.check>,
python3-jmespath (>=0.10) <pkg.ceph.check>,
python3-xmltodict <pkg.ceph.check>,
python3-openssl <pkg.ceph.check>,
python3-prettytable <pkg.ceph.check>,
python3-requests <pkg.ceph.check>,
python3-scipy <pkg.ceph.check>,
python3-onelogin-saml2 <pkg.ceph.check>,
python3-jinja2,
python3-markupsafe,
python3-pip,
python3-setuptools,
python3-wheel,
python3-sphinx,
python3-venv,
python3-yaml,
ragel <pkg.ceph.crimson>,
socat <pkg.ceph.check>,
systemd,
systemtap-sdt-dev <pkg.ceph.crimson>,
uuid-dev <pkg.ceph.check>,
uuid-runtime,
valgrind,
xfslibs-dev,
xmlstarlet <pkg.ceph.check>,
nasm [amd64],
zlib1g-dev,
Standards-Version: 4.4.0
Package: ceph
Architecture: linux-any
Depends: ceph-mgr (= ${binary:Version}),
ceph-mon (= ${binary:Version}),
ceph-osd (= ${binary:Version}),
Recommends: ceph-mds (= ${binary:Version}),
Description: distributed storage and file system
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
Package: ceph-base
Architecture: linux-any
Depends: binutils,
ceph-common (= ${binary:Version}),
logrotate,
parted,
psmisc,
${misc:Depends},
${shlibs:Depends},
${python3:Depends}
Recommends: btrfs-tools,
ceph-mds (= ${binary:Version}),
librados2 (= ${binary:Version}),
libradosstriper1 (= ${binary:Version}),
librbd1 (= ${binary:Version}),
ntp | time-daemon,
nvme-cli,
smartmontools,
Replaces: ceph (<< 10),
ceph-common (<< 0.78-500),
ceph-test (<< 12.2.2-14),
python-ceph (<< 0.92-1223),
Breaks: ceph (<< 10),
ceph-test (<< 12.2.2-14),
python-ceph (<< 0.92-1223),
Description: common ceph daemon libraries and management tools
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains the libraries and management tools that are common among
the Ceph server daemons (ceph-mon, ceph-mgr, ceph-osd, ceph-mds). These tools
are necessary for creating, running, and administering a Ceph storage cluster.
Package: ceph-base-dbg
Architecture: linux-any
Section: debug
Priority: extra
Depends: ceph-base (= ${binary:Version}),
${misc:Depends},
Description: debugging symbols for ceph-base
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains the libraries and management tools that are common among
the Ceph server daemons (ceph-mon, ceph-mgr, ceph-osd, ceph-mds). These tools
are necessary for creating, running, and administering a Ceph storage cluster.
.
This package contains the debugging symbols for ceph-base.
Package: cephadm
Architecture: linux-any
Recommends: podman (>= 2.0.2) | docker.io | docker-ce
Depends: adduser (>= 3.11),
lvm2,
python3,
${python3:Depends},
Description: cephadm utility to bootstrap ceph daemons with systemd and containers
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
The cephadm utility is used to bootstrap a Ceph cluster and to manage
ceph daemons deployed with systemd and containers.
Package: ceph-mds
Architecture: linux-any
Depends: ceph-base (= ${binary:Version}),
${misc:Depends},
${shlibs:Depends},
Recommends: ceph-fuse (= ${binary:Version}),
libcephfs2 (= ${binary:Version}),
Replaces: ceph (<< 0.93-417),
Breaks: ceph (<< 0.93-417),
Description: metadata server for the ceph distributed file system
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains the metadata server daemon, which is used to
create a distributed file system on top of the ceph storage cluster.
Package: ceph-mds-dbg
Architecture: linux-any
Section: debug
Priority: extra
Depends: ceph-mds (= ${binary:Version}),
${misc:Depends},
Description: debugging symbols for ceph-mds
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains the debugging symbols for ceph-mds.
Package: ceph-mgr
Architecture: linux-any
Depends: ceph-base (= ${binary:Version}),
ceph-mgr-modules-core (= ${binary:Version}),
libsqlite3-mod-ceph (= ${binary:Version}),
librados2 (= ${binary:Version}),
${misc:Depends},
${python3:Depends},
${shlibs:Depends},
Recommends: ceph-mgr-dashboard,
ceph-mgr-diskprediction-local,
ceph-mgr-k8sevents,
ceph-mgr-cephadm
Suggests: python3-influxdb
Replaces: ceph (<< 0.93-417),
Breaks: ceph (<< 0.93-417),
Description: manager for the ceph distributed storage system
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains the manager daemon, which is used to expose high
level management and monitoring functionality.
Package: ceph-mgr-dashboard
Architecture: all
Depends: ceph-mgr (= ${binary:Version}),
${python3:Depends}
Description: dashboard module for ceph-mgr
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package provides a ceph-mgr module, providing a web-based
application to monitor and manage many aspects of a Ceph cluster and
related components.
.
See the Dashboard documentation at http://docs.ceph.com/ for details
and a detailed feature overview.
Package: ceph-mgr-diskprediction-local
Architecture: all
Depends: ceph-mgr (= ${binary:Version}),
${python3:Depends}
Description: diskprediction-local module for ceph-mgr
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains the diskprediction_local module for the ceph-mgr
daemon, which helps predict disk failures.
Package: ceph-mgr-modules-core
Architecture: all
Depends: ${misc:Depends},
${python3:Depends},
Replaces: ceph-mgr (<< 15.1.0)
Breaks: ceph-mgr (<< 15.1.0)
Description: ceph manager modules which are always enabled
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains a set of core ceph-mgr modules which are always
enabled.
Package: ceph-mgr-rook
Architecture: all
Depends: ceph-mgr (= ${binary:Version}),
${misc:Depends},
${python3:Depends},
${shlibs:Depends},
Description: rook module for ceph-mgr
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains the rook module for ceph-mgr's orchestration
functionality, to allow ceph-mgr to install and configure ceph using
Rook.
Package: ceph-mgr-k8sevents
Architecture: all
Depends: ceph-mgr (= ${binary:Version}),
python3-kubernetes,
${misc:Depends},
${python3:Depends},
Description: kubernetes events module for ceph-mgr
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains the k8sevents module, to allow ceph-mgr to send
ceph related events to the kubernetes events API, and track all events
that occur within the rook-ceph namespace.
Package: ceph-mgr-cephadm
Architecture: all
Depends: ceph-mgr (= ${binary:Version}),
cephadm,
${misc:Depends},
${python3:Depends},
openssh-client,
python3-jinja2,
python3-cherrypy3
Description: cephadm orchestrator module for ceph-mgr
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains the CEPHADM module for ceph-mgr's orchestration
functionality, to allow ceph-mgr to perform orchestration functions
over a standard SSH connection.
Package: ceph-mgr-dbg
Architecture: linux-any
Section: debug
Priority: extra
Depends: ceph-mgr (= ${binary:Version}),
${misc:Depends},
Description: debugging symbols for ceph-mgr
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains the debugging symbols for ceph-mgr.
Package: ceph-exporter
Architecture: linux-any
Depends: ceph-base (= ${binary:Version}),
Description: metrics exporter for the ceph distributed storage system
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains the metrics exporter daemon, which is used to expose
the performance metrics.
Package: ceph-exporter-dbg
Architecture: linux-any
Section: debug
Priority: extra
Depends: ceph-exporter (= ${binary:Version}),
${misc:Depends},
Description: debugging symbols for ceph-exporter
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains the debugging symbols for ceph-exporter.
Package: ceph-mon
Architecture: linux-any
Depends: ceph-base (= ${binary:Version}),
${misc:Depends},
${shlibs:Depends},
Replaces: ceph (<< 10), ceph-test (<< 12.2.2-14)
Breaks: ceph (<< 10), ceph-test (<< 12.2.2-14)
Description: monitor server for the ceph storage system
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains the cluster monitor daemon for the Ceph storage
system. One or more instances of ceph-mon form a Paxos part-time parliament
cluster that provides extremely reliable and durable storage of cluster
membership, configuration, and state.
Package: ceph-mon-dbg
Architecture: linux-any
Section: debug
Priority: extra
Depends: ceph-mon (= ${binary:Version}),
${misc:Depends},
Description: debugging symbols for ceph-mon
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains the debugging symbols for ceph-mon.
Package: ceph-osd
Architecture: linux-any
Depends: ceph-osd-classic (= ${binary:Version}),
ceph-osd-crimson (= ${binary:Version}) <pkg.ceph.crimson>,
sudo,
${python3:Depends},
${misc:Depends},
${shlibs:Depends},
Recommends: ceph-osd-classic (= ${binary:Version})
Description: OSD server for the ceph storage system - shared components
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains components shared between classic and crimson OSD implementations.
It ensures a Ceph OSD implementation is installed. By default,
it installs the classic OSD implementation (ceph-osd-classic). Users can
substitute with the experimental Crimson implementation (ceph-osd-crimson)
for improved performance and scalability.
Package: ceph-osd-dbg
Architecture: linux-any
Section: debug
Priority: extra
Depends: ceph-osd (= ${binary:Version}),
${misc:Depends},
Description: debugging symbols for ceph-osd
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains the debugging symbols for ceph-osd.
Package: ceph-osd-classic
Architecture: linux-any
Depends: ceph-base (= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Conflicts: ceph-osd (<< 20.3)
Replaces: ceph (<< 10),
ceph-test (<< 12.2.2-14),
ceph-osd (<< 20.3)
Breaks: ceph (<< 10),
ceph-test (<< 12.2.2-14)
Recommends: ceph-volume (= ${binary:Version}),
nvme-cli,
smartmontools
Description: Classic OSD server for the ceph storage system
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains the classic Object Storage Daemon and
classic-specific components for the Ceph storage system. It is
responsible for storing objects on a local file system and providing
access to them over the network.
Package: ceph-osd-classic-dbg
Architecture: linux-any
Section: debug
Priority: extra
Depends: ceph-osd-classic (= ${binary:Version}),
${misc:Depends},
Description: debugging symbols for ceph-osd-classic
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains the debugging symbols for ceph-osd-classic.
Package: ceph-osd-crimson
Build-Profiles: <pkg.ceph.crimson>
Architecture: any
Depends: ceph-base (= ${binary:Version}),
${misc:Depends},
${shlibs:Depends},
libprotobuf23,
Recommends: ceph-volume (= ${binary:Version}),
nvme-cli,
smartmontools,
Conflicts: ceph-osd (<< 20.3)
Replaces: ceph-osd (<< 20.3)
Description: Crimson OSD server for the ceph storage system
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
Crimson is the next generation of ceph-osd daemon featuring enhanced
performance on fast network and storage devices.
.
This package contains the Crimson Object Storage Daemon and
crimson-specific components for the Ceph storage system. It is
responsible for storing objects on a local file system and providing
access to them over the network.
Package: ceph-osd-crimson-dbg
Build-Profiles: <pkg.ceph.crimson>
Architecture: linux-any
Section: debug
Priority: extra
Depends: ceph-osd-crimson (= ${binary:Version}),
${misc:Depends},
Description: debugging symbols for ceph-osd-crimson
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains the debugging symbols for ceph-osd-crimson.
Package: ceph-volume
Architecture: all
Section: python
Depends: ceph-osd (= ${binary:Version}),
cryptsetup-bin,
e2fsprogs,
lvm2,
parted,
python3-packaging,
xfsprogs,
${misc:Depends},
${python3:Depends}
Description: tool to facilidate OSD deployment
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains a tool to deploy OSD with different devices like
lvm or physical disks, and trying to follow a predictable, and robust
way of preparing, activating, and starting the deployed OSD.
Package: ceph-fuse
Architecture: linux-any
Depends: ${misc:Depends},
${shlibs:Depends},
${python3:Depends},
fuse,
Description: FUSE-based client for the Ceph distributed file system
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage. This is a
FUSE-based client that allows one to mount a Ceph file system without
root privileges.
.
Because the FUSE-based client has certain inherent performance
limitations, it is recommended that the native Linux kernel client
be used if possible. If it is not practical to load a kernel module
(insufficient privileges, older kernel, etc.), then the FUSE client will
do.
Package: ceph-fuse-dbg
Architecture: linux-any
Section: debug
Priority: extra
Depends: ceph-fuse (= ${binary:Version}),
${misc:Depends},
Description: debugging symbols for ceph-fuse
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage. This is a
FUSE-based client that allows one to mount a Ceph file system without
root privileges.
.
This package contains the debugging symbols for ceph-fuse.
Package: cephfs-mirror
Architecture: linux-any
Depends: ceph-common (= ${binary:Version}),
librados2 (= ${binary:Version}),
libcephfs2 (= ${binary:Version}),
${misc:Depends},
${shlibs:Depends},
Description: Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage. This is a daemon for mirroring CephFS
directory snapshots between Ceph clusters.
Package: cephfs-mirror-dbg
Architecture: linux-any
Section: debug
Priority: extra
Depends: cephfs-mirror (= ${binary:Version}),
${misc:Depends}
Description: debugging symbols for cephfs-mirror
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage. This is a daemon for mirroring CephFS
directory snapshots between Ceph clusters.
Package: rbd-fuse
Architecture: linux-any
Depends: ${misc:Depends},
${shlibs:Depends},
Recommends: fuse,
Description: FUSE-based rbd client for the Ceph distributed file system
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage. This is a
FUSE-based client that allows one to map Ceph rbd images as files.
.
FUSE base client that allows one to map Ceph rbd images as files.
Package: rbd-fuse-dbg
Architecture: linux-any
Section: debug
Priority: extra
Depends: rbd-fuse (= ${binary:Version}),
${misc:Depends},
Description: debugging symbols for rbd-fuse
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage. This is a
FUSE-based client that allows one to map Ceph rbd images as files.
.
This package contains the debugging symbols for rbd-fuse.
Package: ceph-immutable-object-cache
Architecture: linux-any
Depends: ceph-common (= ${binary:Version}),
librados2 (= ${binary:Version}),
${misc:Depends},
${shlibs:Depends},
Description: Ceph daemon for immutable object cache
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage. This is a daemon for immutable
object cache.
Package: ceph-immutable-object-cache-dbg
Architecture: linux-any
Section: debug
Priority: extra
Depends: ceph-immutable-object-cache (= ${binary:Version}),
${misc:Depends},
Description: debugging symbols for ceph-immutable-object-cache
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage. This is a daemon for immutable
object cache.
.
This package contains the debugging symbols for ceph-immutable-object-cache.
Package: rbd-mirror
Architecture: linux-any
Depends: ceph-common (= ${binary:Version}),
librados2 (= ${binary:Version}),
${misc:Depends},
${shlibs:Depends},
Description: Ceph daemon for mirroring RBD images
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage. This is a
daemon for mirroring RBD images between Ceph clusters, streaming
changes asynchronously.
Package: rbd-mirror-dbg
Architecture: linux-any
Section: debug
Priority: extra
Depends: rbd-mirror (= ${binary:Version}),
${misc:Depends},
Description: debugging symbols for rbd-mirror
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage. This is a
daemon for mirroring RBD images between Ceph clusters, streaming
changes asynchronously.
.
This package contains the debugging symbols for rbd-mirror.
Package: rbd-nbd
Architecture: linux-any
Depends: ${misc:Depends},
${shlibs:Depends},
Description: NBD-based rbd client for the Ceph distributed file system
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage. This is a
NBD-based client that allows one to map Ceph rbd images as local
block device.
.
NBD base client that allows one to map Ceph rbd images as local
block device.
Package: rbd-nbd-dbg
Architecture: linux-any
Section: debug
Priority: extra
Depends: rbd-nbd (= ${binary:Version}),
${misc:Depends},
Description: debugging symbols for rbd-nbd
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage. This is a
NBD-based client that allows one to map Ceph rbd images as local
block device.
.
This package contains the debugging symbols for rbd-nbd.
Package: ceph-common
Architecture: linux-any
Depends: adduser (>= 3.11),
librbd1 (= ${binary:Version}),
python3-cephfs (= ${binary:Version}),
python3-ceph-argparse (= ${binary:Version}),
python3-ceph-common (= ${binary:Version}),
python3-prettytable,
python3-rados (= ${binary:Version}),
python3-rbd (= ${binary:Version}),
python3-rgw (= ${binary:Version}),
${misc:Depends},
${python3:Depends},
${shlibs:Depends},
Conflicts: ceph-client-tools,
Replaces: ceph (<< 10),
ceph-client-tools,
ceph-fs-common (<< 11.0),
ceph-test (<< 9.0.3-1646),
librbd1 (<< 0.92-1238),
python-ceph (<< 0.92-1223),
radosgw (<< 12.0.3)
Breaks: ceph (<< 10),
ceph-fs-common (<< 11.0),
ceph-test (<< 9.0.3-1646),
librbd1 (<< 0.92-1238),
python-ceph (<< 0.92-1223),
radosgw (<< 12.0.3)
Suggests: ceph-base (= ${binary:Version}),
ceph-mds (= ${binary:Version}),
Description: common utilities to mount and interact with a ceph storage cluster
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage. This is a collection
of common tools that allow one to interact with and administer a Ceph cluster.
Package: ceph-common-dbg
Architecture: linux-any
Depends: ceph-common (= ${binary:Version}),
${misc:Depends},
Conflicts: ceph-client-tools-dbg,
Replaces: ceph-client-tools-dbg,
ceph-test-dbg (<< 9.0.3-1646),
Breaks: ceph-test-dbg (<< 9.0.3-1646),
Section: debug
Priority: extra
Description: debugging symbols for ceph-common
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage. This is a collection
of common tools that allow one to interact with and administer a Ceph cluster.
.
This package contains the debugging symbols for ceph-common.
Package: ceph-resource-agents
Architecture: linux-any
Recommends: pacemaker,
Priority: extra
Depends: ceph (= ${binary:Version}),
resource-agents,
${misc:Depends},
Description: OCF-compliant resource agents for Ceph
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains the resource agents (RAs) which integrate
Ceph with OCF-compliant cluster resource managers,
such as Pacemaker.
Package: librados2
Conflicts: librados
Replaces: librados
Architecture: linux-any
Section: libs
Depends: ${misc:Depends},
${shlibs:Depends},
Description: RADOS distributed object store client library
RADOS is a reliable, autonomic distributed object storage cluster
developed as part of the Ceph distributed storage system. This is a
shared library allowing applications to access the distributed object
store using a simple file-like interface.
Package: librados2-dbg
Architecture: linux-any
Section: debug
Priority: extra
Depends: librados2 (= ${binary:Version}),
${misc:Depends},
Description: debugging symbols for librados
RADOS is a reliable, autonomic distributed object storage cluster
developed as part of the Ceph distributed storage system. This is a
shared library allowing applications to access the distributed object
store using a simple file-like interface.
.
This package contains debugging symbols for librados.
Package: librados-dev
Architecture: linux-any
Section: libdevel
Depends: librados2 (= ${binary:Version}),
${misc:Depends},
${shlibs:Depends},
Conflicts: librados1-dev,
librados2-dev,
Replaces: librados1-dev,
librados2-dev,
Description: RADOS distributed object store client library (development files)
RADOS is a reliable, autonomic distributed object storage cluster
developed as part of the Ceph distributed storage system. This is a
shared library allowing applications to access the distributed object
store using a simple file-like interface.
.
This package contains development files needed for building applications that
link against librados.
Package: libradospp-dev
Architecture: linux-any
Section: libdevel
Depends: librados-dev (= ${binary:Version}),
${misc:Depends},
${shlibs:Depends},
Description: RADOS distributed object store client C++ library (development files)
RADOS is a reliable, autonomic distributed object storage cluster
developed as part of the Ceph distributed storage system. This is a
shared library allowing applications to access the distributed object
store using a simple file-like interface.
.
This package contains development files needed for building C++ applications that
link against librados.
Package: libsqlite3-mod-ceph
Architecture: any
Section: libs
Depends: librados2 (= ${binary:Version}),
${misc:Depends},
${shlibs:Depends},
Description: SQLite3 VFS for Ceph
A SQLite3 VFS for storing and manipulating databases stored on Ceph's RADOS
distributed object store.
.
This packages contains the loadable extension module for SQLite3.
Package: libsqlite3-mod-ceph-dbg
Architecture: any
Section: debug
Priority: extra
Depends: libsqlite3-mod-ceph (= ${binary:Version}),
libsqlite3-0-dbgsym,
${misc:Depends},
Description: debugging symbols for libsqlite3-mod-ceph
A SQLite3 VFS for storing and manipulating databases stored on Ceph's RADOS
distributed object store.
.
This package contains debugging symbols for libsqlite3-mod-ceph.
Package: libsqlite3-mod-ceph-dev
Architecture: any
Section: libdevel
Depends: libsqlite3-mod-ceph (= ${binary:Version}),
libsqlite3-dev,
${misc:Depends},
Description: SQLite3 VFS for Ceph (development files)
A SQLite3 VFS for storing and manipulating databases stored on Ceph's RADOS
distributed object store.
.
This package contains development files needed for building applications that
link against libsqlite3-mod-ceph.
Package: libradosstriper1
Architecture: linux-any
Section: libs
Depends: librados2 (= ${binary:Version}),
${misc:Depends},
${shlibs:Depends},
Description: RADOS striping interface
Striping interface built on top of the rados library, allowing
to stripe bigger objects onto several standard rados objects using
an interface very similar to the rados one.
Package: libradosstriper1-dbg
Architecture: linux-any
Section: debug
Priority: extra
Depends: libradosstriper1 (= ${binary:Version}),
${misc:Depends},
Description: debugging symbols for libradosstriper
libradosstriper is a striping interface built on top of the rados
library, allowing to stripe bigger objects onto several standard
rados objects using an interface very similar to the rados one.
.
This package contains debugging symbols for libradosstriper.
Package: libradosstriper-dev
Architecture: linux-any
Section: libdevel
Depends: libradosstriper1 (= ${binary:Version}),
${misc:Depends},
Description: RADOS striping interface (development files)
libradosstriper is a striping interface built on top of the rados
library, allowing to stripe bigger objects onto several standard
rados objects using an interface very similar to the rados one.
.
This package contains development files needed for building applications that
link against libradosstriper.
Package: librbd1
Architecture: linux-any
Section: libs
Depends: librados2 (= ${binary:Version}),
${misc:Depends},
${shlibs:Depends},
Description: RADOS block device client library
RBD is a block device striped across multiple distributed objects
in RADOS, a reliable, autonomic distributed object storage cluster
developed as part of the Ceph distributed storage system. This is a
shared library allowing applications to manage these block devices.
Package: librbd1-dbg
Architecture: linux-any
Section: debug
Priority: extra
Depends: librbd1 (= ${binary:Version}),
${misc:Depends},
Description: debugging symbols for librbd1
RBD is a block device striped across multiple distributed objects
in RADOS, a reliable, autonomic distributed object storage cluster
developed as part of the Ceph distributed storage system. This is a
shared library allowing applications to manage these block devices.
.
This package contains debugging symbols for librbd1.
Package: librbd-dev
Architecture: linux-any
Section: libdevel
Depends: librados-dev (= ${binary:Version}),
librbd1 (= ${binary:Version}),
${misc:Depends},
Conflicts: librbd1-dev,
Replaces: librbd1-dev,
Description: RADOS block device client library (development files)
RBD is a block device striped across multiple distributed objects
in RADOS, a reliable, autonomic distributed object storage cluster
developed as part of the Ceph distributed storage system. This is a
shared library allowing applications to manage these block devices.
.
This package contains development files needed for building applications that
link against librbd1.
Package: libcephfs2
Conflicts: libceph,
libceph1,
libcephfs,
Replaces: libceph,
libceph1,
libcephfs,
Recommends: libcephfs-proxy2 (= ${binary:Version})
Architecture: linux-any
Section: libs
Depends: ${misc:Depends},
${shlibs:Depends},
Description: Ceph distributed file system client library
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage. This is a
shared library allowing applications to access a Ceph distributed
file system via a POSIX-like interface.
Package: libcephfs2-dbg
Architecture: linux-any
Section: debug
Priority: extra
Depends: libcephfs2 (= ${binary:Version}),
${misc:Depends},
Conflicts: libceph1-dbg,
Replaces: libceph1-dbg,
Description: debugging symbols for libcephfs2
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage. This is a
shared library allowing applications to access a Ceph distributed
file system via a POSIX-like interface.
.
This package contains debugging symbols for libcephfs2.
Package: libcephfs-proxy2
Architecture: linux-any
Section: libs
Depends: ${misc:Depends},
${shlibs:Depends},
Recommends: libcephfs-daemon (= ${binary:Version})
Description: Libcephfs proxy library
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage. This allows applications to share
libcephfs' CephFS mounts to reduce resource consumption.
Package: libcephfs-proxy2-dbg
Architecture: linux-any
Section: debug
Priority: extra
Depends: libcephfs-proxy2 (= ${binary:Version}),
${misc:Depends},
Description: debugging symbols for libcephfs-proxy2
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage. This allows applications to share
libcephfs' CephFS mounts to reduce resource consumption.
.
This package contains debugging symbols for libcephfs-proxy2.
Package: libcephfs-daemon
Architecture: linux-any
Depends: libcephfs2 (= ${binary:Version}),
${misc:Depends},
Description: Libcephfs proxy daemon
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage. This allows applications to share
libcephfs' CephFS mounts to reduce resource consumption.
Package: libcephfs-daemon-dbg
Architecture: linux-any
Section: debug
Priority: extra
Depends: libcephfs-daemon (= ${binary:Version}),
${misc:Depends},
Description: debugging symbols for libcephfs-daemon
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage. This allows applications to share
libcephfs' CephFS mounts to reduce resource consumption.
.
This package contains debugging symbols for libcephfs-proxy2.
Package: libcephfs-dev
Architecture: linux-any
Section: libdevel
Depends: libcephfs2 (= ${binary:Version}),
libcephfs-proxy2 (= ${binary:Version}),
${misc:Depends},
Conflicts: libceph-dev,
libceph1-dev,
libcephfs2-dev,
Replaces: libceph-dev,
libceph1-dev,
libcephfs2-dev,
Description: Ceph distributed file system client library (development files)
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage. This is a
shared library allowing applications to access a Ceph distributed
file system via a POSIX-like interface.
.
This package contains development files needed for building applications that
link against libcephfs.
Package: librgw2
Architecture: linux-any
Section: libs
Depends: librados2 (= ${binary:Version}),
liblua5.3-0,
${misc:Depends},
${shlibs:Depends},
Suggests: liblua5.3-dev,
luarocks,
Description: RADOS Gateway client library
RADOS is a distributed object store used by the Ceph distributed
storage system. This package provides a REST gateway to the
object store that aims to implement a superset of Amazon's S3
service.
.
This package contains the library interface and headers only.
Package: librgw2-dbg
Architecture: linux-any
Section: debug
Priority: extra
Depends: librgw2 (= ${binary:Version}),
${misc:Depends},
Description: debugging symbols for librbd1
RADOS is a distributed object store used by the Ceph distributed
storage system. This package provides a REST gateway to the
object store that aims to implement a superset of Amazon's S3
service.
.
This package contains debugging symbols for librgw2.
Package: librgw-dev
Architecture: linux-any
Section: libdevel
Depends: librados-dev (= ${binary:Version}),
librgw2 (= ${binary:Version}),
${misc:Depends},
Description: RADOS client library (development files)
RADOS is a distributed object store used by the Ceph distributed
storage system. This package provides a REST gateway to the
object store that aims to implement a superset of Amazon's S3
service.
.
This package contains development files needed for building applications
that link against librgw2.
Package: radosgw
Architecture: linux-any
Depends: ceph-common (= ${binary:Version}),
librgw2 (= ${binary:Version}),
media-types | mime-support,
${misc:Depends},
${shlibs:Depends},
Suggests: gawk,
Recommends: ntp | time-daemon,
Description: REST gateway for RADOS distributed object store
RADOS is a distributed object store used by the Ceph distributed
storage system. This package provides a REST gateway to the
object store that aims to implement a superset of Amazon's S3
service as well as the OpenStack Object Storage ("Swift") API.
.
This package contains the proxy daemon and related tools only.
Package: radosgw-dbg
Architecture: linux-any
Section: debug
Priority: extra
Depends: radosgw (= ${binary:Version}),
${misc:Depends},
Description: debugging symbols for radosgw
RADOS is a distributed object store used by the Ceph distributed
storage system. This package provides a REST gateway to the
object store that aims to implement a superset of Amazon's S3
service as well as the OpenStack Object Storage ("Swift") API.
.
This package contains debugging symbols for radosgw.
Package: ceph-test
Architecture: linux-any
Depends: ceph-common,
curl,
jq,
socat,
xmlstarlet,
${misc:Depends},
${shlibs:Depends},
Replaces: ceph-base (<< 11)
Breaks: ceph-base (<< 1)
Description: Ceph test and benchmarking tools
This package contains tools for testing and benchmarking Ceph.
Package: ceph-test-dbg
Architecture: linux-any
Section: debug
Priority: extra
Depends: ceph-common (= ${binary:Version}),
ceph-test (= ${binary:Version}),
curl,
${misc:Depends},
Description: Ceph test and benchmarking tools
.
This package contains the debugging symbols for ceph-test.
Package: python3-ceph
Architecture: linux-any
Section: python
Depends: python3-cephfs (= ${binary:Version}),
python3-rados (= ${binary:Version}),
python3-rbd (= ${binary:Version}),
python3-rgw (= ${binary:Version}),
Description: Meta-package for python libraries for the Ceph libraries
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package is a metapackage for all Python 2 bindings.
Package: python3-rados
Architecture: linux-any
Section: python
Depends: librados2,
${misc:Depends},
${python3:Depends},
${shlibs:Depends},
Description: Python 3 libraries for the Ceph librados library
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains Python 3 libraries for interacting with Ceph's
RADOS object storage.
Package: python3-rados-dbg
Architecture: linux-any
Section: debug
Priority: extra
Depends: python3-rados (= ${binary:Version}),
python3-dbg,
${misc:Depends}
Description: Python 3 libraries for the Ceph librados library
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains Python 3 libraries for interacting with Ceph's
RADOS object storage.
.
This package contains the debugging symbols for python3-rados.
Package: python3-rbd
Architecture: linux-any
Section: python
Depends: librbd1 (>= ${binary:Version}),
${misc:Depends},
${python3:Depends},
${shlibs:Depends},
Description: Python 3 libraries for the Ceph librbd library
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains Python 3 libraries for interacting with Ceph's
RBD block device library.
Package: python3-rbd-dbg
Architecture: linux-any
Section: debug
Priority: extra
Depends: python3-rbd (= ${binary:Version}),
python3-dbg,
${misc:Depends},
Description: Python 3 libraries for the Ceph librbd library
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains Python 3 libraries for interacting with Ceph's
RBD block device library.
.
This package contains the debugging symbols for python3-rbd.
Package: python3-rgw
Architecture: linux-any
Section: python
Depends: librgw2 (>= ${binary:Version}),
python3-rados (= ${binary:Version}),
${misc:Depends},
${python3:Depends},
${shlibs:Depends},
Description: Python 3 libraries for the Ceph librgw library
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains Python 3 libraries for interacting with Ceph's
RGW library.
Package: python3-rgw-dbg
Architecture: linux-any
Section: debug
Priority: extra
Depends: python3-rgw (= ${binary:Version}),
python3-dbg,
${misc:Depends},
Description: Python 3 libraries for the Ceph librgw library
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains Python 3 libraries for interacting with Ceph's
RGW library.
.
This package contains the debugging symbols for python3-rgw.
Package: python3-cephfs
Architecture: linux-any
Section: python
Depends: libcephfs2 (= ${binary:Version}),
python3-rados (= ${binary:Version}),
python3-ceph-argparse (= ${binary:Version}),
${misc:Depends},
${python3:Depends},
${shlibs:Depends},
Description: Python 3 libraries for the Ceph libcephfs library
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains Python 3 libraries for interacting with Ceph's
CephFS file system client library.
Package: python3-cephfs-dbg
Architecture: linux-any
Section: debug
Priority: extra
Depends: python3-cephfs (= ${binary:Version}),
python3-dbg,
${misc:Depends},
Description: Python 3 libraries for the Ceph libcephfs library
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains Python 3 libraries for interacting with Ceph's
CephFS file system client library.
.
This package contains the debugging symbols for python3-cephfs.
Package: python3-ceph-argparse
Architecture: all
Section: python
Depends: ${misc:Depends},
${python3:Depends},
Description: Python 3 utility libraries for Ceph CLI
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains types and routines for Python 3 used by the
Ceph CLI as well as the RESTful interface.
Package: python3-ceph-common
Architecture: all
Section: python
Depends: ${misc:Depends},
${python3:Depends},
Description: Python 3 utility libraries for Ceph
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains data structures, classes and functions used by Ceph.
It also contains utilities used for the cephadm orchestrator.
Package: libcephfs-java
Section: java
Architecture: all
Depends: libcephfs-jni (= ${binary:Version}),
${java:Depends},
${misc:Depends},
Description: Java libraries for the Ceph File System
Package: libcephfs-jni
Architecture: linux-any
Section: java
Depends: libcephfs2 (= ${binary:Version}),
${java:Depends},
${misc:Depends},
${shlibs:Depends},
Description: Java Native Interface library for CephFS Java bindings
Package: rados-objclass-dev
Architecture: linux-any
Section: libdevel
Depends: librados-dev (= ${binary:Version}), ${misc:Depends},
Description: RADOS object class development kit.
.
This package contains development files needed for building RADOS object class plugins.
Package: cephfs-shell
Architecture: all
Depends: ${misc:Depends},
${python3:Depends}
Description: interactive shell for the Ceph distributed file system
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage. This is an interactive tool that
allows accessing a Ceph file system without mounting it by providing
a nice pseudo-shell which works like an FTP client.
.
This package contains a CLI for interacting with the CephFS.
Package: cephfs-top
Architecture: all
Depends: ${misc:Depends},
${python3:Depends}
Description: This package provides a top(1) like utility to display various
filesystem metrics in realtime.
.
This package contains utility for displaying filesystem metrics.
Package: ceph-grafana-dashboards
Architecture: all
Description: grafana dashboards for the ceph dashboard
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains Grafana dashboards that are used by the Ceph Dashboard
for monitoring.
Package: ceph-prometheus-alerts
Architecture: all
Description: prometheus alerts for the ceph dashboard
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
block and file system storage.
.
This package contains alerts used for prometheus to interact with the
Ceph Dashboard.