Browse Source
Fix modprobe module on Flatcar (#10678)
* Fix modprobe module on Flatcar
* Add todo about upstream issue report
pull/10641/head
Andrei Costescu
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
6 additions and
1 deletions
-
roles/kubernetes/node/tasks/main.yml
|
@ -68,11 +68,16 @@ |
|
|
changed_when: false |
|
|
changed_when: false |
|
|
check_mode: no |
|
|
check_mode: no |
|
|
|
|
|
|
|
|
|
|
|
# TODO: Remove once upstream issue is fixed |
|
|
|
|
|
# https://github.com/ansible-collections/community.general/issues/7717 |
|
|
- name: Verify br_netfilter module path exists |
|
|
- name: Verify br_netfilter module path exists |
|
|
file: |
|
|
file: |
|
|
path: /etc/modules-load.d |
|
|
|
|
|
|
|
|
path: "{{ item }}" |
|
|
state: directory |
|
|
state: directory |
|
|
mode: 0755 |
|
|
mode: 0755 |
|
|
|
|
|
loop: |
|
|
|
|
|
- /etc/modules-load.d |
|
|
|
|
|
- /etc/modprobe.d |
|
|
|
|
|
|
|
|
- name: Enable br_netfilter module |
|
|
- name: Enable br_netfilter module |
|
|
community.general.modprobe: |
|
|
community.general.modprobe: |
|
|