mirror of https://github.com/ceph/ceph-ansible.git
Merge pull request #1826 from ceph/add-mimic
common: add mimic release factspull/1816/merge v3.0.0rc4
commit
21b3fd2819
|
@ -127,6 +127,7 @@ dummy:
|
||||||
# jewel: 10
|
# jewel: 10
|
||||||
# kraken: 11
|
# kraken: 11
|
||||||
# luminous: 12
|
# luminous: 12
|
||||||
|
# mimic: 13
|
||||||
|
|
||||||
# Use the option below to specify your applicable package tree, eg. when using non-LTS Ubuntu versions
|
# Use the option below to specify your applicable package tree, eg. when using non-LTS Ubuntu versions
|
||||||
# # for a list of available Debian distributions, visit http://download.ceph.com/debian-{{ ceph_stable_release }}/dists/
|
# # for a list of available Debian distributions, visit http://download.ceph.com/debian-{{ ceph_stable_release }}/dists/
|
||||||
|
|
|
@ -127,6 +127,7 @@ fetch_directory: ~/ceph-ansible-keys
|
||||||
# jewel: 10
|
# jewel: 10
|
||||||
# kraken: 11
|
# kraken: 11
|
||||||
# luminous: 12
|
# luminous: 12
|
||||||
|
# mimic: 13
|
||||||
|
|
||||||
# Use the option below to specify your applicable package tree, eg. when using non-LTS Ubuntu versions
|
# Use the option below to specify your applicable package tree, eg. when using non-LTS Ubuntu versions
|
||||||
# # for a list of available Debian distributions, visit http://download.ceph.com/debian-{{ ceph_stable_release }}/dists/
|
# # for a list of available Debian distributions, visit http://download.ceph.com/debian-{{ ceph_stable_release }}/dists/
|
||||||
|
|
|
@ -11,3 +11,6 @@
|
||||||
ceph_release: luminous
|
ceph_release: luminous
|
||||||
when: ceph_version.split('.')[0] | version_compare('12', '==')
|
when: ceph_version.split('.')[0] | version_compare('12', '==')
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
ceph_release: mimic
|
||||||
|
when: ceph_version.split('.')[0] | version_compare('13', '==')
|
||||||
|
|
|
@ -119,6 +119,7 @@ ceph_release_num:
|
||||||
jewel: 10
|
jewel: 10
|
||||||
kraken: 11
|
kraken: 11
|
||||||
luminous: 12
|
luminous: 12
|
||||||
|
mimic: 13
|
||||||
|
|
||||||
# Use the option below to specify your applicable package tree, eg. when using non-LTS Ubuntu versions
|
# Use the option below to specify your applicable package tree, eg. when using non-LTS Ubuntu versions
|
||||||
# # for a list of available Debian distributions, visit http://download.ceph.com/debian-{{ ceph_stable_release }}/dists/
|
# # for a list of available Debian distributions, visit http://download.ceph.com/debian-{{ ceph_stable_release }}/dists/
|
||||||
|
|
|
@ -11,3 +11,6 @@
|
||||||
ceph_release: luminous
|
ceph_release: luminous
|
||||||
when: ceph_version.split('.')[0] | version_compare('12', '==')
|
when: ceph_version.split('.')[0] | version_compare('12', '==')
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
ceph_release: mimic
|
||||||
|
when: ceph_version.split('.')[0] | version_compare('13', '==')
|
||||||
|
|
Loading…
Reference in New Issue