326d98353f
The test deployment/rc/pods creation time is near 2m on slow CI instances with 1 CPU/1.7G RAM. Increase wait time to allow the post test fail less often. Signed-off-by: Bogdan Dobrelya <bdobrelia@mirantis.com>
23 lines
675 B
YAML
23 lines
675 B
YAML
---
|
|
- hosts: node1
|
|
|
|
tasks:
|
|
|
|
- name: Force binaries directory for CoreOS
|
|
set_fact:
|
|
bin_dir: "/opt/bin"
|
|
when: ansible_os_family == "CoreOS"
|
|
|
|
- set_fact:
|
|
bin_dir: "/usr/local/bin"
|
|
when: ansible_os_family != "CoreOS"
|
|
|
|
- name: Run a replica controller composed of 2 pods
|
|
shell: "{{bin_dir}}/kubectl run test --image=busybox --replicas=2 --command -- tail -f /dev/null"
|
|
|
|
- name: Pods are running
|
|
shell: "{{bin_dir}}/kubectl get pods --no-headers -o json"
|
|
register: run_pods_log
|
|
until: [ '(run_pods_log.stdout | from_json)["items"] | map(attribute = "status.phase") | join(",") == "Running,Running"' ]
|
|
retries: 18
|
|
delay: 10
|