mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-05-07 01:17:39 -02:30
change tests, full path of kubectl binary
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user