diff --git a/README.md b/README.md index c4649bf..6e9f050 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ This repo contains `stackhpc.cephadm` Ansible Collection. The collection include ## Tested with Ansible -Tested with the current Ansible 2.9 releases. +Tested with the current Ansible 2.9 and 2.10 releases. ## Included content diff --git a/galaxy.yml b/galaxy.yml index e548617..515eff0 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: "stackhpc" name: "cephadm" -version: "1.8.0" +version: "1.9.0" readme: "README.md" authors: - "Michal Nasiadka" diff --git a/roles/cephadm/README.md b/roles/cephadm/README.md index e1dec4c..724e467 100644 --- a/roles/cephadm/README.md +++ b/roles/cephadm/README.md @@ -27,7 +27,7 @@ All Ceph hosts must be in the `ceph` group. ## Role variables * General - * `cephadm_ceph_release`: Ceph release to deploy (default: octopus) + * `cephadm_ceph_release`: Ceph release to deploy (default: pacific) * `cephadm_fsid`: FSID to use for cluster (default: empty - cephadm will generate FSID) * `cephadm_recreate`: If existing cluster should be destroyed and recreated (default: False) * `cephadm_custom_repos`: If enabled - the role won't define yum/apt repositories (default: False) diff --git a/roles/cephadm/defaults/main.yml b/roles/cephadm/defaults/main.yml index 6a0fc88..6b7b97e 100644 --- a/roles/cephadm/defaults/main.yml +++ b/roles/cephadm/defaults/main.yml @@ -1,5 +1,5 @@ --- -cephadm_ceph_release: octopus +cephadm_ceph_release: pacific cephadm_skip_prechecks: False # FSID cephadm_fsid: "" diff --git a/roles/cephadm/vars/main.yml b/roles/cephadm/vars/main.yml index e84f64e..70a20da 100644 --- a/roles/cephadm/vars/main.yml +++ b/roles/cephadm/vars/main.yml @@ -3,7 +3,8 @@ cephadm_rpm_repos: - "$basearch" - "noarch" cephadm_ceph_releases: - - "octopus" - - "pacific" + - octopus + - pacific + - quincy cephadm_apt_key_url: "https://download.ceph.com/keys/release.asc" cephadm_apt_key_path: "/usr/local/share/keyrings/ceph.asc"