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>
29 lines
702 B
YAML
29 lines
702 B
YAML
# SPDX-License-Identifier: BSD-3-Clause
|
|
---
|
|
- name: Manage ethernet with VLAN
|
|
hosts: network-test
|
|
vars:
|
|
network_connections:
|
|
# Create a profile for the underlying device of the VLAN.
|
|
- name: prod2
|
|
type: ethernet
|
|
autoconnect: false
|
|
state: up
|
|
interface_name: "{{ network_interface_name2 }}"
|
|
ip:
|
|
dhcp4: false
|
|
auto6: false
|
|
|
|
# on top of it, create a VLAN with ID 100 and static
|
|
# addressing
|
|
- name: prod2.100
|
|
state: up
|
|
type: vlan
|
|
parent: prod2
|
|
vlan_id: 100
|
|
ip:
|
|
address:
|
|
- 192.0.2.{{ network_iphost }}/24
|
|
|
|
roles:
|
|
- linux-system-roles.network
|