Skip to content

Commit

Permalink
Merge pull request #281 from stackhpc/upstream/zed-2024-06-03
Browse files Browse the repository at this point in the history
Synchronise zed with upstream
  • Loading branch information
markgoddard authored Jun 3, 2024
2 parents bc351c1 + 73ceb77 commit 81e37a3
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 5 deletions.
4 changes: 2 additions & 2 deletions ansible/roles/dell-switch/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
local_action:
module: dellos6_config
provider: "{{ dell_switch_provider }}"
src: dellos6-config.j2
src: "{{ lookup('template', 'dellos6-config.j2') }}"
when: dell_switch_type == 'dellos6'

- name: Ensure DellOS9 switches are configured
local_action:
module: dellos9_config
provider: "{{ dell_switch_provider }}"
src: dellos9-config.j2
src: "{{ lookup('template', 'dellos9-config.j2') }}"
when: dell_switch_type == 'dellos9'

- name: Ensure DellOS10 switches are configured
Expand Down
2 changes: 1 addition & 1 deletion ansible/roles/docker-registry/tasks/destroy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
when: "'/' not in volume"
failed_when:
- volume_result.rc != 0
- "'No such volume' not in volume_result.stderr"
- "'no such volume' not in volume_result.stderr | lower"
vars:
volume: "{{ item.1.split(':')[0] }}"
register: volume_result
Expand Down
2 changes: 1 addition & 1 deletion ansible/roles/inspection-store/tasks/destroy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
when: "'/' not in volume"
failed_when:
- volume_result.rc != 0
- "'No such volume' not in volume_result.stderr"
- "'no such volume' not in volume_result.stderr | lower"
vars:
volume: "{{ item.1.split(':')[0] }}"
register: volume_result
Expand Down
2 changes: 1 addition & 1 deletion ansible/roles/opensm/tasks/destroy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
when: "'/' not in volume"
failed_when:
- volume_result.rc != 0
- "'No such volume' not in volume_result.stderr"
- "'no such volume' not in volume_result.stderr | lower"
vars:
volume: "{{ item.1.split(':')[0] }}"
register: volume_result
Expand Down
6 changes: 6 additions & 0 deletions releasenotes/notes/bug-2061102-cbc4c65c14c09d55.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
fixes:
- |
Fixes an issue where Dell OS6 and Dell OS9 switch configuration was not
applied correctly. `LP#2061102
<https://bugs.launchpad.net/kayobe/+bug/2061102>`__.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
fixes:
- |
Fixes an issue with overcloud service destroy where it failed to remove the
inspection store docker volume. See `LP#2050092
<https://bugs.launchpad.net/kayobe/+bug/2050092>`__.

0 comments on commit 81e37a3

Please sign in to comment.