-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathceph.spec.in
More file actions
3127 lines (2817 loc) · 97.3 KB
/
Copy pathceph.spec.in
File metadata and controls
3127 lines (2817 loc) · 97.3 KB
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
#
# spec file for package ceph
#
# Copyright (C) 2004-2019 The Ceph Project Developers. See COPYING file
# at the top-level directory of this distribution and at
# https://github.com/ceph/ceph/blob/master/COPYING
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon.
#
# This file is under the GNU Lesser General Public License, version 2.1
#
# Please submit bugfixes or comments via http://tracker.ceph.com/
#
#################################################################################
# conditional build section
#
# please read this for explanation of bcond syntax:
# https://rpm-software-management.github.io/rpm/manual/conditionalbuilds.html
#################################################################################
%bcond_with make_check
%bcond_with cmake_verbose_logging
%bcond_without ceph_test_package
%ifarch s390
%bcond_with tcmalloc
%else
%bcond_without tcmalloc
%endif
%bcond_without rbd_ssd_cache
%ifarch x86_64
%bcond_without rbd_rwl_cache
%else
%bcond_with rbd_rwl_cache
%endif
%if 0%{?fedora} || 0%{?rhel} || 0%{?openEuler}
%if 0%{?openEuler}
%bcond_with system_pmdk
%else
%ifarch s390x aarch64
%bcond_with system_pmdk
%else
%bcond_without system_pmdk
%endif
%endif
%bcond_without selinux
%bcond_without amqp_endpoint
%bcond_without kafka_endpoint
%bcond_without lttng
%bcond_without libradosstriper
%bcond_without ocf
%global luarocks_package_name luarocks
%bcond_without lua_packages
%global _remote_tarball_prefix https://download.ceph.com/tarballs/
%endif
%if 0%{?suse_version}
%ifarch s390x
%bcond_with system_pmdk
%else
%bcond_without system_pmdk
%endif
%bcond_with amqp_endpoint
%bcond_with cephfs_java
%bcond_with kafka_endpoint
%bcond_with libradosstriper
%ifarch x86_64 aarch64 ppc64le
%bcond_without lttng
%else
%bcond_with lttng
%endif
%bcond_with ocf
%bcond_with selinux
#Compat macro for _fillupdir macro introduced in Nov 2017
%if ! %{defined _fillupdir}
%global _fillupdir /var/adm/fillup-templates
%endif
#luarocks
%if 0%{?is_opensuse}
# openSUSE
%bcond_without lua_packages
%if 0%{?sle_version}
# openSUSE Leap
%global luarocks_package_name lua53-luarocks
%else
# openSUSE Tumbleweed
%global luarocks_package_name lua54-luarocks
%endif
%else
# SLE
%bcond_with lua_packages
%endif
%endif
%bcond_without crimson
%if 0%{?suse_version} || 0%{?openEuler}
%bcond_with jaeger
%else
%bcond_without jaeger
%endif
%if 0%{?fedora} || 0%{?suse_version} >= 1500 || 0%{?rhel}
# distros that ship cmd2 and/or colorama
%bcond_without cephfs_shell
%else
# distros that do _not_ ship cmd2/colorama
%bcond_with cephfs_shell
%endif
%if 0%{?fedora} || 0%{?rhel}
%bcond_without system_arrow
%else
%bcond_with system_arrow
%endif
# qat only supported for intel devices
%ifarch x86_64
%if 0%{?fedora} || 0%{?rhel}
%bcond_without system_qat
%else
# not fedora/rhel
%bcond_with system_qat
%endif
%else
# not x86_64
%bcond_with system_qat
%endif
%if 0%{?fedora} || 0%{?suse_version} || 0%{?rhel} || 0%{?openEuler}
%global weak_deps 1
%endif
%if %{with selinux}
# get selinux policy version
# Force 0.0.0 policy version for centos builds to avoid repository sync issues between rhel and centos
%if 0%{?centos}
%global _selinux_policy_version 0.0.0
%else
%{!?_selinux_policy_version: %global _selinux_policy_version 0.0.0}
%endif
%endif
%bcond_without cephadm_bundling
%bcond_without cephadm_pip_deps
%bcond_without dwz
%if %{with dwz}
%else
# disable dwz for 50% speedup at the cost of ~33% space
%global _find_debuginfo_dwz_opts %{nil}
%endif
%bcond_with sccache
%if 0%{?rhel} && 0%{?rhel} >= 10
%bcond_without pypkg
%else
%bcond_with pypkg
%endif
%{!?_udevrulesdir: %global _udevrulesdir /lib/udev/rules.d}
%{!?tmpfiles_create: %global tmpfiles_create systemd-tmpfiles --create}
%{!?python3_version_nodots: %global python3_version_nodots 3}
%{!?python3_version: %global python3_version 3}
%global c_ares_min_version 1.28.0
%if 0%{?rhel} && 0%{?rhel} < 10
%{!?gts_version: %global gts_version 13}
%endif
%if ! 0%{?suse_version}
# use multi-threaded xz compression: xz level 7 using ncpus threads
%global _source_payload w7T%{_smp_build_ncpus}.xzdio
%global _binary_payload w7T%{_smp_build_ncpus}.xzdio
%endif
%define smp_limit_mem_per_job() %( \
kb_per_job=%1 \
kb_total=$(head -3 /proc/meminfo | sed -n 's/MemAvailable:\\s*\\(.*\\) kB.*/\\1/p') \
jobs=$(( $kb_total / $kb_per_job )) \
[ $jobs -lt 1 ] && jobs=1 \
echo $jobs )
# $1==1: fresh install; $1==0: removal. Skip try-restart on upgrade ($1>1).
%define ceph_mgr_module_scripts() \
%post %1\
if [ $1 -eq 1 ] ; then\
/usr/bin/systemctl try-restart ceph-mgr.target >/dev/null 2>&1 || :\
fi\
\
%postun %1\
if [ $1 -eq 1 ] ; then\
/usr/bin/systemctl try-restart ceph-mgr.target >/dev/null 2>&1 || :\
fi
%if 0%{?_smp_ncpus_max} == 0
%if 0%{?__isa_bits} == 32
# 32-bit builds can use 3G memory max, which is not enough even for -j2
%global _smp_ncpus_max 1
%else
# 3.0 GiB mem per job
# SUSE distros use limit_build in the place of smp_limit_mem_per_job, please
# be sure to update it (in the build section, below) as well when changing this
# number.
%global _smp_ncpus_max %{smp_limit_mem_per_job 3000000}
%endif
%endif
# disable -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1, as gcc-toolset-{10,11}-annobin
# do not provide gcc-annobin.so anymore, despite that they provide annobin.so. but
# redhat-rpm-config still passes -fplugin=gcc-annobin to the compiler.
%undefine _annotated_build
%if 0%{?gts_version} > 0
%if 0%{gts_version} == 13
%if 0%{?enable_devtoolset13:1}
%enable_devtoolset13
%endif
%endif
%endif
#################################################################################
# main package definition
#################################################################################
Name: ceph
Version: @PROJECT_VERSION@
Release: @RPM_RELEASE@%{?dist}
%if 0%{?fedora} || 0%{?rhel}
Epoch: 2
%endif
# define _epoch_prefix macro which will expand to the empty string if epoch is
# undefined
%global _epoch_prefix %{?epoch:%{epoch}:}
Summary: User space components of the Ceph file system
License: LGPL-2.1-or-later AND LGPL-3.0-only AND CC-BY-SA-3.0 AND GPL-2.0-only AND BSL-1.0 AND BSD-2-Clause AND BSD-3-Clause AND MIT
%if 0%{?suse_version}
Group: System/Filesystems
%endif
URL: http://ceph.com/
Source0: %{?_remote_tarball_prefix}@TARBALL_BASENAME@.tar.bz2
%if 0%{?suse_version}
# _insert_obs_source_lines_here
ExclusiveArch: x86_64 aarch64 ppc64le s390x riscv64
%endif
#################################################################################
# dependencies that apply across all distro families
#################################################################################
Requires: ceph-osd = %{_epoch_prefix}%{version}-%{release}
Requires: ceph-mds = %{_epoch_prefix}%{version}-%{release}
Requires: ceph-mgr = %{_epoch_prefix}%{version}-%{release}
Requires: ceph-mon = %{_epoch_prefix}%{version}-%{release}
Requires(post): binutils
%if 0%{with cephfs_java}
BuildRequires: java-devel
BuildRequires: jpackage-utils
BuildRequires: sharutils
%endif
%if 0%{with selinux}
BuildRequires: checkpolicy
BuildRequires: selinux-policy-devel
%endif
BuildRequires: gperf
BuildRequires: cmake > 3.5
BuildRequires: pkgconfig(fuse3)
BuildRequires: git
BuildRequires: pkgconfig(grpc++)
# Before 13.3, an lto bug resulted in a segfault in SafeTimer and perhaps
# elsewhere. Require the fixed version so we can reenable lto. See
# ceph bug https://tracker.ceph.com/issues/63867
# and
# gcc bug https://bugzilla.redhat.com/show_bug.cgi?id=2241339
# for details.
%if 0%{?gts_version} == 0
BuildRequires: gcc-c++ >= 13.3
%else
BuildRequires: gcc-toolset-%{gts_version}-gcc-c++ >= 13.3
BuildRequires: gcc-toolset-%{gts_version}-runtime
BuildRequires: gcc-toolset-%{gts_version}-libatomic-devel
%endif
%if 0%{?fedora} || 0%{?rhel} == 9 || 0%{?openEuler}
BuildRequires: libatomic
%endif
%if 0%{with tcmalloc}
# libprofiler did not build on ppc64le until 2.7.90
%if 0%{?fedora} || 0%{?rhel} || 0%{?openEuler}
BuildRequires: gperftools-devel >= 2.7.90
%endif
%if 0%{?suse_version}
BuildRequires: gperftools-devel >= 2.4
%endif
%endif
BuildRequires: libaio-devel
BuildRequires: pkgconfig(blkid) >= 2.17
BuildRequires: pkgconfig(libcryptsetup)
BuildRequires: pkgconfig(libnbd)
BuildRequires: pkgconfig(libcurl)
BuildRequires: pkgconfig(libcap)
BuildRequires: pkgconfig(libcap-ng)
BuildRequires: pkgconfig(fmt) >= 6.2.1
BuildRequires: pkgconfig(libudev)
BuildRequires: pkgconfig(nss)
BuildRequires: pkgconfig(libkeyutils)
BuildRequires: pkgconfig(openssl)
BuildRequires: pkgconfig(ldap)
BuildRequires: pkgconfig(libibverbs)
BuildRequires: pkgconfig(librdmacm)
BuildRequires: pkgconfig(liblz4) >= 1.7
BuildRequires: pkgconfig(libnl-3.0)
BuildRequires: pkgconfig(liboath)
BuildRequires: libtool
BuildRequires: pkgconfig(libxml-2.0)
BuildRequires: make
BuildRequires: pkgconfig(ncurses)
BuildRequires: pkgconfig(icu-uc)
BuildRequires: patch
BuildRequires: perl
BuildRequires: pkgconfig
BuildRequires: procps
BuildRequires: python3
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-Cython
BuildRequires: python3-pip
BuildRequires: python3-wheel
BuildRequires: pkgconfig(snappy)
BuildRequires: pkgconfig(sqlite3)
BuildRequires: sudo
BuildRequires: pkgconfig(udev)
BuildRequires: pkgconfig(valgrind)
BuildRequires: which
BuildRequires: xfsprogs-devel
BuildRequires: xmlstarlet
BuildRequires: nasm
BuildRequires: pkgconfig(lua)
BuildRequires: pkgconfig(lmdb)
%if 0%{with crimson} || 0%{with jaeger}
BuildRequires: pkgconfig(yaml-cpp) >= 0.6
%endif
%if 0%{with amqp_endpoint}
BuildRequires: pkgconfig(librabbitmq)
%endif
%if 0%{with kafka_endpoint}
BuildRequires: pkgconfig(rdkafka) >= 1.1.0
%endif
%if 0%{with lua_packages}
Requires: lua-devel
Requires: %{luarocks_package_name}
%endif
%if 0%{with make_check}
BuildRequires: hostname
BuildRequires: jq
BuildRequires: pkgconfig(uuid)
BuildRequires: python3dist(bcrypt)
BuildRequires: python3dist(requests)
BuildRequires: python3dist(python-dateutil)
BuildRequires: python3dist(coverage)
BuildRequires: python3dist(pyopenssl)
BuildRequires: socat
BuildRequires: python3dist(asyncssh)
BuildRequires: python3dist(natsort)
%endif
BuildRequires: pkgconfig(thrift) >= 0.13.0
BuildRequires: pkgconfig(re2)
%if 0%{with jaeger}
BuildRequires: bison
BuildRequires: flex
BuildRequires: pkgconfig(nlohmann_json)
BuildRequires: pkgconfig(libevent)
%endif
%if 0%{with system_pmdk}
%if 0%{?suse_version}
BuildRequires: pkgconfig(libndctl) >= 63
%else
BuildRequires: pkgconfig(libndctl) >= 63
BuildRequires: pkgconfig(libdaxctl) >= 63
%endif
BuildRequires: pkgconfig(libpmem)
BuildRequires: pkgconfig(libpmemobj) >= 1.8
%endif
%if 0%{with system_arrow}
BuildRequires: pkgconfig(arrow)
BuildRequires: pkgconfig(parquet)
BuildRequires: pkgconfig(libutf8proc)
%endif
%if 0%{with system_qat}
BuildRequires: pkgconfig(qatlib)
BuildRequires: pkgconfig(qatzip)
%endif
%if 0%{with crimson}
BuildRequires: pkgconfig(libcares)
BuildRequires: pkgconfig(gnutls)
BuildRequires: pkgconfig(hwloc)
BuildRequires: pkgconfig(pciaccess)
BuildRequires: pkgconfig(libsctp)
BuildRequires: ragel
BuildRequires: systemtap-sdt-devel
BuildRequires: libubsan
BuildRequires: libasan
BuildRequires: pkgconfig(protobuf)
BuildRequires: protobuf-compiler
%if 0%{?gts_version} > 0
BuildRequires: gcc-toolset-%{gts_version}-gcc-plugin-annobin
BuildRequires: gcc-toolset-%{gts_version}-libubsan-devel
BuildRequires: gcc-toolset-%{gts_version}-libasan-devel
%endif
%endif
BuildRequires: python3dist(prettytable)
BuildRequires: python3dist(pyyaml)
BuildRequires: python3dist(sphinx)
#################################################################################
# distro-conditional dependencies
#################################################################################
%if 0%{?suse_version}
BuildRequires: pkgconfig(systemd)
BuildRequires: systemd-rpm-macros
%{?systemd_requires}
PreReq: %fillup_prereq
BuildRequires: fdupes
BuildRequires: memory-constraints
BuildRequires: net-tools
BuildRequires: pkgconfig(bzip2)
BuildRequires: ninja
#BuildRequires: krb5
#BuildRequires: krb5-devel
BuildRequires: cunit-devel
# for prometheus-alerts
BuildRequires: golang-github-prometheus-prometheus
BuildRequires: jsonnet
%endif
%if 0%{?fedora} || 0%{?rhel} || 0%{?openEuler}
Requires: systemd
BuildRequires: boost-random
BuildRequires: libatomic
BuildRequires: ninja-build
BuildRequires: numactl-devel
#BuildRequires: krb5-devel
BuildRequires: CUnit-devel
BuildRequires: python3-devel
%endif
# distro-conditional make check dependencies
%if 0%{with make_check}
BuildRequires: golang
BuildRequires: pkgconfig(xmlsec1)
BuildRequires: pkgconfig(xmlsec1-openssl)
BuildRequires: python3dist(cherrypy)
BuildRequires: python3dist(routes)
%if 0%{?fedora} || 0%{?rhel} || 0%{?openEuler}
BuildRequires: /usr/bin/promtool
BuildRequires: libtool-ltdl-devel
BuildRequires: xmlsec1
%ifarch x86_64
BuildRequires: xmlsec1-nss
%endif
BuildRequires: xmlsec1-openssl
BuildRequires: python3dist(scipy)
BuildRequires: python3dist(pyopenssl)
%endif
BuildRequires: jsonnet
%if 0%{?suse_version}
BuildRequires: golang-github-prometheus-prometheus
BuildRequires: libxmlsec1-1
BuildRequires: libxmlsec1-nss1
BuildRequires: libxmlsec1-openssl1
BuildRequires: python3-numpy-devel
%endif
%endif
# lttng and babeltrace for rbd-replay-prep
%if %{with lttng}
BuildRequires: pkgconfig(lttng-ust)
BuildRequires: pkgconfig(babeltrace)
%endif
BuildRequires: pkgconfig(expat)
#hardened-cc1
%if 0%{?fedora} || 0%{?rhel}
BuildRequires: redhat-rpm-config
%endif
%if 0%{?openEuler}
BuildRequires: openEuler-rpm-config
%endif
%if 0%{with crimson}
# EPEL9's cryptopp-devel ships its pkgconfig file as cryptopp.pc (providing
# pkgconfig(cryptopp)), while el10 and SUSE's cryptopp/libcryptopp-devel
# provide pkgconfig(libcryptopp); accept either.
BuildRequires: (pkgconfig(libcryptopp) or pkgconfig(cryptopp))
%if 0%{?suse_version}
BuildRequires: libnuma-devel
%endif
%endif
%if 0%{?rhel}
BuildRequires: python-rpm-macros
%endif
%description
Ceph is a massively scalable, open-source, distributed storage system that runs
on commodity hardware and delivers object, block and file system storage.
#################################################################################
# subpackages
#################################################################################
%package base
Summary: Ceph Base Package
%if 0%{?suse_version}
Group: System/Filesystems
%endif
Provides: ceph-test:/usr/bin/ceph-kvstore-tool
Requires: ceph-common = %{_epoch_prefix}%{version}-%{release}
Requires: librbd1 = %{_epoch_prefix}%{version}-%{release}
Requires: librados2 = %{_epoch_prefix}%{version}-%{release}
Requires: libcephfs2 = %{_epoch_prefix}%{version}-%{release}
Requires: librgw2 = %{_epoch_prefix}%{version}-%{release}
%if 0%{with selinux}
Requires: ceph-selinux = %{_epoch_prefix}%{version}-%{release}
%endif
Requires: findutils
Requires: grep
Requires: logrotate
Requires: psmisc
Requires: util-linux
Requires: which
%if 0%{?weak_deps}
Recommends: chrony
Recommends: nvme-cli
%if 0%{?suse_version}
Requires: smartmontools
%else
Recommends: smartmontools
%endif
%endif
%description base
Base is the package that includes all the files shared amongst ceph servers
%package -n cephadm
Summary: Utility to bootstrap Ceph clusters
BuildArch: noarch
Requires: lvm2
Requires: python3
Requires: openssh-server
Requires: which
%if 0%{?weak_deps}
Recommends: podman >= 2.0.2
%endif
# Cephadm zipapp: CMake sets CEPHADM_BUNDLED_DEPENDENCIES to pip, rpm, or none
# (see build / cmake block below):
# - with cephadm_bundling, with cephadm_pip_deps: pip at build, no stanzas here
# - with cephadm_bundling, without cephadm_pip_deps: build-time RPM deps only
# - without cephadm_bundling: unbundled cephadm, runtime Requires for yaml/jinja2
# CentOS Storage SIG #75389 needs the unbundled branch (--without cephadm_bundling)
# after dropping downstream patch 0036; pip-mode SIG builds are a separate SIG fix.
%if 0%{with cephadm_bundling}
%if 0%{without cephadm_pip_deps}
# Zipapp built from system RPMs at build time; bundled zipapp is self-contained at runtime.
BuildRequires: python3dist(jinja2) >= 2.10
BuildRequires: python3dist(pyyaml)
%endif
%dnl end without cephadm_pip_deps (CEPHADM_BUNDLED_DEPENDENCIES=rpm)
%else
# Unbundled cephadm: host must provide yaml and jinja2 at runtime.
Requires: python3dist(jinja2) >= 2.10
Requires: python3dist(pyyaml)
%endif
%dnl end with cephadm_bundling
%description -n cephadm
Utility to bootstrap a Ceph cluster and manage Ceph daemons deployed
with systemd and podman.
%package -n ceph-common
Summary: Ceph Common
%if 0%{?suse_version}
Group: System/Filesystems
%endif
Requires: librbd1 = %{_epoch_prefix}%{version}-%{release}
Requires: librados2 = %{_epoch_prefix}%{version}-%{release}
Requires: libcephfs2 = %{_epoch_prefix}%{version}-%{release}
Requires: python3-rados = %{_epoch_prefix}%{version}-%{release}
Requires: python3-rbd = %{_epoch_prefix}%{version}-%{release}
Requires: python3-cephfs = %{_epoch_prefix}%{version}-%{release}
Requires: python3-rgw = %{_epoch_prefix}%{version}-%{release}
Requires: python3-ceph-argparse = %{_epoch_prefix}%{version}-%{release}
Requires: python3-ceph-common = %{_epoch_prefix}%{version}-%{release}
Requires: python3dist(prettytable)
%if 0%{with libradosstriper}
Requires: libradosstriper1 = %{_epoch_prefix}%{version}-%{release}
%endif
%{?systemd_requires}
%if 0%{?suse_version}
Requires(pre): pwdutils
%endif
%description -n ceph-common
Common utilities to mount and interact with a ceph storage cluster.
Comprised of files that are common to Ceph clients and servers.
%package mds
Summary: Ceph Metadata Server Daemon
%if 0%{?suse_version}
Group: System/Filesystems
%endif
Requires: ceph-base = %{_epoch_prefix}%{version}-%{release}
%description mds
ceph-mds is the metadata server daemon for the Ceph distributed file system.
One or more instances of ceph-mds collectively manage the file system
namespace, coordinating access to the shared OSD cluster.
%package mon
Summary: Ceph Monitor Daemon
%if 0%{?suse_version}
Group: System/Filesystems
%endif
Provides: ceph-test:/usr/bin/ceph-monstore-tool
Requires: ceph-base = %{_epoch_prefix}%{version}-%{release}
%description mon
ceph-mon is the cluster monitor daemon for the Ceph distributed file
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 mon-client-nvmeof
Summary: Ceph NVMeoF Gateway Monitor Client
%if 0%{?suse_version}
Group: System/Filesystems
%endif
Provides: ceph-test:/usr/bin/ceph-nvmeof-monitor-client
Requires: librados2 = %{_epoch_prefix}%{version}-%{release}
%description mon-client-nvmeof
Ceph NVMeoF Gateway Monitor Client distributes Paxos ANA info
to NVMeoF Gateway and provides beacons to the monitor daemon
%package mgr
Summary: Ceph Manager Daemon
%if 0%{?suse_version}
Group: System/Filesystems
%endif
Requires: ceph-base = %{_epoch_prefix}%{version}-%{release}
Requires: ceph-mgr-modules-core = %{_epoch_prefix}%{version}-%{release}
Requires: libcephsqlite = %{_epoch_prefix}%{version}-%{release}
%if 0%{?weak_deps}
Recommends: ceph-mgr-alerts = %{_epoch_prefix}%{version}-%{release}
Recommends: ceph-mgr-cephadm = %{_epoch_prefix}%{version}-%{release}
Recommends: ceph-mgr-cli-api = %{_epoch_prefix}%{version}-%{release}
Recommends: ceph-mgr-dashboard = %{_epoch_prefix}%{version}-%{release}
Recommends: ceph-mgr-diskprediction-local = %{_epoch_prefix}%{version}-%{release}
Recommends: ceph-mgr-influx = %{_epoch_prefix}%{version}-%{release}
Recommends: ceph-mgr-insights = %{_epoch_prefix}%{version}-%{release}
Recommends: ceph-mgr-iostat = %{_epoch_prefix}%{version}-%{release}
Recommends: ceph-mgr-k8sevents = %{_epoch_prefix}%{version}-%{release}
Recommends: ceph-mgr-localpool = %{_epoch_prefix}%{version}-%{release}
Recommends: ceph-mgr-mds-autoscaler = %{_epoch_prefix}%{version}-%{release}
Recommends: ceph-mgr-mirroring = %{_epoch_prefix}%{version}-%{release}
Recommends: ceph-mgr-nfs = %{_epoch_prefix}%{version}-%{release}
Recommends: ceph-mgr-nvmeof = %{_epoch_prefix}%{version}-%{release}
Recommends: ceph-mgr-osd-perf-query = %{_epoch_prefix}%{version}-%{release}
Recommends: ceph-mgr-osd-support = %{_epoch_prefix}%{version}-%{release}
Recommends: ceph-mgr-prometheus = %{_epoch_prefix}%{version}-%{release}
Recommends: ceph-mgr-rgw = %{_epoch_prefix}%{version}-%{release}
Recommends: ceph-mgr-selftest = %{_epoch_prefix}%{version}-%{release}
Recommends: ceph-mgr-smb = %{_epoch_prefix}%{version}-%{release}
Recommends: ceph-mgr-snap-schedule = %{_epoch_prefix}%{version}-%{release}
Recommends: ceph-mgr-stats = %{_epoch_prefix}%{version}-%{release}
Recommends: ceph-mgr-telegraf = %{_epoch_prefix}%{version}-%{release}
Recommends: ceph-mgr-test-orchestrator = %{_epoch_prefix}%{version}-%{release}
%endif
%description mgr
ceph-mgr enables python modules that provide services (such as the REST
module derived from Calamari) and expose CLI hooks. ceph-mgr gathers
the cluster maps, the daemon metadata, and performance counters, and
exposes all these to the python modules.
%package mgr-dashboard
Summary: Ceph Dashboard
BuildArch: noarch
%if 0%{?suse_version}
Group: System/Filesystems
%endif
Requires: ceph-mgr = %{_epoch_prefix}%{version}-%{release}
Requires: ceph-mgr-smb = %{_epoch_prefix}%{version}-%{release}
Requires: ceph-grafana-dashboards = %{_epoch_prefix}%{version}-%{release}
Requires: ceph-prometheus-alerts = %{_epoch_prefix}%{version}-%{release}
%if 0%{?fedora} || 0%{?rhel}
Requires: python3dist(grpcio)
Requires: python3dist(grpcio-tools)
Requires: python3dist(jmespath)
Requires: python3dist(xmltodict)
%endif
Requires: python3dist(cherrypy)
Requires: python3dist(routes)
%if 0%{?weak_deps}
Recommends: python3dist(python3-saml)
%if 0%{?fedora}
Recommends: python3dist(grpcio)
Recommends: python3dist(grpcio-tools)
%endif
%endif
%description mgr-dashboard
ceph-mgr-dashboard is a manager 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 mgr-diskprediction-local
Summary: Ceph Manager module for predicting disk failures
BuildArch: noarch
%if 0%{?suse_version}
Group: System/Filesystems
%endif
Requires: ceph-mgr = %{_epoch_prefix}%{version}-%{release}
Requires: python3dist(numpy)
%if 0%{?fedora} || 0%{?suse_version} || 0%{?openEuler}
Requires: python3dist(scikit-learn)
%endif
Requires: python3dist(scipy)
%description mgr-diskprediction-local
ceph-mgr-diskprediction-local is a ceph-mgr module that tries to predict
disk failures using local algorithms and machine-learning databases.
%package mgr-modules-core
Summary: Ceph Manager modules which are always enabled
BuildArch: noarch
%if 0%{?suse_version}
Group: System/Filesystems
%endif
Requires: python3dist(prettytable)
Requires: python3dist(requests)
Requires: python3dist(python-dateutil)
Requires: python3dist(pyyaml)
%if 0%{?weak_deps}
Recommends: ceph-mgr-rook = %{_epoch_prefix}%{version}-%{release}
%endif
%description mgr-modules-core
ceph-mgr-modules-core provides a set of modules which are always
enabled by ceph-mgr.
%package mgr-modules-standard
BuildArch: noarch
Summary: Ceph Manager modules without heavy external dependencies
%if 0%{?suse_version}
Group: System/Filesystems
%endif
Requires: ceph-mgr-modules-core = %{_epoch_prefix}%{version}-%{release}
Requires: ceph-mgr-alerts = %{_epoch_prefix}%{version}-%{release}
Requires: ceph-mgr-influx = %{_epoch_prefix}%{version}-%{release}
Requires: ceph-mgr-insights = %{_epoch_prefix}%{version}-%{release}
Requires: ceph-mgr-iostat = %{_epoch_prefix}%{version}-%{release}
Requires: ceph-mgr-localpool = %{_epoch_prefix}%{version}-%{release}
Requires: ceph-mgr-mds-autoscaler = %{_epoch_prefix}%{version}-%{release}
Requires: ceph-mgr-mirroring = %{_epoch_prefix}%{version}-%{release}
Requires: ceph-mgr-nfs = %{_epoch_prefix}%{version}-%{release}
Requires: ceph-mgr-nvmeof = %{_epoch_prefix}%{version}-%{release}
Requires: ceph-mgr-osd-perf-query = %{_epoch_prefix}%{version}-%{release}
Requires: ceph-mgr-osd-support = %{_epoch_prefix}%{version}-%{release}
Requires: ceph-mgr-prometheus = %{_epoch_prefix}%{version}-%{release}
Requires: ceph-mgr-rgw = %{_epoch_prefix}%{version}-%{release}
Requires: ceph-mgr-selftest = %{_epoch_prefix}%{version}-%{release}
Requires: ceph-mgr-smb = %{_epoch_prefix}%{version}-%{release}
Requires: ceph-mgr-snap-schedule = %{_epoch_prefix}%{version}-%{release}
Requires: ceph-mgr-stats = %{_epoch_prefix}%{version}-%{release}
Requires: ceph-mgr-telegraf = %{_epoch_prefix}%{version}-%{release}
Requires: ceph-mgr-test-orchestrator = %{_epoch_prefix}%{version}-%{release}
%description mgr-modules-standard
ceph-mgr-modules-standard is a meta-package with no files of its own.
It pulls in the full set of ceph-mgr modules that were formerly shipped
together in ceph-mgr-modules-core, so that existing users or scripts
that want the complete standard module set can depend on a single package.
%package mgr-rook
BuildArch: noarch
Summary: Ceph Manager module for Rook-based orchestration
%if 0%{?suse_version}
Group: System/Filesystems
%endif
Requires: ceph-mgr = %{_epoch_prefix}%{version}-%{release}
Requires: ceph-mgr-nfs = %{_epoch_prefix}%{version}-%{release}
Requires: python3dist(kubernetes)
Requires: python3dist(jsonpatch)
%description mgr-rook
ceph-mgr-rook is a ceph-mgr module for orchestration functions using
a Rook backend.
%package mgr-k8sevents
BuildArch: noarch
Summary: Ceph Manager module to orchestrate ceph-events to kubernetes' events API
%if 0%{?suse_version}
Group: System/Filesystems
%endif
Requires: ceph-mgr = %{_epoch_prefix}%{version}-%{release}
Requires: python3dist(kubernetes)
%description mgr-k8sevents
ceph-mgr-k8sevents is a ceph-mgr module that sends every ceph-events
to kubernetes' events API
%package mgr-cephadm
Summary: Ceph Manager module for cephadm-based orchestration
BuildArch: noarch
%if 0%{?suse_version}
Group: System/Filesystems
%endif
Requires: ceph-mgr = %{_epoch_prefix}%{version}-%{release}
Requires: ceph-mgr-nfs = %{_epoch_prefix}%{version}-%{release}
Requires: ceph-mgr-smb = %{_epoch_prefix}%{version}-%{release}
Requires: python3dist(asyncssh)
Requires: python3dist(bcrypt)
Requires: python3dist(natsort)
Requires: python3dist(pyopenssl)
Requires: cephadm = %{_epoch_prefix}%{version}-%{release}
Requires: python3dist(cherrypy)
Requires: python3dist(jinja2)
%if 0%{?suse_version}
Requires: openssh
%endif
%if 0%{?rhel} || 0%{?fedora} || 0%{?openEuler}
Requires: openssh-clients
%endif
%description mgr-cephadm
ceph-mgr-cephadm is a ceph-mgr module for orchestration functions using
the integrated cephadm deployment tool management operations.
%package mgr-cli-api
BuildArch: noarch
Summary: Ceph Manager module providing a CLI REST API
%if 0%{?suse_version}
Group: System/Filesystems
%endif
Requires: ceph-mgr = %{_epoch_prefix}%{version}-%{release}
%description mgr-cli-api
ceph-mgr-cli-api is a ceph-mgr module that provides a REST-like API
for the Ceph command-line interface.
%package mgr-alerts
BuildArch: noarch
Summary: Ceph Manager module for sending alerts on health state changes
%if 0%{?suse_version}
Group: System/Filesystems
%endif
Requires: ceph-mgr = %{_epoch_prefix}%{version}-%{release}
Obsoletes: ceph-mgr-modules-core < %{_epoch_prefix}%{version}-%{release}
%description mgr-alerts
ceph-mgr-alerts is a ceph-mgr module that sends email notifications
on cluster health state changes.
%package mgr-influx
BuildArch: noarch
Summary: Ceph Manager module for sending metrics to InfluxDB
%if 0%{?suse_version}
Group: System/Filesystems
%endif
Requires: ceph-mgr = %{_epoch_prefix}%{version}-%{release}
%if 0%{?weak_deps}
Recommends: python3dist(influxdb)
%endif
Obsoletes: ceph-mgr-modules-core < %{_epoch_prefix}%{version}-%{release}
%description mgr-influx
ceph-mgr-influx is a ceph-mgr module that sends performance metrics
to an InfluxDB time-series database.
%package mgr-insights
BuildArch: noarch
Summary: Ceph Manager module for recording cluster health history
%if 0%{?suse_version}
Group: System/Filesystems
%endif
Requires: ceph-mgr = %{_epoch_prefix}%{version}-%{release}
Obsoletes: ceph-mgr-modules-core < %{_epoch_prefix}%{version}-%{release}
%description mgr-insights
ceph-mgr-insights is a ceph-mgr module that records cluster health
history to support cluster analysis.
%package mgr-iostat
BuildArch: noarch
Summary: Ceph Manager module for displaying I/O statistics
%if 0%{?suse_version}
Group: System/Filesystems
%endif
Requires: ceph-mgr = %{_epoch_prefix}%{version}-%{release}
Obsoletes: ceph-mgr-modules-core < %{_epoch_prefix}%{version}-%{release}
%description mgr-iostat
ceph-mgr-iostat is a ceph-mgr module that displays a running summary
of I/O statistics across the cluster.
%package mgr-localpool
BuildArch: noarch
Summary: Ceph Manager module for creating per-host CRUSH rules and pools
%if 0%{?suse_version}
Group: System/Filesystems
%endif
Requires: ceph-mgr = %{_epoch_prefix}%{version}-%{release}
Obsoletes: ceph-mgr-modules-core < %{_epoch_prefix}%{version}-%{release}
%description mgr-localpool
ceph-mgr-localpool is a ceph-mgr module that automatically creates
per-host CRUSH rules and pools.
%package mgr-mds-autoscaler
BuildArch: noarch
Summary: Ceph Manager module for automatically scaling MDS daemons
%if 0%{?suse_version}
Group: System/Filesystems
%endif
Requires: ceph-mgr = %{_epoch_prefix}%{version}-%{release}
Obsoletes: ceph-mgr-modules-core < %{_epoch_prefix}%{version}-%{release}
%description mgr-mds-autoscaler
ceph-mgr-mds-autoscaler is a ceph-mgr module that automatically scales
the number of MDS daemons based on file system needs.
%package mgr-mirroring
BuildArch: noarch
Summary: Ceph Manager module for managing CephFS mirroring
%if 0%{?suse_version}
Group: System/Filesystems
%endif
Requires: ceph-mgr = %{_epoch_prefix}%{version}-%{release}
Obsoletes: ceph-mgr-modules-core < %{_epoch_prefix}%{version}-%{release}
%description mgr-mirroring
ceph-mgr-mirroring is a ceph-mgr module that provides management
commands for CephFS mirroring.
%package mgr-nfs
BuildArch: noarch
Summary: Ceph Manager module for managing NFS gateway deployments
%if 0%{?suse_version}
Group: System/Filesystems
%endif
Requires: ceph-mgr = %{_epoch_prefix}%{version}-%{release}
Obsoletes: ceph-mgr-modules-core < %{_epoch_prefix}%{version}-%{release}
%description mgr-nfs
ceph-mgr-nfs is a ceph-mgr module that manages NFS gateway deployments
on top of CephFS and RGW.
%package mgr-nvmeof
BuildArch: noarch
Summary: Ceph Manager module for managing NVMe-oF gateway deployments
%if 0%{?suse_version}
Group: System/Filesystems
%endif
Requires: ceph-mgr = %{_epoch_prefix}%{version}-%{release}
Obsoletes: ceph-mgr-modules-core < %{_epoch_prefix}%{version}-%{release}
%description mgr-nvmeof
ceph-mgr-nvmeof is a ceph-mgr module that manages NVMe-oF gateway
deployments for Ceph RBD.
%package mgr-osd-perf-query
BuildArch: noarch
Summary: Ceph Manager module for OSD performance counter queries
%if 0%{?suse_version}
Group: System/Filesystems
%endif
Requires: ceph-mgr = %{_epoch_prefix}%{version}-%{release}
Requires: python3dist(prettytable)
Obsoletes: ceph-mgr-modules-core < %{_epoch_prefix}%{version}-%{release}
%description mgr-osd-perf-query
ceph-mgr-osd-perf-query is a ceph-mgr module that exposes OSD
performance counter query functionality.
%package mgr-osd-support
BuildArch: noarch
Summary: Ceph Manager module for additional OSD management commands
%if 0%{?suse_version}
Group: System/Filesystems
%endif
Requires: ceph-mgr = %{_epoch_prefix}%{version}-%{release}
Obsoletes: ceph-mgr-modules-core < %{_epoch_prefix}%{version}-%{release}
%description mgr-osd-support
ceph-mgr-osd-support is a ceph-mgr module that provides additional
OSD management commands.
%package mgr-prometheus
BuildArch: noarch
Summary: Ceph Manager module for exposing metrics to Prometheus
%if 0%{?suse_version}
Group: System/Filesystems
%endif
Requires: ceph-mgr = %{_epoch_prefix}%{version}-%{release}
Obsoletes: ceph-mgr-modules-core < %{_epoch_prefix}%{version}-%{release}
Requires: python3dist(cherrypy)
%description mgr-prometheus
ceph-mgr-prometheus is a ceph-mgr module that exposes cluster metrics
in Prometheus exposition format.
%package mgr-rgw
BuildArch: noarch
Summary: Ceph Manager module for RADOS Gateway management
%if 0%{?suse_version}
Group: System/Filesystems
%endif
Requires: ceph-mgr = %{_epoch_prefix}%{version}-%{release}
Obsoletes: ceph-mgr-modules-core < %{_epoch_prefix}%{version}-%{release}
%description mgr-rgw
ceph-mgr-rgw is a ceph-mgr module that provides management and status
commands for the RADOS Gateway.
%package mgr-selftest
BuildArch: noarch
Summary: Ceph Manager module for testing the manager framework
%if 0%{?suse_version}
Group: System/Filesystems
%endif
Requires: ceph-mgr = %{_epoch_prefix}%{version}-%{release}
Obsoletes: ceph-mgr-modules-core < %{_epoch_prefix}%{version}-%{release}
%description mgr-selftest
ceph-mgr-selftest is a ceph-mgr module used for testing the manager
framework.
%package mgr-smb
BuildArch: noarch
Summary: Ceph Manager module for managing SMB gateway deployments
%if 0%{?suse_version}
Group: System/Filesystems
%endif
Requires: ceph-mgr = %{_epoch_prefix}%{version}-%{release}
Obsoletes: ceph-mgr-modules-core < %{_epoch_prefix}%{version}-%{release}
%description mgr-smb
ceph-mgr-smb is a ceph-mgr module that manages SMB gateway
deployments on Ceph.