Skip to content

Commit e8f5601

Browse files
authored
Merge pull request #59 from stackhpc/fix-mapping-images-to-single-project
Fix mapping flavors to a single project
2 parents bbede56 + a562f65 commit e8f5601

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

galaxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
namespace: stackhpc
33
name: openstack
4-
version: 0.5.0
4+
version: 0.5.1
55
readme: README.md
66
authors:
77
- StackHPC Ltd

roles/os_flavors/tasks/flavors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@
2727
name: "{{ item.0.name }}"
2828
state: "{{ item.0.state | default('present') }}"
2929
project: "{{ item.1 | default(omit) }}"
30-
loop: "{{ lookup('subelements', os_flavors, 'project', {'skip_missing': True}) }}"
30+
loop: "{{ lookup('subelements', os_flavors, 'project', {'skip_missing': True}, wantlist=True) }}"
3131
when: not item.0.is_public | bool

0 commit comments

Comments
 (0)