The official installer is now cephadm. stable-6.0 is the last
release of ceph-ansible such as we know it.
It will become a playbook intended for deploying minimal
Ceph cluster (mostly for development/testing purposes)
Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
-ceph-ansible
+ceph-ansible -- DEPRECATED --
============
+
+**NOTE: cephadm is the new official installer, you should consider migrating to cephadm.**
+
Ansible playbooks for Ceph, the distributed filesystem.
Please refer to our hosted documentation here: https://docs.ceph.com/projects/ceph-ansible/en/latest/
You can view documentation for our ``stable-*`` branches by substituting ``master`` in the link
-above for the name of the branch. For example: https://docs.ceph.com/projects/ceph-ansible/en/stable-5.0/
+above for the name of the branch. For example: https://docs.ceph.com/projects/ceph-ansible/en/stable-6.0/
---
# Defines deployment design and assigns role to server groups
+- hosts: localhost
+ connection: local
+ tasks:
+ - name: Warn about ceph-ansible deprecation
+ debug:
+ msg: "cephadm is the new official installer. Please, consider migrating.
+ See https://docs.ceph.com/en/latest/cephadm/install for new deployments
+ or https://docs.ceph.com/en/latest/cephadm/adoption for migrating existing deployments."
+ retries: 9
+ delay: 2
+ until: false
+ ignore_errors: true
+ when: not skip_deprecation_warn | default(false) | bool
- hosts:
- mons
---
# Defines deployment design and assigns role to server groups
+- hosts: localhost
+ connection: local
+ tasks:
+ - name: Warn about ceph-ansible deprecation
+ debug:
+ msg: "cephadm is the new official installer. Please, consider migrating.
+ See https://docs.ceph.com/en/latest/cephadm/install for new deployments
+ or https://docs.ceph.com/en/latest/cephadm/adoption for migrating existing deployments."
+ retries: 9
+ delay: 2
+ until: false
+ ignore_errors: true
+ when: not skip_deprecation_warn | default(false) | bool
+
- hosts:
- mons
- osds