mirror of
https://github.com/linux-system-roles/network.git
synced 2026-01-23 10:25:28 +00:00
The only thing we need to skip currently is using FQCN for ansible builtin modules, plugins Add `kinds` - otherwise, Ansible thinks anything not in a traditional role path is a plain YAML file, and we don't get the additional checking. Ensure all plays are named. Fix some other minor problems. Signed-off-by: Rich Megginson <rmeggins@redhat.com>
40 lines
1.2 KiB
YAML
40 lines
1.2 KiB
YAML
# SPDX-License-Identifier: BSD-3-Clause
|
|
---
|
|
- name: Manage ethernet coalesce
|
|
hosts: all
|
|
tasks:
|
|
- name: Configure ethernet coalesce
|
|
include_role:
|
|
name: linux-system-roles.network
|
|
vars:
|
|
network_connections:
|
|
- name: "{{ network_interface_name1 }}"
|
|
state: up
|
|
type: ethernet
|
|
ip:
|
|
dhcp4: false
|
|
auto6: false
|
|
ethtool:
|
|
coalesce:
|
|
adaptive_rx: true
|
|
adaptive_tx: false
|
|
pkt_rate_high: 128
|
|
pkt_rate_low: 128
|
|
rx_frames: 128
|
|
rx_frames_high: 128
|
|
rx_frames_irq: 128
|
|
rx_frames_low: 128
|
|
rx_usecs: 128
|
|
rx_usecs_high: 128
|
|
rx_usecs_irq: 128
|
|
rx_usecs_low: 128
|
|
sample_interval: 128
|
|
stats_block_usecs: 128
|
|
tx_frames: 128
|
|
tx_frames_high: 128
|
|
tx_frames_irq: 128
|
|
tx_frames_low: 128
|
|
tx_usecs: 128
|
|
tx_usecs_high: 128
|
|
tx_usecs_irq: 128
|
|
tx_usecs_low: 128
|