Add e2e test for infrastructure roles secrets

This commit is contained in:
Dmitrii Dolgov 2020-07-31 11:43:55 +02:00
parent 52e05697bb
commit 64646099e0
1 changed files with 1 additions and 1 deletions

View File

@ -861,7 +861,7 @@ class K8s:
stderr=subprocess.PIPE) stderr=subprocess.PIPE)
def exec_with_kubectl(self, pod, cmd): def exec_with_kubectl(self, pod, cmd):
return subprocess.run(["exec.sh", pod, cmd], return subprocess.run(["e2e/exec.sh", pod, cmd],
stdout=subprocess.PIPE, stdout=subprocess.PIPE,
stderr=subprocess.PIPE) stderr=subprocess.PIPE)