From 54054c0e5ab5ad250b51d3521e980ca5f4931a75 Mon Sep 17 00:00:00 2001 From: Raphael Glon Date: Tue, 23 Jul 2019 16:52:33 +0200 Subject: [PATCH] Fix serial/wwn gathering for ansible+python3 Change-Id: Ifd0c3d6be14c9e1369624bb4a02043e7345f4a03 Story: #2006266 Task: #35957 --- .../ansible/playbooks/roles/discover/tasks/roothints.yaml | 2 +- releasenotes/notes/bug-2006266-85da234583ca0c32.yaml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 releasenotes/notes/bug-2006266-85da234583ca0c32.yaml diff --git a/ironic/drivers/modules/ansible/playbooks/roles/discover/tasks/roothints.yaml b/ironic/drivers/modules/ansible/playbooks/roles/discover/tasks/roothints.yaml index 488a218132..d150754b8c 100644 --- a/ironic/drivers/modules/ansible/playbooks/roles/discover/tasks/roothints.yaml +++ b/ironic/drivers/modules/ansible/playbooks/roles/discover/tasks/roothints.yaml @@ -1,6 +1,6 @@ - name: get devices wwn facts facts_wwn: - devices: "{{ ansible_devices.keys() }}" + devices: "{{ ansible_devices.keys() | list }}" - name: calculate root hint root_hints: diff --git a/releasenotes/notes/bug-2006266-85da234583ca0c32.yaml b/releasenotes/notes/bug-2006266-85da234583ca0c32.yaml new file mode 100644 index 0000000000..c741a1081f --- /dev/null +++ b/releasenotes/notes/bug-2006266-85da234583ca0c32.yaml @@ -0,0 +1,6 @@ +--- +fixes: + - | + An issue regarding the ``ansible`` deploy interface. The discovery + playbook used to gather wwn and serials was broken for python3 due to the + dict().keys() object not being a list in python3.