Skip to content

Commit 2c73cf6

Browse files
authored
Merge pull request #67 from stackhpc/quincy
Add support for Quincy release
2 parents 93f2038 + 3d85b24 commit 2c73cf6

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This repo contains `stackhpc.cephadm` Ansible Collection. The collection include
66

77
## Tested with Ansible
88

9-
Tested with the current Ansible 2.9 releases.
9+
Tested with the current Ansible 2.9 and 2.10 releases.
1010

1111
## Included content
1212

galaxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
namespace: "stackhpc"
22
name: "cephadm"
3-
version: "1.8.0"
3+
version: "1.9.0"
44
readme: "README.md"
55
authors:
66
- "Michal Nasiadka"

roles/cephadm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ All Ceph hosts must be in the `ceph` group.
2727
## Role variables
2828

2929
* General
30-
* `cephadm_ceph_release`: Ceph release to deploy (default: octopus)
30+
* `cephadm_ceph_release`: Ceph release to deploy (default: pacific)
3131
* `cephadm_fsid`: FSID to use for cluster (default: empty - cephadm will generate FSID)
3232
* `cephadm_recreate`: If existing cluster should be destroyed and recreated (default: False)
3333
* `cephadm_custom_repos`: If enabled - the role won't define yum/apt repositories (default: False)

roles/cephadm/defaults/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
cephadm_ceph_release: octopus
2+
cephadm_ceph_release: pacific
33
cephadm_skip_prechecks: False
44
# FSID
55
cephadm_fsid: ""

roles/cephadm/vars/main.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ cephadm_rpm_repos:
33
- "$basearch"
44
- "noarch"
55
cephadm_ceph_releases:
6-
- "octopus"
7-
- "pacific"
6+
- octopus
7+
- pacific
8+
- quincy
89
cephadm_apt_key_url: "https://download.ceph.com/keys/release.asc"
910
cephadm_apt_key_path: "/usr/local/share/keyrings/ceph.asc"

0 commit comments

Comments
 (0)