Skip to content
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
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ stackhpc.cephadm Release Notes

.. contents:: Topics

v1.22.0
=======

Minor Changes
-------------

- Add Tentacle support

v1.21.1
=======

Expand Down
5 changes: 5 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,8 @@ releases:
- prechecks - change groups existence check to run once
- prechecks - fix groups existing assertion
release_date: '2025-11-12'
1.22.0:
changes:
minor_changes:
- Add Tentacle support
release_date: '2025-11-12'
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace: "stackhpc"
name: "cephadm"
version: "1.21.1"
version: "1.22.0"
readme: "README.md"
authors:
- "Michal Nasiadka"
Expand Down
1 change: 1 addition & 0 deletions roles/cephadm/vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ cephadm_ceph_releases:
- quincy
- reef
- squid
- tentacle
cephadm_apt_key_url: "https://download.ceph.com/keys/release.asc"
cephadm_apt_key_path: "/usr/local/share/keyrings/ceph.asc"
3 changes: 2 additions & 1 deletion tests/playbooks/pre.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
logs_dir: "/tmp/logs"
roles:
- ensure-output-dirs
- ensure-pip
- role: "ensure-pip"
when: ansible_facts.distribution == "Ubuntu"
- role: "ensure-docker"
when: cephadm_container_engine == "docker"
- role: "ensure-podman"
Expand Down
28 changes: 28 additions & 0 deletions zuul.d/jobs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,20 @@
cephadm_ceph_release: squid
cephadm_container_engine: podman

- job:
name: cephadm-noble-multinode-docker-tentacle
parent: .cephadm-noble-multinode-template
vars:
cephadm_ceph_release: tentacle
cephadm_container_engine: docker

- job:
name: cephadm-noble-multinode-podman-tentacle
parent: .cephadm-noble-multinode-template
vars:
cephadm_ceph_release: tentacle
cephadm_container_engine: podman

# Rocky 9

- job:
Expand Down Expand Up @@ -113,3 +127,17 @@
vars:
cephadm_ceph_release: squid
cephadm_container_engine: podman

- job:
name: cephadm-rocky9-multinode-docker-tentacle
parent: .cephadm-rocky9-multinode-template
vars:
cephadm_ceph_release: tentacle
cephadm_container_engine: docker

- job:
name: cephadm-rocky9-multinode-podman-tentacle
parent: .cephadm-rocky9-multinode-template
vars:
cephadm_ceph_release: tentacle
cephadm_container_engine: podman
Loading