From c0c8766903139830bae5b56cfa636af766d57268 Mon Sep 17 00:00:00 2001 From: Fabian von Feilitzsch Date: Tue, 10 Jul 2018 10:54:31 -0400 Subject: [PATCH] Ensure openshift dependency is also installed on test runner (#42582) --- test/integration/targets/k8s/tasks/main.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/integration/targets/k8s/tasks/main.yml b/test/integration/targets/k8s/tasks/main.yml index 648b4fad54..f3e542be79 100644 --- a/test/integration/targets/k8s/tasks/main.yml +++ b/test/integration/targets/k8s/tasks/main.yml @@ -2,6 +2,11 @@ pip: name: openshift +- name: Install requirements on localhost + pip: + name: openshift + delegate_to: localhost + # TODO: This is the only way I could get the kubeconfig, I don't know why. Running the lookup outside of debug seems to return an empty string - debug: msg={{ lookup('env', 'K8S_AUTH_KUBECONFIG') }} register: kubeconfig