Browse Source

Wait for container creation in check network test

pull/1153/head
Matthew Mosesohn 7 years ago
parent
commit
fd20e0de90
1 changed files with 3 additions and 0 deletions
  1. 3
      tests/testcases/030_check-network.yml

3
tests/testcases/030_check-network.yml

@ -21,6 +21,9 @@
- name: Get pod names
shell: "{{bin_dir}}/kubectl get pods -o json"
register: pods
until: '"ContainerCreating" not in pods.stdout'
retries: 60
delay: 2
no_log: true
- name: Get hostnet pods

Loading…
Cancel
Save