Skip to content

Set cephadm_custom_repos: true by default for Ubuntu Noble #177

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

Merged
merged 1 commit into from
Mar 27, 2025
Merged
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
6 changes: 5 additions & 1 deletion roles/cephadm/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ cephadm_fsid: ""
# Recreate cluster
cephadm_recreate: false
# Packages
cephadm_custom_repos: false
# NOTE(seunghun1ee): Set cephadm_custom_repos to true by default when host OS
# is Ubuntu Noble.
# This is because Ceph images for Noble are coming from Ubuntu repository
# https://packages.ubuntu.com/noble-updates/cephadm
cephadm_custom_repos: "{{ ansible_facts.distribution_release == 'noble' }}"
cephadm_package_update: false
# Images
cephadm_image: ""
Expand Down
Loading