From b2e635467fa4627980953e82e791d10f88c5af78 Mon Sep 17 00:00:00 2001 From: Adrien Reslinger Date: Sat, 3 Jun 2023 11:32:45 +0200 Subject: [PATCH] Update k3s-selinux package to version 1.4.stable.1 --- tasks/cluster_k3s.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/cluster_k3s.yml b/tasks/cluster_k3s.yml index fc61a82..c27a755 100644 --- a/tasks/cluster_k3s.yml +++ b/tasks/cluster_k3s.yml @@ -14,7 +14,7 @@ - name: Install the k3s-selinux rpm from a remote repo for yum distro ansible.builtin.yum: - name: "https://github.com/k3s-io/k3s-selinux/releases/download/v1.3.stable.1/k3s-selinux-1.3-1.el7.noarch.rpm" + name: "https://github.com/k3s-io/k3s-selinux/releases/download/v1.4.stable.1/k3s-selinux-1.4-1.el7.noarch.rpm" state: present when: - ansible_pkg_mgr == "yum" @@ -23,7 +23,7 @@ - name: Install the k3s-selinux rpm from a remote repo for dnf distro ansible.builtin.dnf: - name: "https://github.com/k3s-io/k3s-selinux/releases/download/v1.3.stable.1/k3s-selinux-1.3-1.el{{ ansible_distribution_major_version }}.noarch.rpm" + name: "https://github.com/k3s-io/k3s-selinux/releases/download/v1.4.stable.1/k3s-selinux-1.4-1.el{{ ansible_distribution_major_version }}.noarch.rpm" state: present when: - ansible_pkg_mgr == "dnf"