This contains a lot of changes, including better system configuration for some issues discovered during testing, and minor tweaking for better user experience when doing maintenance
16 lines
414 B
YAML
16 lines
414 B
YAML
- hosts: all
|
|
gather_facts: no
|
|
tasks:
|
|
- name: Include vault vars
|
|
include_vars:
|
|
file: "{{ playbook_dir ~ '/vault/secrets' }}"
|
|
- name: Include vars
|
|
include_vars:
|
|
file: inventory/vars/main.yml
|
|
- name: Wait for hosts
|
|
ansible.builtin.wait_for_connection:
|
|
timeout: 60
|
|
- name: Upgrade k3s
|
|
ansible.builtin.import_playbook: k3s-ansible/upgrade.yml
|
|
throttle: 1
|