mirror of
https://github.com/weaveworks/scope.git
synced 2026-07-28 01:31:17 +00:00
17 lines
286 B
YAML
17 lines
286 B
YAML
---
|
|
# Install Kubernetes
|
|
|
|
# Distribution-specific tasks:
|
|
- include: debian.yml
|
|
when: ansible_os_family == "Debian"
|
|
|
|
- include: redhat.yml
|
|
when: ansible_os_family == "RedHat"
|
|
|
|
- name: install ebtables
|
|
package:
|
|
name: "{{ item }}"
|
|
state: present
|
|
with_items:
|
|
- ebtables
|