mirror of
https://github.com/linux-system-roles/network.git
synced 2026-01-23 18:35:13 +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>
26 lines
573 B
YAML
26 lines
573 B
YAML
# SPDX-License-Identifier: BSD-3-Clause
|
|
---
|
|
- name: Manage inifiniband example
|
|
hosts: network-test
|
|
vars:
|
|
network_connections:
|
|
- name: ib0
|
|
type: infiniband
|
|
interface_name: ib0
|
|
|
|
# Create a simple infiniband profile
|
|
- name: ib0-10
|
|
interface_name: ib0.000a
|
|
type: infiniband
|
|
autoconnect: true
|
|
infiniband_p_key: 10
|
|
parent: ib0
|
|
state: up
|
|
ip:
|
|
dhcp4: false
|
|
auto6: false
|
|
address:
|
|
- 198.51.100.133/30
|
|
|
|
roles:
|
|
- linux-system-roles.network
|