Skip to content

Commit

Permalink
Fix support for ansible 2.7.9 (kubernetes-sigs#4375)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattymo authored and LuckySB committed Apr 4, 2019
1 parent 88b3cea commit 03b2dc0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
delegate_to: "{{ item[0] }}"
with_nested:
- "{{ groups['k8s-cluster'] }}"
- "{{ local_volume_provisioner_storage_classes.keys() }}"
- "{{ local_volume_provisioner_storage_classes.keys() | list}}"

- name: Local Volume Provisioner | Create addon dir
file:
Expand Down Expand Up @@ -59,4 +59,4 @@
with_items: "{{ local_volume_provisioner_manifests.results }}"
when: inventory_hostname == groups['kube-master'][0]
loop_control:
label: "{{ item.item.file }}"
label: "{{ item.item.file }}"
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
owner: root
group: root
mode: 0700
with_items: "{{ local_volume_provisioner_storage_classes.keys() }}"
with_items: "{{ local_volume_provisioner_storage_classes.keys() | list }}"
when:
- inventory_hostname in groups['k8s-cluster']
- local_volume_provisioner_enabled
Expand Down

0 comments on commit 03b2dc0

Please sign in to comment.