k8s-sig-cluster-lifecycleawskubesprayhigh-availabilityansiblekubernetes-clustergcekubernetesbare-metal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
504 B
24 lines
504 B
---
|
|
- name: "Load lvm kernel modules"
|
|
become: true
|
|
with_items:
|
|
- "dm_snapshot"
|
|
- "dm_mirror"
|
|
- "dm_thin_pool"
|
|
modprobe:
|
|
name: "{{ item }}"
|
|
state: "present"
|
|
|
|
- name: "Install glusterfs mount utils (RedHat)"
|
|
become: true
|
|
yum:
|
|
name: "glusterfs-fuse"
|
|
state: "present"
|
|
when: "ansible_os_family == 'RedHat'"
|
|
|
|
- name: "Install glusterfs mount utils (Debian)"
|
|
become: true
|
|
apt:
|
|
name: "glusterfs-client"
|
|
state: "present"
|
|
when: "ansible_os_family == 'Debian'"
|