-
Notifications
You must be signed in to change notification settings - Fork 141
install cephadm on all nodes #3552
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -97,6 +97,15 @@ | |
| cifmw_admin_prikey: "{{ private_key_get['content'] | b64decode }}" | ||
| cifmw_admin_distribute_private_key: true | ||
| no_log: true | ||
| post_tasks: | ||
| # In case of adoption cases with external ceph, cephadm and the | ||
| # dependant packages (lvm2) are missing on few ceph nodes, so | ||
| # installing cephadm on all nodes. | ||
| - name: Install cephadm package on all nodes | ||
| ansible.builtin.include_role: | ||
| name: cifmw_cephadm | ||
| tasks_from: install_cephadm | ||
| when: cifmw_cephadm_install_on_all_nodes | default(false) | bool | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I see that the purpose here is to
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For example we could have a small "Prerequisites" playbook that does the |
||
|
|
||
| - name: Create Block Device on target nodes | ||
| tags: block | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cifmw_cephadm_install_on_all_nodes: truevar will be used only by the adoption jobs which uses external ceph.