This commit is contained in:
2026-03-04 19:17:56 +01:00
parent ae6a62582a
commit a19f7e86b5
3 changed files with 14 additions and 1 deletions

View File

@@ -6,6 +6,12 @@
ansible.builtin.include_role:
name: proxy_repo
- name: Include role
ansible.builtin.include_role:
name: mirror_repo
when: use_local_repo == true
- name: Disable SELinux
ansible.posix.selinux:
state: permissive
@@ -78,6 +84,9 @@
- docker-ce-cli
state: absent
ignore_errors: true
- name: Install containerd
dnf:
name: containerd.io

View File

@@ -4,3 +4,5 @@ aliases:
gs: "git status"
k: "kubectl"
gk: "git clone git@gitlab.sectorq.eu:jaydee/kubernetes.git"
use_local_repo: true

View File

@@ -1,3 +1,5 @@
#SPDX-License-Identifier: MIT-0
---
# vars file for mirror_repo
use_local_repo: true