feat: remove unused block

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

View file

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