17 lines
399 B
YAML
17 lines
399 B
YAML
- name: Set up Agents
|
|
hosts: k3s
|
|
gather_facts: true
|
|
roles:
|
|
- role: common
|
|
when: inventory_hostname in groups["k3s_agent"]
|
|
tags:
|
|
- common
|
|
- role: k3s_agent
|
|
when: inventory_hostname in groups["k3s_agent"]
|
|
tags:
|
|
- k3s_agent
|
|
# - role: node_exporter
|
|
# when: inventory_hostname in groups["k3s_agent"]
|
|
# tags:
|
|
# - node_exporter
|