Kaynağa Gözat

Template with_items for upstream ansible-2.2 compat.

Andrew Butcher 8 yıl önce
ebeveyn
işleme
9570a621b2
28 değiştirilmiş dosya ile 49 ekleme ve 49 silme
  1. 1 1
      playbooks/adhoc/noc/get_zabbix_problems.yml
  2. 1 1
      playbooks/aws/openshift-cluster/list.yml
  3. 9 9
      playbooks/aws/openshift-cluster/tasks/launch_instances.yml
  4. 6 6
      playbooks/aws/openshift-cluster/terminate.yml
  5. 2 2
      playbooks/aws/openshift-cluster/update.yml
  6. 1 1
      playbooks/byo/openshift-cluster/upgrades/docker/upgrade.yml
  7. 1 1
      playbooks/byo/openshift-cluster/upgrades/v3_2/upgrade.yml
  8. 1 1
      playbooks/byo/openshift-master/restart.yml
  9. 1 1
      playbooks/byo/openshift-master/scaleup.yml
  10. 1 1
      playbooks/byo/openshift-node/scaleup.yml
  11. 1 1
      playbooks/byo/rhel_subscribe.yml
  12. 1 1
      playbooks/common/openshift-cluster/upgrades/init.yml
  13. 1 1
      playbooks/common/openshift-cluster/upgrades/post_control_plane.yml
  14. 1 1
      playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml
  15. 1 1
      playbooks/common/openshift-etcd/service.yml
  16. 1 1
      playbooks/common/openshift-loadbalancer/service.yml
  17. 1 1
      playbooks/common/openshift-master/service.yml
  18. 1 1
      playbooks/common/openshift-nfs/service.yml
  19. 1 1
      playbooks/common/openshift-node/service.yml
  20. 1 1
      playbooks/gce/openshift-cluster/list.yml
  21. 3 3
      playbooks/gce/openshift-cluster/tasks/launch_instances.yml
  22. 2 2
      playbooks/gce/openshift-cluster/terminate.yml
  23. 2 2
      playbooks/gce/openshift-cluster/update.yml
  24. 1 1
      playbooks/libvirt/openshift-cluster/list.yml
  25. 2 2
      playbooks/openstack/openshift-cluster/update.yml
  26. 3 3
      roles/kube_nfs_volumes/tasks/main.yml
  27. 1 1
      roles/kube_nfs_volumes/tasks/nfs.yml
  28. 1 1
      roles/nickhammond.logrotate/tasks/main.yml

+ 1 - 1
playbooks/adhoc/noc/get_zabbix_problems.yml

@@ -33,7 +33,7 @@
     - add_host:
         name: "{{ item }}"
         groups: problem_hosts_group
-      with_items: problem_hosts
+      with_items: "{{ problem_hosts }}"
 
 - name: "Run on problem hosts"
   hosts: problem_hosts_group

+ 1 - 1
playbooks/aws/openshift-cluster/list.yml

@@ -16,7 +16,7 @@
       groups: oo_list_hosts
       ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
       ansible_become: "{{ deployment_vars[deployment_type].become }}"
-    with_items: groups[scratch_group] | default([]) | difference(['localhost'])
+    with_items: "{{ groups[scratch_group] | default([]) | difference(['localhost']) }}"
 
 - name: List Hosts
   hosts: oo_list_hosts

+ 9 - 9
playbooks/aws/openshift-cluster/tasks/launch_instances.yml

@@ -99,8 +99,8 @@
 - name: Add Name tag to instances
   ec2_tag: resource={{ item.1.id }} region={{ deployment_vars[deployment_type].region }} state=present
   with_together:
-  - instances
-  - ec2.instances
+  - "{{ instances }}"
+  - "{{ ec2.instances }}"
   args:
     tags:
       Name: "{{ item.0 }}"
@@ -154,8 +154,8 @@
     openshift_node_labels: "{{ node_label }}"
     logrotate_scripts: "{{ logrotate }}"
   with_together:
-  - instances
-  - ec2.instances
+  - "{{ instances }}"
+  - "{{ ec2.instances }}"
 
 - name: Add new instances to nodes_to_add group if needed
   add_host:
@@ -169,13 +169,13 @@
     openshift_node_labels: "{{ node_label }}"
     logrotate_scripts: "{{ logrotate }}"
   with_together:
-  - instances
-  - ec2.instances
+  - "{{ instances }}"
+  - "{{ ec2.instances }}"
   when: oo_extend_env is defined and oo_extend_env | bool
 
 - name: Wait for ssh
   wait_for: "port=22 host={{ item.dns_name }}"
-  with_items: ec2.instances
+  with_items: "{{ ec2.instances }}"
 
 - name: Wait for user setup
   command: "ssh -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ConnectTimeout=10 -o UserKnownHostsFile=/dev/null {{ hostvars[item.0].ansible_ssh_user }}@{{ item.1.dns_name }} echo {{ hostvars[item.0].ansible_ssh_user }} user is setup"
@@ -184,5 +184,5 @@
   retries: 20
   delay: 10
   with_together:
-  - instances
-  - ec2.instances
+  - "{{ instances }}"
+  - "{{ ec2.instances }}"

+ 6 - 6
playbooks/aws/openshift-cluster/terminate.yml

@@ -12,7 +12,7 @@
       groups: oo_hosts_to_terminate
       ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
       ansible_become: "{{ deployment_vars[deployment_type].become }}"
-    with_items: (groups['tag_clusterid_' ~ cluster_id] | default([])) | difference(['localhost'])
+    with_items: "{{ (groups['tag_clusterid_' ~ cluster_id] | default([])) | difference(['localhost']) }}"
 
 - name: Unsubscribe VMs
   hosts: oo_hosts_to_terminate
@@ -39,7 +39,7 @@
           clusterid:     "{{ hostvars[item]['ec2_tag_clusterid'] }}"
           host-type:     "{{ hostvars[item]['ec2_tag_host-type'] }}"
           sub_host_type: "{{ hostvars[item]['ec2_tag_sub-host-type'] }}"
-      with_items: groups.oo_hosts_to_terminate
+      with_items: "{{ groups.oo_hosts_to_terminate }}"
       when: "'oo_hosts_to_terminate' in groups"
 
     - name: Terminate instances
@@ -49,7 +49,7 @@
         region: "{{ hostvars[item].ec2_region }}"
       ignore_errors: yes
       register: ec2_term
-      with_items: groups.oo_hosts_to_terminate
+      with_items: "{{ groups.oo_hosts_to_terminate }}"
       when: "'oo_hosts_to_terminate' in groups"
 
     # Fail if any of the instances failed to terminate with an error other
@@ -57,7 +57,7 @@
     - fail:
         msg: "Terminating instance {{ item.ec2_id }} failed with message {{ item.msg }}"
       when: "'oo_hosts_to_terminate' in groups and item.has_key('failed') and item.failed"
-      with_items: ec2_term.results
+      with_items: "{{ ec2_term.results }}"
 
     - name: Stop instance if termination failed
       ec2:
@@ -66,12 +66,12 @@
         region: "{{ item.item.ec2_region }}"
       register: ec2_stop
       when: "'oo_hosts_to_terminate' in groups and item.has_key('failed') and item.failed"
-      with_items: ec2_term.results
+      with_items: "{{ ec2_term.results }}"
 
     - name: Rename stopped instances
       ec2_tag: resource={{ item.item.item.ec2_id }} region={{ item.item.item.ec2_region }} state=present
       args:
         tags:
           Name: "{{ item.item.item.ec2_tag_Name }}-terminate"
-      with_items: ec2_stop.results
+      with_items: "{{ ec2_stop.results }}"
       when: ec2_stop | changed

+ 2 - 2
playbooks/aws/openshift-cluster/update.yml

@@ -7,7 +7,7 @@
   - add_host:
       name: "{{ item }}"
       groups: l_oo_all_hosts
-    with_items: g_all_hosts
+    with_items: "{{ g_all_hosts }}"
 
 - hosts: l_oo_all_hosts
   gather_facts: no
@@ -27,7 +27,7 @@
       groups: oo_hosts_to_update
       ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
       ansible_become: "{{ deployment_vars[deployment_type].become }}"
-    with_items: g_all_hosts | default([])
+    with_items: "{{ g_all_hosts | default([]) }}"
 
 - include: ../../common/openshift-cluster/update_repos_and_packages.yml
 

+ 1 - 1
playbooks/byo/openshift-cluster/upgrades/docker/upgrade.yml

@@ -10,7 +10,7 @@
   - add_host:
       name: "{{ item }}"
       groups: l_oo_all_hosts
-    with_items: g_all_hosts | default([])
+    with_items: "{{ g_all_hosts | default([]) }}"
     changed_when: false
 
 - hosts: l_oo_all_hosts

+ 1 - 1
playbooks/byo/openshift-cluster/upgrades/v3_2/upgrade.yml

@@ -10,7 +10,7 @@
   - add_host:
       name: "{{ item }}"
       groups: l_oo_all_hosts
-    with_items: g_all_hosts | default([])
+    with_items: "{{ g_all_hosts | default([]) }}"
 
 - hosts: l_oo_all_hosts
   gather_facts: no

+ 1 - 1
playbooks/byo/openshift-master/restart.yml

@@ -8,7 +8,7 @@
   - add_host:
       name: "{{ item }}"
       groups: l_oo_all_hosts
-    with_items: g_all_hosts
+    with_items: "{{ g_all_hosts }}"
 
 - hosts: l_oo_all_hosts
   gather_facts: no

+ 1 - 1
playbooks/byo/openshift-master/scaleup.yml

@@ -8,7 +8,7 @@
   - add_host:
       name: "{{ item }}"
       groups: l_oo_all_hosts
-    with_items: g_all_hosts
+    with_items: "{{ g_all_hosts }}"
 
 - hosts: l_oo_all_hosts
   gather_facts: no

+ 1 - 1
playbooks/byo/openshift-node/scaleup.yml

@@ -8,7 +8,7 @@
   - add_host:
       name: "{{ item }}"
       groups: l_oo_all_hosts
-    with_items: g_all_hosts
+    with_items: "{{ g_all_hosts }}"
 
 - hosts: l_oo_all_hosts
   gather_facts: no

+ 1 - 1
playbooks/byo/rhel_subscribe.yml

@@ -8,7 +8,7 @@
   - add_host:
       name: "{{ item }}"
       groups: l_oo_all_hosts
-    with_items: g_all_hosts
+    with_items: "{{ g_all_hosts }}"
 
 - hosts: l_oo_all_hosts
   gather_facts: no

+ 1 - 1
playbooks/common/openshift-cluster/upgrades/init.yml

@@ -10,7 +10,7 @@
   - add_host:
       name: "{{ item }}"
       groups: l_oo_all_hosts
-    with_items: g_all_hosts | default([])
+    with_items: "{{ g_all_hosts | default([]) }}"
 
 - hosts: l_oo_all_hosts
   gather_facts: no

+ 1 - 1
playbooks/common/openshift-cluster/upgrades/post_control_plane.yml

@@ -41,7 +41,7 @@
       {{ oc_cmd }} patch dc/{{ item['labels']['deploymentconfig'] }} -n {{ item['namespace'] }} -p
       '{"spec":{"template":{"spec":{"containers":[{"name":"router","image":"{{ router_image }}","livenessProbe":{"tcpSocket":null,"httpGet":{"path": "/healthz", "port": 1936, "host": "localhost", "scheme": "HTTP"},"initialDelaySeconds":10,"timeoutSeconds":1}}]}}}}'
       --api-version=v1
-    with_items: haproxy_routers
+    with_items: "{{ haproxy_routers }}"
 
   - name: Check for default registry
     command: >

+ 1 - 1
playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml

@@ -11,7 +11,7 @@
     add_host:
       name: "{{ item }}"
       groups: etcd_hosts_to_backup
-    with_items: groups.oo_etcd_to_config if groups.oo_etcd_to_config is defined and groups.oo_etcd_to_config | length > 0 else groups.oo_first_master
+    with_items: "{{ groups.oo_etcd_to_config if groups.oo_etcd_to_config is defined and groups.oo_etcd_to_config | length > 0 else groups.oo_first_master }}"
 
 - name: Backup etcd
   hosts: etcd_hosts_to_backup

+ 1 - 1
playbooks/common/openshift-etcd/service.yml

@@ -10,7 +10,7 @@
 
   - name: Evaluate g_service_etcd
     add_host: name={{ item }} groups=g_service_etcd
-    with_items: oo_host_group_exp | default([])
+    with_items: "{{ oo_host_group_exp | default([]) }}"
 
 - name: Change etcd state on etcd instance(s)
   hosts: g_service_etcd

+ 1 - 1
playbooks/common/openshift-loadbalancer/service.yml

@@ -10,7 +10,7 @@
 
   - name: Evaluate g_service_lb
     add_host: name={{ item }} groups=g_service_lb
-    with_items: oo_host_group_exp | default([])
+    with_items: "{{ oo_host_group_exp | default([]) }}"
 
 - name: Change state on lb instance(s)
   hosts: g_service_lb

+ 1 - 1
playbooks/common/openshift-master/service.yml

@@ -10,7 +10,7 @@
 
   - name: Evaluate g_service_masters
     add_host: name={{ item }} groups=g_service_masters
-    with_items: oo_host_group_exp | default([])
+    with_items: "{{ oo_host_group_exp | default([]) }}"
 
 - name: Change state on master instance(s)
   hosts: g_service_masters

+ 1 - 1
playbooks/common/openshift-nfs/service.yml

@@ -8,7 +8,7 @@
 
   - name: Evaluate g_service_nfs
     add_host: name={{ item }} groups=g_service_nfs
-    with_items: oo_host_group_exp | default([])
+    with_items: "{{ oo_host_group_exp | default([]) }}"
 
 - name: Change state on nfs instance(s)
   hosts: g_service_nfs

+ 1 - 1
playbooks/common/openshift-node/service.yml

@@ -10,7 +10,7 @@
 
   - name: Evaluate g_service_nodes
     add_host: name={{ item }} groups=g_service_nodes
-    with_items: oo_host_group_exp | default([])
+    with_items: "{{ oo_host_group_exp | default([]) }}"
 
 - name: Change state on node instance(s)
   hosts: g_service_nodes

+ 1 - 1
playbooks/gce/openshift-cluster/list.yml

@@ -16,7 +16,7 @@
       groups: oo_list_hosts
       ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
       ansible_become: "{{ deployment_vars[deployment_type].become }}"
-    with_items: groups[scratch_group] | default([], true) | difference(['localhost']) | difference(groups.status_terminated | default([], true))
+    with_items: "{{ groups[scratch_group] | default([], true) | difference(['localhost']) | difference(groups.status_terminated | default([], true)) }}"
 
 - name: List Hosts
   hosts: oo_list_hosts

+ 3 - 3
playbooks/gce/openshift-cluster/tasks/launch_instances.yml

@@ -49,11 +49,11 @@
     gce_public_ip: "{{ item.public_ip }}"
     gce_private_ip: "{{ item.private_ip }}"
     openshift_node_labels: "{{ node_label }}"
-  with_items: gce.instance_data | default([], true)
+  with_items: "{{ gce.instance_data | default([], true) }}"
 
 - name: Wait for ssh
   wait_for: port=22 host={{ item.public_ip }}
-  with_items: gce.instance_data | default([], true)
+  with_items: "{{ gce.instance_data | default([], true) }}"
 
 - name: Wait for user setup
   command: "ssh -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ConnectTimeout=10 -o UserKnownHostsFile=/dev/null {{ hostvars[item.name].ansible_ssh_user }}@{{ item.public_ip }} echo {{ hostvars[item.name].ansible_ssh_user }} user is setup"
@@ -61,4 +61,4 @@
   until: result.rc == 0
   retries: 30
   delay: 5
-  with_items: gce.instance_data | default([], true)
+  with_items: "{{ gce.instance_data | default([], true) }}"

+ 2 - 2
playbooks/gce/openshift-cluster/terminate.yml

@@ -12,7 +12,7 @@
       groups: oo_hosts_to_terminate
       ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
       ansible_become: "{{ deployment_vars[deployment_type].become }}"
-    with_items: (groups['tag_clusterid-' ~ cluster_id] | default([])) | difference(['localhost'])
+    with_items: "{{ (groups['tag_clusterid-' ~ cluster_id] | default([])) | difference(['localhost']) }}"
 
 - name: Unsubscribe VMs
   hosts: oo_hosts_to_terminate
@@ -43,7 +43,7 @@
         pem_file: "{{ lookup('env', 'gce_service_account_pem_file_path') }}"
         project_id: "{{ lookup('env', 'gce_project_id') }}"
         zone: "{{ lookup('env', 'zone') }}"
-      with_items: groups['oo_hosts_to_terminate'] | default([], true)
+      with_items: "{{ groups['oo_hosts_to_terminate'] | default([], true) }}"
       when: item is defined
 
 #- include: ../openshift-node/terminate.yml

+ 2 - 2
playbooks/gce/openshift-cluster/update.yml

@@ -7,7 +7,7 @@
   - add_host:
       name: "{{ item }}"
       groups: l_oo_all_hosts
-    with_items: g_all_hosts
+    with_items: "{{ g_all_hosts }}"
 
 - hosts: l_oo_all_hosts
   gather_facts: no
@@ -27,7 +27,7 @@
       groups: oo_hosts_to_update
       ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
       ansible_become: "{{ deployment_vars[deployment_type].become }}"
-    with_items: g_all_hosts | default([])
+    with_items: "{{ g_all_hosts | default([]) }}"
 
 - include: ../../common/openshift-cluster/update_repos_and_packages.yml
 

+ 1 - 1
playbooks/libvirt/openshift-cluster/list.yml

@@ -16,7 +16,7 @@
       groups: oo_list_hosts
       ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
       ansible_become: "{{ deployment_vars[deployment_type].become }}"
-    with_items: groups[scratch_group] | default([]) | difference(['localhost'])
+    with_items: "{{ groups[scratch_group] | default([]) | difference(['localhost']) }}"
 
 - name: List Hosts
   hosts: oo_list_hosts

+ 2 - 2
playbooks/openstack/openshift-cluster/update.yml

@@ -7,7 +7,7 @@
   - add_host:
       name: "{{ item }}"
       groups: l_oo_all_hosts
-    with_items: g_all_hosts
+    with_items: "{{ g_all_hosts }}"
 
 - hosts: l_oo_all_hosts
   gather_facts: no
@@ -27,7 +27,7 @@
       groups: oo_hosts_to_update
       ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
       ansible_become: "{{ deployment_vars[deployment_type].become }}"
-    with_items: g_all_hosts | default([])
+    with_items: "{{ g_all_hosts | default([]) }}"
 
 - include: ../../common/openshift-cluster/update_repos_and_packages.yml
 

+ 3 - 3
roles/kube_nfs_volumes/tasks/main.yml

@@ -12,11 +12,11 @@
 
 - name: create filesystem
   filesystem: fstype=ext4 dev=/dev/{{ item.name }}
-  with_items: partition_pool
+  with_items: "{{ partition_pool }}"
 
 - name: mount
   mount: name={{mount_dir}}/{{ item.name }} src=/dev/{{ item.name }} state=mounted fstype=ext4 passno=2
-  with_items: partition_pool
+  with_items: "{{ partition_pool }}"
 
 - include: nfs.yml
 
@@ -28,4 +28,4 @@
     body_format: json
     status_code: 201
     HEADER_Authorization: "Bearer {{ kubernetes_token }}"
-  with_items: partition_pool
+  with_items: "{{ partition_pool }}"

+ 1 - 1
roles/kube_nfs_volumes/tasks/nfs.yml

@@ -13,5 +13,5 @@
   lineinfile: dest=/etc/exports
               regexp="^{{ mount_dir }}/{{ item.name }} "
               line="{{ mount_dir }}/{{ item.name }} {{nfs_export_options}}"
-  with_items: partition_pool
+  with_items: "{{ partition_pool }}"
   notify: restart nfs

+ 1 - 1
roles/nickhammond.logrotate/tasks/main.yml

@@ -7,5 +7,5 @@
   template:
     src: logrotate.d.j2
     dest: /etc/logrotate.d/{{ item.name }}
-  with_items: logrotate_scripts
+  with_items: "{{ logrotate_scripts }}"
   when: logrotate_scripts is defined