Browse Source

Final ipaddr deprecation cleanup (#10675)

Followup of #10518
pull/10694/head
Max Gautier 11 months ago
committed by GitHub
parent
commit
b31afe235f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions
  1. 2
      tests/cloud_playbooks/roles/packet-ci/tasks/create-vms.yml
  2. 2
      tests/testcases/030_check-network.yml

2
tests/cloud_playbooks/roles/packet-ci/tasks/create-vms.yml

@ -39,7 +39,7 @@
retries: 20
delay: 15
until:
- vm_ips.stdout | ipaddr
- vm_ips.stdout | ansible.utils.ipaddr
- name: "Create inventory for CI test in file /tmp/{{ test_name }}/inventory"
template:

2
tests/testcases/030_check-network.yml

@ -180,7 +180,7 @@
- name: Check pods IP are in correct network
assert:
that: item | ipaddr(kube_pods_subnet)
that: item | ansible.utils.ipaddr(kube_pods_subnet)
when:
- not item in pods_hostnet
- item in pods_running

Loading…
Cancel
Save