2016-02-10 10:51:39 +00:00
|
|
|
---
|
|
|
|
- hosts: node1
|
|
|
|
|
|
|
|
tasks:
|
|
|
|
- name: Run a replica controller composed of 2 pods
|
2016-02-13 13:47:53 +00:00
|
|
|
shell: "/usr/local/bin/kubectl run test --image=busybox --replicas=2 --command -- tail -f /dev/null"
|
2016-02-10 10:51:39 +00:00
|
|
|
|
|
|
|
- name: Pods are running
|
2016-02-13 13:47:53 +00:00
|
|
|
shell: "/usr/local/bin/kubectl get pods --no-headers -o json"
|
2016-02-10 10:51:39 +00:00
|
|
|
register: run_pods_log
|
|
|
|
until: (run_pods_log.stdout | from_json)['items'] | map(attribute = 'status.phase') | join(',') == "Running,Running"
|
|
|
|
retries: 24
|
|
|
|
delay: 5
|