2016-02-10 10:51:39 +00:00
|
|
|
---
|
|
|
|
- hosts: node1
|
|
|
|
|
2016-11-21 10:20:44 +00:00
|
|
|
vars:
|
|
|
|
test_image_repo: busybox
|
|
|
|
test_image_tag: latest
|
|
|
|
|
2016-02-10 10:51:39 +00:00
|
|
|
tasks:
|
2016-11-15 17:17:30 +00:00
|
|
|
|
|
|
|
- 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"
|
|
|
|
|
2016-02-10 10:51:39 +00:00
|
|
|
- name: Run a replica controller composed of 2 pods
|
2016-11-21 10:20:44 +00:00
|
|
|
shell: "{{bin_dir}}/kubectl run test --image={{test_image_repo}}:{{test_image_tag}} --replicas=2 --command -- tail -f /dev/null"
|
2016-02-10 10:51:39 +00:00
|
|
|
|
|
|
|
- name: Pods are running
|
2016-11-15 17:17:30 +00:00
|
|
|
shell: "{{bin_dir}}/kubectl get pods --no-headers -o json"
|
2016-02-10 10:51:39 +00:00
|
|
|
register: run_pods_log
|
2016-05-11 15:37:15 +00:00
|
|
|
until: [ '(run_pods_log.stdout | from_json)["items"] | map(attribute = "status.phase") | join(",") == "Running,Running"' ]
|
2016-02-10 10:51:39 +00:00
|
|
|
retries: 24
|
|
|
|
delay: 5
|