Comply with ansible-lint

Signed-off-by: Derek Nola <derek.nola@suse.com>
This commit is contained in:
Derek Nola
2023-11-07 13:35:08 -08:00
parent 5b17c77e71
commit 1031ea3ce2
15 changed files with 74 additions and 67 deletions

View File

@@ -1,6 +1,7 @@
---
- hosts: k3s_cluster
- name: "Setup K3s Cluster"
hosts: k3s_cluster
gather_facts: yes
become: yes
roles:
@@ -8,12 +9,14 @@
- role: download
- role: raspberrypi
- hosts: master
- name: "Server Setup"
hosts: master
become: yes
roles:
- role: k3s/master
- role: k3s/master # noqa: role-name[path]
- hosts: node
- name: "Agent Setup"
hosts: node
become: yes
roles:
- role: k3s/node
- role: k3s/node # noqa: role-name[path]