feat: remove unused block

This commit is contained in:
Simon Cornet 2025-11-16 11:22:12 +01:00
commit ee401a8af8

View file

@ -6,14 +6,10 @@
become: true
tasks:
# update cluster
- name: "update cluster"
# enter ceph maintenance mode
- name: "set ceph enter maintenance mode"
tags: "update-cluster"
block:
# enter ceph maintenance mode
- name: "set ceph enter maintenance mode"
ansible.builtin.import_tasks: "tasks/ceph/enter-maint.yaml"
ansible.builtin.import_tasks: "tasks/ceph/enter-maint.yaml"
# update proxmox - all nodes
@ -23,14 +19,10 @@
serial: 1
tasks:
# update cluster
- name: "update cluster"
# update proxmox cluster
- name: "update proxmox cluster nodes"
tags: "update-cluster"
block:
# update proxmox cluster
- name: "update proxmox cluster nodes"
ansible.builtin.import_tasks: "tasks/proxmox/update-node.yaml"
ansible.builtin.import_tasks: "tasks/proxmox/update-node.yaml"
# update proxmox - last node
@ -39,11 +31,7 @@
become: true
tasks:
# update cluster
- name: "update cluster"
# exit ceph maintenance mode
- name: "exit ceph maintenance mode"
tags: "update-cluster"
block:
# exit ceph maintenance mode
- name: "exit ceph maintenance mode"
ansible.builtin.import_tasks: "tasks/ceph/exit-maint.yaml"
ansible.builtin.import_tasks: "tasks/ceph/exit-maint.yaml"