1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304
|
Source: ceph
Section: admin
Priority: optional
Maintainer: Ceph Packaging Team <team+ceph@tracker.debian.org>
Uploaders:
James Page <jamespage@debian.org>,
Daniel Baumann <daniel@debian.org>,
Bernd Zeimetz <bzed@debian.org>,
Thomas Goirand <zigo@debian.org>,
Build-Depends:
architecture-is-64-bit,
cmake (>= 3.30.2-2~),
cython3,
debhelper-compat (= 11),
default-jdk,
dh-exec,
dh-python,
dpkg-dev (>= 1.16.1~),
flex,
gperf,
javahelper,
junit4,
libaio-dev,
libbabeltrace-ctf-dev,
libbabeltrace-dev,
libblkid-dev (>= 2.17),
libboost-atomic-dev,
libboost-chrono-dev (>= 1.81.0~),
libboost-context-dev (>= 1.81.0~),
libboost-coroutine-dev (>= 1.81.0~),
libboost-date-time-dev (>= 1.81.0~),
libboost-filesystem-dev (>= 1.81.0~),
libboost-iostreams-dev (>= 1.81.0~),
libboost-program-options-dev (>= 1.81.0~),
libboost-python-dev (>= 1.81.0~),
libboost-random-dev (>= 1.81.0~),
libboost-regex-dev (>= 1.81.0~),
libboost-system-dev (>= 1.81.0~),
libboost-test-dev (>= 1.81.0~),
libboost-thread-dev (>= 1.81.0~),
libboost-timer-dev (>= 1.81.0~),
libbz2-dev,
libc-ares-dev,
libcap-dev,
libcap-ng-dev,
libcrypto++-dev,
libcryptsetup-dev,
libcunit1-dev,
libcurl4-gnutls-dev,
libdaxctl-dev,
libedit-dev,
libevent-dev,
libexpat1-dev,
libfmt-dev,
libfuse3-dev,
libgf-complete-dev,
libgnutls28-dev,
libgoogle-perftools-dev [amd64 arm64 armel armhf i386 loong64 mips64el mipsel ppc64 ppc64el riscv64 powerpc s390x],
libhwloc-dev,
libibverbs-dev,
libicu-dev,
libjerasure-dev,
libkeyutils-dev,
libldap2-dev,
liblua5.3-dev,
liblz4-dev (>= 0.0~r131),
libncurses-dev,
libndctl-dev,
libnl-3-dev,
libnl-genl-3-dev,
libnss3-dev,
libnuma-dev,
liboath-dev,
libpciaccess-dev,
libpmem-dev [amd64 arm64 ppc64el riscv64],
libpmemobj-dev [amd64 arm64 ppc64el riscv64],
libprotobuf-dev,
librabbitmq-dev,
librdmacm-dev,
libre2-dev,
libsctp-dev,
libsnappy-dev,
libsqlite3-dev,
libssl-dev,
libthrift-dev,
libtool,
libudev-dev,
liburing-dev,
libutf8proc-dev,
libxml2-dev,
libyaml-cpp-dev,
libzstd-dev,
lsb-release,
nasm [amd64],
ninja-build,
nlohmann-json3-dev,
parted,
pkg-config,
protobuf-compiler,
python3-bcrypt,
python3-cherrypy3,
python3-coverage,
python3-dateutil,
python3-dev,
python3-jwt,
python3-natsort,
python3-openssl,
python3-packaging,
python3-pecan,
python3-prettytable,
python3-requests,
python3-scipy,
python3-setuptools,
python3-sphinx,
python3-werkzeug,
python3-yaml,
ragel,
systemd,
systemtap-sdt-dev,
tox,
uuid-runtime,
valgrind [amd64 armhf arm64 i386 mips64el mipsel ppc64 ppc64el s390x],
virtualenv,
xfslibs-dev,
xmlstarlet,
zlib1g-dev,
Standards-Version: 4.2.1
Vcs-Git: https://salsa.debian.org/ceph-team/ceph.git
Vcs-Browser: https://salsa.debian.org/ceph-team/ceph
Homepage: http://ceph.com/
Package: ceph
Architecture: linux-any
Depends:
ceph-mgr (= ${binary:Version}),
ceph-mon (= ${binary:Version}),
ceph-osd (= ${binary:Version}),
${misc:Depends},
Suggests:
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}),
cryptsetup-bin | cryptsetup,
e2fsprogs,
gdisk,
hdparm | sdparm,
logrotate,
nvme-cli,
parted,
psmisc,
smartmontools,
uuid-runtime,
xfsprogs,
${misc:Depends},
${python3:Depends},
${shlibs:Depends},
Pre-Depends:
${misc:Pre-Depends},
Recommends:
btrfs-tools,
ceph-mds (= ${binary:Version}),
chrony | time-daemon | ntp,
librados2 (= ${binary:Version}),
libradosstriper1 (= ${binary:Version}),
librbd1 (= ${binary:Version}),
Description: common ceph daemon libraries and management tools
Ceph is a distributed storage system designed to provide excellent
performance, reliability, and scalability.
.
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
Depends:
ceph-base (= ${binary:Version}),
${misc:Depends},
Description: debugging symbols for ceph-base
Ceph is a distributed storage system designed to provide excellent
performance, reliability, and scalability.
.
This package contains the debugging symbols for ceph-base.
Package: ceph-common
Architecture: linux-any
Depends:
adduser,
librbd1 (= ${binary:Version}),
python3-ceph-argparse (= ${binary:Version}),
python3-ceph-common (<< ${source:Version}.1~),
python3-ceph-common (>= ${source:Version}),
python3-cephfs (= ${binary:Version}),
python3-prettytable,
python3-rados (= ${binary:Version}),
python3-rbd (= ${binary:Version}),
python3-requests,
${misc:Depends},
${python3:Depends},
${shlibs:Depends},
Breaks:
radosgw (<< 18),
Replaces:
radosgw (<< 18),
Conflicts:
ceph-client-tools,
Suggests:
ceph,
ceph-mds,
Description: common utilities to mount and interact with a ceph storage cluster
Ceph is a distributed storage and file system designed to provide
excellent performance, reliability, and scalability. 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
Section: debug
Depends:
ceph-common (= ${binary:Version}),
${misc:Depends},
Description: debugging symbols for ceph-common
Ceph is a distributed storage system designed to provide excellent
performance, reliability, and scalability.
.
This package contains the debugging symbols for ceph-common.
Package: ceph-fuse
Architecture: amd64
Depends:
python3,
${misc:Depends},
${python3:Depends},
${shlibs:Depends},
Recommends:
fuse3,
Description: FUSE-based client for the Ceph distributed file system
Ceph is a distributed network file system designed to provide
excellent performance, reliability, and scalability. 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: amd64
Depends:
python3,
${misc:Depends},
${python3:Depends},
${shlibs:Depends},
Recommends:
fuse3,
Description: FUSE-based client for the Ceph distributed file system - debug
Ceph is a distributed network file system designed to provide
excellent performance, reliability, and scalability. 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.
.
This package contains the debug symbols for ceph-fuse.
Package: ceph-grafana-dashboards
Architecture: all
Depends:
${misc:Depends},
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-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
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: ceph-mds
Architecture: linux-any
Depends:
ceph-common (= ${binary:Version}),
${misc:Depends},
${shlibs:Depends},
Recommends:
ceph-common,
ceph-fuse,
libcephfs2,
Description: metadata server for the ceph distributed file system
Ceph is a distributed storage and network file system designed to
provide excellent performance, reliability, and scalability.
.
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
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-common (= ${binary:Version}),
ceph-mgr-modules-core (<< ${source:Version}.1~),
ceph-mgr-modules-core (>= ${source:Version}),
libsqlite3-mod-ceph (<< ${source:Version}.1~),
libsqlite3-mod-ceph (>= ${source:Version}),
python3-bcrypt,
python3-ceph-argparse (= ${binary:Version}),
python3-cephfs (= ${binary:Version}),
python3-cherrypy3,
python3-jwt,
python3-openssl,
python3-pecan,
python3-requests,
python3-werkzeug,
python3-yaml,
${misc:Depends},
${python3:Depends},
${shlibs:Depends},
Suggests:
ceph-mgr-dashboard,
ceph-mgr-diskprediction-local,
ceph-mgr-rook,
Description: manager 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 manager daemon, which is used to expose high
level management and monitoring functionality.
Package: ceph-mgr-cephadm
Architecture: all
Depends:
ceph-mgr (<< ${source:Version}.1~),
ceph-mgr (>= ${source:Version}),
cephadm,
openssh-client,
python3-asyncssh,
python3-cherrypy3,
python3-cryptography,
python3-jinja2,
${misc:Depends},
${python3:Depends},
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-dashboard
Architecture: all
Depends:
ceph-common (<< ${binary:Version}.1~),
ceph-common (>= ${binary:Version}),
ceph-mgr (<< ${binary:Version}.1~),
ceph-mgr (>= ${binary:Version}),
python3-bcrypt,
python3-cherrypy3,
python3-jwt,
python3-more-itertools,
python3-openssl,
python3-prettytable,
python3-requests,
python3-routes,
python3-werkzeug,
python3-yaml,
${misc:Depends},
${python3:Depends},
${shlibs:Depends},
Description: dashboard plugin 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 plugin, 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-dbg
Architecture: linux-any
Section: debug
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-mgr-k8sevents
Architecture: all
Depends:
ceph-mgr (>= ${binary:Version}),
python3-kubernetes,
python3-yaml,
${misc:Depends},
${python3:Depends},
Description: kubernetes events plugin 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 plugin, 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-modules-core
Architecture: all
Depends:
python3-cherrypy3,
python3-dateutil,
python3-natsort,
python3-openssl,
python3-packaging,
python3-pecan,
python3-requests,
python3-werkzeug,
${misc:Depends},
${python3:Depends},
${shlibs: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}),
python3-jsonpatch,
python3-kubernetes,
${misc:Depends},
${python3:Depends},
${shlibs:Depends},
Description: rook plugin 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 plugin for ceph-mgr's orchestration
functionality, to allow ceph-mgr to install and configure ceph using
Rook.
Package: ceph-mon
Architecture: linux-any
Depends:
ceph-common (= ${binary:Version}),
${misc:Depends},
${python3:Depends},
${shlibs:Depends},
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
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-base (= ${binary:Version}),
ceph-volume (= ${source:Version}),
lvm2,
sudo,
${misc:Depends},
${python3:Depends},
${shlibs:Depends},
Suggests:
nvme-cli,
Recommends:
smartmontools,
Pre-Depends:
ceph-common (= ${binary:Version}),
Description: 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 Object Storage Daemon 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-dbg
Architecture: linux-any
Section: debug
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-prometheus-alerts
Architecture: all
Depends:
${misc:Depends},
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.
Package: ceph-resource-agents
Architecture: all
Priority: optional
Recommends:
pacemaker,
Depends:
ceph (>= ${binary:Version}),
resource-agents,
${misc:Depends},
Description: OCF-compliant resource agents for Ceph
Ceph is a distributed storage and network file system designed to provide
excellent performance, reliability, and scalability.
.
This package contains the resource agents (RAs) which integrate
Ceph with OCF-compliant cluster resource managers,
such as Pacemaker.
Package: ceph-test
Architecture: linux-any
Depends:
ceph-common (= ${binary:Version}),
curl,
jq,
socat,
xmlstarlet,
${misc:Depends},
${shlibs:Depends},
Description: Ceph test and benchmarking tools
This package contains tools for testing and benchmarking Ceph.
Package: ceph-test-dbg
Architecture: linux-any
Depends:
ceph-common (= ${binary:Version}),
${misc:Depends},
${shlibs:Depends},
Description: Ceph test and benchmarking tools - ceph-test debug
Ceph is a distributed storage and network file system designed to provide
excellent performance, reliability, and scalability.
.
This package contains the debug symbols for ceph-test.
Package: ceph-volume
Architecture: all
Section: python
Depends:
cryptsetup-bin,
e2fsprogs,
lvm2,
parted,
xfsprogs,
${misc:Depends},
${python3:Depends},
Conflicts:
ceph-osd (<< 18),
Description: tool to facilidate OSD deployment
Ceph is a distributed storage and network file system designed to provide
excellent performance, reliability, and scalability.
.
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: cephadm
Architecture: linux-any
Recommends:
podman (>= 2.0.2) | docker.io,
Depends:
adduser,
lvm2,
${misc:Depends},
${python3:Depends},
Description: 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: cephfs-mirror
Architecture: linux-any
Depends:
ceph-common (= ${binary:Version}),
libcephfs2 (= ${binary:Version}),
librados2 (= ${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
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: cephfs-shell
Architecture: all
Depends:
python3-cephfs,
${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: top like utility for Ceph filesystem
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 top(1) like utility to display various
filesystem metrics in realtime.
.
This package contains utility for displaying filesystem metrics.
Package: libcephfs-dev
Architecture: linux-any
Section: libdevel
Depends:
libcephfs2 (= ${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 distributed network file system designed to provide
excellent performance, reliability, and scalability. 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 libcephfs2.
Package: libcephfs-java
Architecture: all
Section: java
Depends:
libcephfs-jni (>= ${binary:Version}),
${java:Depends},
${misc:Depends},
Description: Java library for the Ceph File System
Ceph is a distributed storage system designed to provide excellent
performance, reliability, and scalability.
.
This package contains the Java library for interacting with the Ceph
File System.
Package: libcephfs-jni
Architecture: linux-any
Section: libs
Depends:
libcephfs2 (= ${binary:Version}),
${misc:Depends},
${shlibs:Depends},
Description: Java Native Interface library for CephFS Java bindings
Ceph is a distributed storage system designed to provide excellent
performance, reliability, and scalability.
.
This package contains the Java Native Interface library for interacting
with the Ceph File System.
Package: libcephfs2
Architecture: linux-any
Section: libs
Conflicts:
libceph,
libceph1,
libcephfs,
Replaces:
libceph,
libceph1,
libcephfs,
Depends:
${misc:Depends},
${shlibs:Depends},
Pre-Depends:
${misc:Pre-Depends},
Description: Ceph distributed file system client library
Ceph is a distributed network file system designed to provide
excellent performance, reliability, and scalability. 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
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: 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 librados2.
Package: librados2
Architecture: linux-any
Section: libs
Conflicts:
librados,
librados1,
Replaces:
librados,
librados1,
Depends:
${misc:Depends},
${shlibs:Depends},
Pre-Depends:
${misc:Pre-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
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: 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: 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: 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
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: librbd-dev
Architecture: linux-any
Section: libdevel
Depends:
librados-dev,
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: librbd1
Architecture: linux-any
Section: libs
Depends:
librados2 (= ${binary:Version}),
${misc:Depends},
${shlibs:Depends},
Pre-Depends:
${misc:Pre-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
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: 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: librgw2
Architecture: linux-any
Section: libs
Depends:
librados2 (= ${binary:Version}),
${misc:Depends},
${shlibs:Depends},
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
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: libsqlite3-mod-ceph
Architecture: any
Section: libs
Depends:
${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
Depends:
libsqlite3-mod-ceph (= ${binary:Version}),
${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-dev,
libsqlite3-mod-ceph (= ${binary:Version}),
${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: python3-ceph
Architecture: all
Section: python
Depends:
python3-cephfs (<< ${source:Version}.1~),
python3-cephfs (>= ${source:Version}),
python3-rados (<< ${source:Version}.1~),
python3-rados (>= ${source:Version}),
python3-rbd (<< ${source:Version}.1~),
python3-rbd (>= ${source:Version}),
python3-rgw (<< ${source:Version}.1~),
python3-rgw (>= ${source:Version}),
${misc:Depends},
Description: Meta-package for all Python 3.x modules 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 Ceph Python 3.x bindings.
Package: python3-ceph-argparse
Architecture: linux-any
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: python3-cephfs
Architecture: linux-any
Section: python
Depends:
libcephfs2 (= ${binary:Version}),
python3-ceph-argparse (= ${binary:Version}),
python3-rados (= ${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-rados
Architecture: linux-any
Section: python
Depends:
librados2 (= ${binary:Version}),
${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-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-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: rados-objclass-dev
Architecture: linux-any
Section: libdevel
Depends:
librados-dev (= ${binary:Version}),
${misc:Depends},
Description: RADOS object class development kit.
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 development files needed for building RADOS object class
plugins.
Package: radosgw
Architecture: linux-any
Depends:
ceph-common (= ${binary:Version}),
librgw2 (= ${binary:Version}),
media-types,
${misc:Depends},
${shlibs:Depends},
Suggests:
logrotate,
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
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: rbd-fuse
Architecture: linux-any
Depends:
${misc:Depends},
${shlibs:Depends},
Recommends:
fuse3,
Description: FUSE-based rbd client for the Ceph distributed file system
Ceph is a distributed network file system designed to provide
excellent performance, reliability, and scalability. This is a
FUSE-based client that allows one to map Ceph rbd images as files.
Package: rbd-fuse-dbg
Architecture: linux-any
Section: debug
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: 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 distributed storage system designed to provide excellent
performance, reliability, and scalability.
.
This package provides a daemon for mirroring RBD images between
Ceph clusters, streaming changes asynchronously.
Package: rbd-mirror-dbg
Architecture: linux-any
Section: debug
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
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.
|