c12s-kubespray/tests/testcases/020_check-create-pod.yml

31 lines
998 B
YAML
Raw Normal View History

2016-02-10 10:51:39 +00:00
---
- hosts: kube-master[0]
2016-02-10 10:51:39 +00:00
vars:
test_image_repo: busybox
test_image_tag: latest
2016-02-10 10:51:39 +00:00
tasks:
- name: Force binaries directory for Container Linux by CoreOS
set_fact:
bin_dir: "/opt/bin"
when: ansible_os_family in ["CoreOS", "Container Linux by CoreOS"]
- set_fact:
bin_dir: "/usr/local/bin"
when: not ansible_os_family in ["CoreOS", "Container Linux by CoreOS"]
- name: Create test namespace
shell: "{{bin_dir}}/kubectl create namespace test"
- name: Run a replica controller composed of 2 pods in test ns
shell: "{{bin_dir}}/kubectl run test --image={{test_image_repo}}:{{test_image_tag}} --namespace test --replicas=2 --command -- tail -f /dev/null"
2016-02-10 10:51:39 +00:00
- name: Pods are running
shell: "{{bin_dir}}/kubectl get pods --namespace test --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: 18
delay: 10