2017-11-22 6 views

답변

0

나는이에 대한 기존의 모듈을 몰랐다. 너는 이렇게 할 수있다.

--- 
- hosts: localhost 
    gather_facts: no 
    tasks: 
    - name: Wait for nodes to be ready 
    shell: "/usr/bin/kubectl get nodes" 
    register: nodes 
    until:  
     - '" Ready " in nodes.stdout'  
    retries: 6 
    delay: 2