-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7215d13
commit 89adf1f
Showing
7 changed files
with
54 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
--- | ||
# tasks file for install_utils_nerdctl | ||
- name: Tasks prerequis | ||
ansible.builtin.import_tasks: prerequis.yml | ||
|
||
- name: Tasks to install nerdctl | ||
ansible.builtin.import_tasks: install.yml | ||
ansible.builtin.import_tasks: install.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
# packages on all nodes needed | ||
- name: Install packages common | ||
ansible.builtin.dnf: | ||
name: "{{ item }}" | ||
state: present | ||
with_items: | ||
- tar | ||
- gzip | ||
become: true | ||
when: | ||
- ansible_os_family == "RedHat" | ||
- ansible_distribution_major_version | int >= 8 | ||
|
||
- name: Install packages common | ||
ansible.builtin.apt: | ||
name: "{{ item }}" | ||
state: present | ||
with_items: | ||
- tar | ||
- gzip | ||
become: true | ||
when: | ||
- ansible_os_family == "Debian" |