Skip to content

Commit

Permalink
added Rocky to list of valid distros in check_iscsi.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
markdhooper committed Sep 7, 2021
1 parent 91fcd54 commit b8d6be3
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
5 changes: 2 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
* added Rocky to list of distros in iscsi.yml
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"title": "Ceph Ansible",
"prerelease": false,
"version": "5.2.2",
"buildVersion": "1",
"buildVersion": "2",
"author": "Mark Hooper <[email protected]>",
"url": "https://github.com/45Drives/ceph-ansible",
"category": "utils",
Expand Down Expand Up @@ -49,7 +49,7 @@
"changelog": {
"urgency": "medium",
"version": "5.2.2",
"buildVersion": "1",
"buildVersion": "2",
"ignore": [],
"date": null,
"packager": "Mark Hooper <[email protected]>",
Expand Down
2 changes: 2 additions & 0 deletions packaging/el8/main.spec
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ make DESTDIR=%{buildroot} install
/usr/share/ceph-ansible/*

%changelog
* Tue Sep 07 2021 Mark Hooper <[email protected]> 5.2.2-2
- added Rocky to list of distros in iscsi.yml
* Tue Aug 24 2021 Mark Hooper <[email protected]> 5.2.2-1
- updated version for cockpit-ceph-deploy requirements
- releasing 5.2.2-1 on 45drives-stable repo
Expand Down
6 changes: 6 additions & 0 deletions packaging/focal/changelog
Original file line number Diff line number Diff line change
@@ -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 <[email protected]> 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
Expand Down
4 changes: 2 additions & 2 deletions roles/ceph-validate/tasks/check_iscsi.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down

0 comments on commit b8d6be3

Please sign in to comment.