init
This commit is contained in:
48
tasks/main.yml
Normal file
48
tasks/main.yml
Normal file
@@ -0,0 +1,48 @@
|
||||
---
|
||||
# tasks file for podman
|
||||
|
||||
- name: Install Podman packages
|
||||
ansible.builtin.include_tasks: install.yml
|
||||
tags:
|
||||
- podman
|
||||
- podman-install
|
||||
|
||||
- name: Configure Podman
|
||||
ansible.builtin.include_tasks: configure.yml
|
||||
tags:
|
||||
- podman
|
||||
- podman-configure
|
||||
|
||||
- name: Manage Podman services
|
||||
ansible.builtin.include_tasks: services.yml
|
||||
tags:
|
||||
- podman
|
||||
- podman-services
|
||||
|
||||
- name: Manage Podman networks
|
||||
ansible.builtin.include_tasks: networks.yml
|
||||
when: podman_networks | length > 0
|
||||
tags:
|
||||
- podman
|
||||
- podman-networks
|
||||
|
||||
- name: Manage Podman volumes
|
||||
ansible.builtin.include_tasks: volumes.yml
|
||||
when: podman_volumes | length > 0
|
||||
tags:
|
||||
- podman
|
||||
- podman-volumes
|
||||
|
||||
- name: Manage Podman pods
|
||||
ansible.builtin.include_tasks: pods.yml
|
||||
when: podman_pods | length > 0
|
||||
tags:
|
||||
- podman
|
||||
- podman-pods
|
||||
|
||||
- name: Manage Podman containers
|
||||
ansible.builtin.include_tasks: containers.yml
|
||||
when: podman_containers | length > 0
|
||||
tags:
|
||||
- podman
|
||||
- podman-containers
|
||||
Reference in New Issue
Block a user