mirror of
https://gitlab.archlinux.org/archlinux/infrastructure.git
synced 2025-01-18 08:06:16 +01:00
ansible-lint 6.5.0 complains about: name: All names should start with an uppercase letter. (name[casing])
20 lines
512 B
YAML
20 lines
512 B
YAML
- name: Upgrade and reboot all hetzner servers
|
|
hosts: all,!kape_servers,!equinix_metal
|
|
max_fail_percentage: 0
|
|
serial: 20%
|
|
gather_facts: false
|
|
|
|
tasks:
|
|
- name: Upgrade each host in this batch
|
|
include_tasks: include/upgrade-server.yml
|
|
|
|
- name: Upgrade and reboot all Kape and Equinix Metal servers
|
|
hosts: kape_servers,equinix_metal
|
|
max_fail_percentage: 0
|
|
serial: 1
|
|
gather_facts: false
|
|
|
|
tasks:
|
|
- name: Upgrade each host in this batch
|
|
include_tasks: include/upgrade-server.yml
|