From 2feac2956a0950b088fa724db568b4a5b9987d72 Mon Sep 17 00:00:00 2001
From: Smana <smainklh@gmail.com>
Date: Sat, 13 Feb 2016 14:47:53 +0100
Subject: [PATCH] change tests, full path of kubectl binary

---
 tests/testcases/020_check-create-pod.yml | 4 ++--
 tests/testcases/030_check-network.yml    | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/tests/testcases/020_check-create-pod.yml b/tests/testcases/020_check-create-pod.yml
index 219fbb985..4e4027359 100644
--- a/tests/testcases/020_check-create-pod.yml
+++ b/tests/testcases/020_check-create-pod.yml
@@ -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
diff --git a/tests/testcases/030_check-network.yml b/tests/testcases/030_check-network.yml
index 596ce0ce1..a65d5e1e5 100644
--- a/tests/testcases/030_check-network.yml
+++ b/tests/testcases/030_check-network.yml
@@ -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:
@@ -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] }}"
-- 
GitLab