diff --git a/CHANGELOG.md b/CHANGELOG.md index c992ea5c4b..25ae380cde 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,3 @@ -## Ceph Ansible 5.2.2-1 +## Ceph Ansible 5.2.2-2 -* updated version for cockpit-ceph-deploy requirements -* releasing 5.2.2-1 on 45drives-stable repo \ No newline at end of file +* added Rocky to list of distros in iscsi.yml \ No newline at end of file diff --git a/manifest.json b/manifest.json index 3b5c0f98e0..420b457620 100644 --- a/manifest.json +++ b/manifest.json @@ -4,7 +4,7 @@ "title": "Ceph Ansible", "prerelease": false, "version": "5.2.2", - "buildVersion": "1", + "buildVersion": "2", "author": "Mark Hooper ", "url": "https://github.com/45Drives/ceph-ansible", "category": "utils", @@ -49,7 +49,7 @@ "changelog": { "urgency": "medium", "version": "5.2.2", - "buildVersion": "1", + "buildVersion": "2", "ignore": [], "date": null, "packager": "Mark Hooper ", diff --git a/packaging/el8/main.spec b/packaging/el8/main.spec index 48587176b7..f938315f31 100644 --- a/packaging/el8/main.spec +++ b/packaging/el8/main.spec @@ -28,6 +28,8 @@ make DESTDIR=%{buildroot} install /usr/share/ceph-ansible/* %changelog +* Tue Sep 07 2021 Mark Hooper 5.2.2-2 +- added Rocky to list of distros in iscsi.yml * Tue Aug 24 2021 Mark Hooper 5.2.2-1 - updated version for cockpit-ceph-deploy requirements - releasing 5.2.2-1 on 45drives-stable repo diff --git a/packaging/focal/changelog b/packaging/focal/changelog index 454a1fdb12..334ddea354 100644 --- a/packaging/focal/changelog +++ b/packaging/focal/changelog @@ -1,3 +1,9 @@ +ceph-ansible-45d (5.2.2-2focal) focal; urgency=medium + + * added Rocky to list of distros in iscsi.yml + + -- Mark Hooper Tue, 07 Sep 2021 06:23:20 -0300 + ceph-ansible-45d (5.2.2-1focal) focal; urgency=medium * updated version for cockpit-ceph-deploy requirements diff --git a/roles/ceph-validate/tasks/check_iscsi.yml b/roles/ceph-validate/tasks/check_iscsi.yml index 84e51144b7..062dde63db 100644 --- a/roles/ceph-validate/tasks/check_iscsi.yml +++ b/roles/ceph-validate/tasks/check_iscsi.yml @@ -1,8 +1,8 @@ --- - name: fail on unsupported distribution for iscsi gateways fail: - msg: "iSCSI gateways can only be deployed on Red Hat Enterprise Linux, CentOS or Fedora" - when: ansible_distribution not in ['RedHat', 'CentOS', 'Fedora', 'Ubuntu'] + msg: "iSCSI gateways can only be deployed on Red Hat Enterprise Linux, CentOS, Ubuntu or Rocky Linux" + when: ansible_distribution not in ['RedHat', 'CentOS', 'Fedora', 'Ubuntu', 'Rocky'] - name: make sure gateway_ip_list is configured fail: