Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support building a Debian 12 Reef container image #2231

Merged
merged 1 commit into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ceph-releases/ALL/debian/10/__OS_CODENAME__
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
buster
1 change: 1 addition & 0 deletions ceph-releases/ALL/debian/11/__OS_CODENAME__
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bullseye
1 change: 1 addition & 0 deletions ceph-releases/ALL/debian/12/__OS_CODENAME__
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bookworm
1 change: 1 addition & 0 deletions ceph-releases/ALL/debian/13/__OS_CODENAME__
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
trixie
1 change: 1 addition & 0 deletions ceph-releases/ALL/debian/14/__OS_CODENAME__
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
forky
5 changes: 5 additions & 0 deletions ceph-releases/ALL/debian/__CEPH_MGR_PACKAGES__
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
ceph-mgr__ENV_[CEPH_POINT_RELEASE]__ \
ceph-mgr-cephadm__ENV_[CEPH_POINT_RELEASE]__ \
ceph-mgr-dashboard__ENV_[CEPH_POINT_RELEASE]__ \
ceph-mgr-k8sevents__ENV_[CEPH_POINT_RELEASE]__ \
ceph-mgr-rook__ENV_[CEPH_POINT_RELEASE]__
2 changes: 2 additions & 0 deletions ceph-releases/ALL/debian/__UTIL_PACKAGES__
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
procps \
hostname
29 changes: 29 additions & 0 deletions ceph-releases/ALL/debian/daemon-base/__CEPH_BASE_PACKAGES__
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
\
ca-certificates \
e2fsprogs \
ceph-common__ENV_[CEPH_POINT_RELEASE]__ \
ceph-mon__ENV_[CEPH_POINT_RELEASE]__ \
ceph-osd__ENV_[CEPH_POINT_RELEASE]__ \
__CEPHFS_PACKAGES__ \
rbd-mirror__ENV_[CEPH_POINT_RELEASE]__ \
__CEPH_MGR_PACKAGES__\
__CEPH_GRAFANA_PACKAGES__ \
kmod \
lvm2 \
gdisk \
smartmontools \
nvme-cli \
udev \
sg3-utils \
__UTIL_PACKAGES__ \
__RADOSGW_PACKAGES__ \
__GANESHA_PACKAGES__ \
__ISCSI_PACKAGES__ \
__CSI_PACKAGES__ \
__CRIMSON_PACKAGES__ \
__CEPH_IMMUTABLE_OBJECT_CACHE_PACKAGE__ \
__SCIKIT_LEARN__ \
__CEPH_VOLUME_PACKAGE__ \
__CEPH_EXPORTER_PACKAGE__ \
__CEPH_NODE_PROXY_PACKAGE__ \
__CEPH_IBM_PACKAGES__
15 changes: 6 additions & 9 deletions ceph-releases/ALL/debian/daemon-base/__DOCKERFILE_INSTALL__
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
# add the necessary repos
# add the necessary repo using extrepo authenticated method
DEBIAN_FRONTEND=noninteractive apt-get dist-upgrade && \
echo "deb http://obs.linaro.org/ERP:/ceph-ansible:/${CEPH_VERSION}/Debian___ENV_[DISTRO_VERSION]__ ./" \
>> /etc/apt/sources.list.d/erp.list && \
echo "deb http://deb.debian.org/debian/ __OS_CODENAME__-backports main" \
>> /etc/apt/sources.list.d/erp.list && \
echo "deb http://download.ceph.com/debian-${CEPH_VERSION} __OS_CODENAME__ main" \
>> /etc/apt/sources.list.d/ceph.list && \
curl http://obs.linaro.org/ERP:/ceph-ansible:/${CEPH_VERSION}/Debian___ENV_[DISTRO_VERSION]__/Release.key | apt-key add - && \
curl https://download.ceph.com/keys/release.asc | apt-key add - && \
apt-get install extrepo && \
extrepo enable ceph_${CEPH_VERSION} && \
echo "Package: *" >/etc/apt/preferences.d/99-prio-from-osbpo && \
echo "Pin: release o=osbpo" >>/etc/apt/preferences.d/99-prio-from-osbpo && \
echo "Pin-Priority: 900" >>/etc/apt/preferences.d/99-prio-from-osbpo && \
DEBIAN_FRONTEND=noninteractive apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -yy --force-yes --no-install-recommends \
__CEPH_BASE_PACKAGES__
Loading