Add system-upgrade to upgrade-cluster playbook (#10184)

This commit is contained in:
Mathieu Parent
2023-06-27 03:24:30 +02:00
committed by GitHub
parent 2aafab6c19
commit 77069354cf
6 changed files with 62 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
---
- name: APT upgrade
when:
- system_upgrade
- ansible_os_family == "Debian"
include_tasks: apt.yml
tags:
- system-upgrade-apt
- name: YUM upgrade
when:
- system_upgrade
- ansible_os_family == "RedHat"
- not is_fedora_coreos
include_tasks: yum.yml
tags:
- system-upgrade-yum