Skip to content

Commit

Permalink
Merge pull request kubernetes-sigs#143 from Smana/tests_kubectl_path
Browse files Browse the repository at this point in the history
change tests, full path of kubectl binary
  • Loading branch information
Smana committed Feb 13, 2016
2 parents 60d6195 + 2feac29 commit ad18f22
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/testcases/020_check-create-pod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

tasks:
- 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
shell: "kubectl get pods --no-headers -o json"
shell: "/usr/local/bin/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: 24
Expand Down
4 changes: 2 additions & 2 deletions tests/testcases/030_check-network.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
tasks:

- name: Get pod names
shell: "kubectl get pods -o json"
shell: "/usr/local/bin/kubectl get pods -o json"
register: pods

- set_fact:
Expand All @@ -18,4 +18,4 @@


- 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] }}"

0 comments on commit ad18f22

Please sign in to comment.