github.com/jlmeeker/kismatic@v1.10.1-0.20180612190640-57f9005a1f1a/ansible/roles/smoketest/tasks/main.yaml (about)

     1  ---
     2    - name: copy Kuberang to node
     3      copy:
     4        src: "{{ kuberang_path }}"
     5        dest: "{{ bin_dir }}/kuberang"
     6        mode: 0744
     7    - name: run smoke test checks using Kuberang
     8      command: >
     9        "{{ bin_dir }}/kuberang"
    10        "{% if load_private_images|bool == true %}--registry-url={{ docker_registry_full_url }}{% endif %}"
    11        "{% if dns.enabled|bool == false%}--skip-dns-tests{% endif %}"
    12        "{% if cni.provider == 'contiv' %}--ignore-pod-ip-accessibility-check=true{% endif %}"