Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions hooks/playbooks/update-container-selinux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
- name: Update container-selinux on ceph target nodes
hosts: "{{ cifmw_ceph_target | default('computes') }}"
gather_facts: false
become: true
tasks:
- name: Update container-selinux to latest available version
ansible.builtin.dnf:
name: container-selinux
state: latest

- name: Show container-selinux version
ansible.builtin.command:
cmd: rpm -q container-selinux
changed_when: false
Loading