Merge pull request #143 from Smana/tests_kubectl_path
change tests, full path of kubectl binarypull/144/merge
commit
ad18f229c5
|
@ -3,10 +3,10 @@
|
||||||
|
|
||||||
tasks:
|
tasks:
|
||||||
- name: Run a replica controller composed of 2 pods
|
- name: Run a replica controller composed of 2 pods
|
||||||
shell: "kubectl run test --image=busybox --replicas=2 --command -- tail -f /dev/null"
|
shell: "/usr/local/bin/kubectl run test --image=busybox --replicas=2 --command -- tail -f /dev/null"
|
||||||
|
|
||||||
- name: Pods are running
|
- name: Pods are running
|
||||||
shell: "kubectl get pods --no-headers -o json"
|
shell: "/usr/local/bin/kubectl get pods --no-headers -o json"
|
||||||
register: run_pods_log
|
register: run_pods_log
|
||||||
until: (run_pods_log.stdout | from_json)['items'] | map(attribute = 'status.phase') | join(',') == "Running,Running"
|
until: (run_pods_log.stdout | from_json)['items'] | map(attribute = 'status.phase') | join(',') == "Running,Running"
|
||||||
retries: 24
|
retries: 24
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
tasks:
|
tasks:
|
||||||
|
|
||||||
- name: Get pod names
|
- name: Get pod names
|
||||||
shell: "kubectl get pods -o json"
|
shell: "/usr/local/bin/kubectl get pods -o json"
|
||||||
register: pods
|
register: pods
|
||||||
|
|
||||||
- set_fact:
|
- set_fact:
|
||||||
|
@ -18,4 +18,4 @@
|
||||||
|
|
||||||
|
|
||||||
- name: Ping between pods is working
|
- name: Ping between pods is working
|
||||||
shell: "kubectl exec {{pod_names[0]}} -- ping -c 4 {{ pod_ips[1] }}"
|
shell: "/usr/local/bin/kubectl exec {{pod_names[0]}} -- ping -c 4 {{ pod_ips[1] }}"
|
||||||
|
|
Loading…
Reference in New Issue