16 lines
323 B
YAML
16 lines
323 B
YAML
---
|
|
- hosts: lab
|
|
remote_user: cluster-master
|
|
tasks:
|
|
- name: Install K3S
|
|
become: yes
|
|
import_tasks: tasks/install-k3s.yml
|
|
tags:
|
|
- bare-setup
|
|
- name: Ensure the service DNS names are in /etc/hosts
|
|
become: yes
|
|
import_tasks: tasks/setup-etc-hosts.yml
|
|
tags:
|
|
- dns
|
|
|