mirror of https://github.com/ceph/ceph-ansible.git
Add octopus release
Add the 15th ceph release: octopus. Signed-off-by: Dimitri Savineau <dsavinea@redhat.com>pull/4410/head
parent
8a666bfd15
commit
5e5d5c2d87
|
@ -28,6 +28,7 @@ dummy:
|
|||
# luminous: 12
|
||||
# mimic: 13
|
||||
# nautilus: 14
|
||||
# octopus: 15
|
||||
# dev: 99
|
||||
|
||||
# Directory to fetch cluster fsid, keys etc...
|
||||
|
|
|
@ -28,6 +28,7 @@ dummy:
|
|||
# luminous: 12
|
||||
# mimic: 13
|
||||
# nautilus: 14
|
||||
# octopus: 15
|
||||
# dev: 99
|
||||
|
||||
# Directory to fetch cluster fsid, keys etc...
|
||||
|
|
|
@ -28,7 +28,7 @@ from notario.decorators import optional
|
|||
from notario.store import store as notario_store
|
||||
|
||||
|
||||
CEPH_RELEASES = ['jewel', 'kraken', 'luminous', 'mimic', 'nautilus']
|
||||
CEPH_RELEASES = ['jewel', 'kraken', 'luminous', 'mimic', 'nautilus', 'octopus']
|
||||
|
||||
|
||||
class ActionModule(ActionBase):
|
||||
|
|
|
@ -23,3 +23,8 @@
|
|||
set_fact:
|
||||
ceph_release: nautilus
|
||||
when: ceph_version.split('.')[0] is version_compare('14', '==')
|
||||
|
||||
- name: set_fact ceph_release octopus
|
||||
set_fact:
|
||||
ceph_release: octopus
|
||||
when: ceph_version.split('.')[0] is version_compare('15', '==')
|
||||
|
|
|
@ -24,3 +24,7 @@
|
|||
ceph_release: nautilus
|
||||
when: ceph_version.split('.')[0] is version_compare('14', '==')
|
||||
|
||||
- name: set_fact ceph_release octopus
|
||||
set_fact:
|
||||
ceph_release: octopus
|
||||
when: ceph_version.split('.')[0] is version_compare('15', '==')
|
||||
|
|
|
@ -20,6 +20,7 @@ ceph_release_num:
|
|||
luminous: 12
|
||||
mimic: 13
|
||||
nautilus: 14
|
||||
octopus: 15
|
||||
dev: 99
|
||||
|
||||
# Directory to fetch cluster fsid, keys etc...
|
||||
|
|
Loading…
Reference in New Issue