github.com/weaveworks/common@v0.0.0-20230728070032-dd9e68f319d5/tools/config_management/roles/kubernetes-install/tasks/main.yml (about)

     1  ---
     2  # Install Kubernetes
     3  
     4  # Distribution-specific tasks:
     5  - include: debian.yml
     6    when: ansible_os_family == "Debian"
     7  
     8  - include: redhat.yml
     9    when: ansible_os_family == "RedHat"
    10  
    11  - name: install ebtables
    12    package:
    13      name: "{{ item }}"
    14      state: present
    15    with_items:
    16      - ebtables