chore(nginx): add deployment_method=podman
This commit is contained in:
parent
c36e95d7eb
commit
afe72f554e
@ -26,3 +26,8 @@ For exposing this server to the host and/or internet, the `nginx_container_ports
|
|||||||
from host to container), `nginx_container_networks` (docker networking) or `nginx_container_labels`
|
from host to container), `nginx_container_networks` (docker networking) or `nginx_container_labels`
|
||||||
(for label-based routing discovery like traefik) can be used. The options correspond to the arguments
|
(for label-based routing discovery like traefik) can be used. The options correspond to the arguments
|
||||||
of the `community.docker.docker_container` module.
|
of the `community.docker.docker_container` module.
|
||||||
|
|
||||||
|
## Deployment methods
|
||||||
|
|
||||||
|
Set `nginx_deployment_method` to either `docker` or `podman` to use the respective ansible modules for
|
||||||
|
creating and managing the container and its image. See all supported methods in `nginx_deployment_methods`.
|
||||||
|
@ -4,6 +4,7 @@ nginx_flavour: alpine
|
|||||||
nginx_base_path: /opt/nginx
|
nginx_base_path: /opt/nginx
|
||||||
nginx_config_file: "{{ nginx_base_path }}/nginx.conf"
|
nginx_config_file: "{{ nginx_base_path }}/nginx.conf"
|
||||||
nginx_state: present
|
nginx_state: present
|
||||||
|
nginx_deployment_method: docker
|
||||||
|
|
||||||
nginx_container_name: nginx
|
nginx_container_name: nginx
|
||||||
nginx_container_image_reference: >-
|
nginx_container_image_reference: >-
|
||||||
|
@ -9,3 +9,4 @@ galaxy_info:
|
|||||||
- http
|
- http
|
||||||
- webserver
|
- webserver
|
||||||
- docker
|
- docker
|
||||||
|
- podman
|
||||||
|
28
roles/nginx/tasks/deploy-docker.yml
Normal file
28
roles/nginx/tasks/deploy-docker.yml
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
---
|
||||||
|
- name: Ensure docker container image '{{ nginx_container_image_reference }}' is {{ nginx_state }}
|
||||||
|
community.docker.docker_image:
|
||||||
|
name: "{{ nginx_container_image_reference }}"
|
||||||
|
state: "{{ nginx_state }}"
|
||||||
|
source: "{{ nginx_container_image_source }}"
|
||||||
|
force_source: >-2
|
||||||
|
{{ nginx_container_image_force_source
|
||||||
|
| default(nginx_container_image_tag | default(false, true)) }}
|
||||||
|
register: nginx_container_image_info
|
||||||
|
until: nginx_container_image_info is success
|
||||||
|
retries: 5
|
||||||
|
delay: 3
|
||||||
|
|
||||||
|
- name: Ensure docker container '{{ nginx_container_name }}' is {{ nginx_container_state }}
|
||||||
|
community.docker.docker_container:
|
||||||
|
name: "{{ nginx_container_name }}"
|
||||||
|
image: "{{ nginx_container_image_reference }}"
|
||||||
|
env: "{{ nginx_container_env | default(omit, true) }}"
|
||||||
|
user: "{{ nginx_container_user | default(omit, true) }}"
|
||||||
|
ports: "{{ nginx_container_ports | default(omit, true) }}"
|
||||||
|
labels: "{{ nginx_container_labels | default(omit, true) }}"
|
||||||
|
volumes: "{{ nginx_container_volumes | default(omit, true) }}"
|
||||||
|
etc_hosts: "{{ nginx_container_etc_hosts | default(omit, true) }}"
|
||||||
|
networks: "{{ nginx_container_networks | default(omit, true) }}"
|
||||||
|
purge_networks: "{{ nginx_container_purge_networks | default(omit, true) }}"
|
||||||
|
restart_policy: "{{ nginx_container_restart_policy }}"
|
||||||
|
state: "{{ nginx_container_state }}"
|
27
roles/nginx/tasks/deploy-podman.yml
Normal file
27
roles/nginx/tasks/deploy-podman.yml
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
- name: Ensure container image '{{ nginx_container_image_reference }}' is {{ nginx_state }}
|
||||||
|
containers.podman.podman_image:
|
||||||
|
name: "{{ nginx_container_image_reference }}"
|
||||||
|
state: "{{ nginx_state }}"
|
||||||
|
pull: "{{ nginx_container_image_source == 'pull' }}"
|
||||||
|
force: >-2
|
||||||
|
{{ nginx_container_image_force_source
|
||||||
|
| default(nginx_container_image_tag | default(false, true)) }}
|
||||||
|
register: nginx_container_image_info
|
||||||
|
until: nginx_container_image_info is success
|
||||||
|
retries: 5
|
||||||
|
delay: 3
|
||||||
|
|
||||||
|
- name: Ensure container '{{ nginx_container_name }}' is {{ nginx_container_state }}
|
||||||
|
containers.podman.podman_container:
|
||||||
|
name: "{{ nginx_container_name }}"
|
||||||
|
image: "{{ nginx_container_image_reference }}"
|
||||||
|
env: "{{ nginx_container_env | default(omit, true) }}"
|
||||||
|
user: "{{ nginx_container_user | default(omit, true) }}"
|
||||||
|
ports: "{{ nginx_container_ports | default(omit, true) }}"
|
||||||
|
labels: "{{ nginx_container_labels | default(omit, true) }}"
|
||||||
|
volumes: "{{ nginx_container_volumes | default(omit, true) }}"
|
||||||
|
etc_hosts: "{{ nginx_container_etc_hosts | default(omit, true) }}"
|
||||||
|
network: "{{ nginx_container_networks | default(omit, true) }}"
|
||||||
|
restart_policy: "{{ nginx_container_restart_policy }}"
|
||||||
|
state: "{{ nginx_container_state }}"
|
@ -6,6 +6,13 @@
|
|||||||
states are {{ nginx_states | join(', ') }}.
|
states are {{ nginx_states | join(', ') }}.
|
||||||
when: nginx_state not in nginx_states
|
when: nginx_state not in nginx_states
|
||||||
|
|
||||||
|
- name: Check if deployment_method is supported
|
||||||
|
ansible.builtin.fail:
|
||||||
|
msg: >-2
|
||||||
|
Unsupported state '{{ nginx_deployment_method }}'. Supported
|
||||||
|
states are {{ nginx_deployment_methods | join(', ') }}.
|
||||||
|
when: nginx_deployment_method not in nginx_deployment_methods
|
||||||
|
|
||||||
- name: Ensure nginx config file is {{ nginx_state }}
|
- name: Ensure nginx config file is {{ nginx_state }}
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
path: "{{ nginx_config_file }}"
|
path: "{{ nginx_config_file }}"
|
||||||
@ -28,26 +35,6 @@
|
|||||||
- restart-nginx
|
- restart-nginx
|
||||||
when: nginx_state == 'present'
|
when: nginx_state == 'present'
|
||||||
|
|
||||||
- name: Ensure docker container image '{{ nginx_container_image_reference }}' is {{ nginx_state }}
|
- name: Deploy using {{ nginx_deployment_method }}
|
||||||
community.docker.docker_image:
|
ansible.builtin.include_tasks:
|
||||||
name: "{{ nginx_container_image_reference }}"
|
file: "deploy-{{ nginx_deployment_method }}.yml"
|
||||||
state: "{{ nginx_state }}"
|
|
||||||
source: "{{ nginx_container_image_source }}"
|
|
||||||
force_source: >-2
|
|
||||||
{{ nginx_container_image_force_source
|
|
||||||
| default(nginx_container_image_tag | default(false, true)) }}
|
|
||||||
|
|
||||||
- name: Ensure docker container '{{ nginx_container_name }}' is {{ nginx_container_state }}
|
|
||||||
community.docker.docker_container:
|
|
||||||
name: "{{ nginx_container_name }}"
|
|
||||||
image: "{{ nginx_container_image_reference }}"
|
|
||||||
env: "{{ nginx_container_env | default(omit, true) }}"
|
|
||||||
user: "{{ nginx_container_user | default(omit, true) }}"
|
|
||||||
ports: "{{ nginx_container_ports | default(omit, true) }}"
|
|
||||||
labels: "{{ nginx_container_labels | default(omit, true) }}"
|
|
||||||
volumes: "{{ nginx_container_volumes | default(omit, true) }}"
|
|
||||||
etc_hosts: "{{ nginx_container_etc_hosts | default(omit, true) }}"
|
|
||||||
networks: "{{ nginx_container_networks | default(omit, true) }}"
|
|
||||||
purge_networks: "{{ nginx_container_purge_networks | default(omit, true) }}"
|
|
||||||
restart_policy: "{{ nginx_container_restart_policy }}"
|
|
||||||
state: "{{ nginx_container_state }}"
|
|
||||||
|
@ -2,3 +2,6 @@
|
|||||||
nginx_states:
|
nginx_states:
|
||||||
- present
|
- present
|
||||||
- absent
|
- absent
|
||||||
|
nginx_deployment_methods:
|
||||||
|
- docker
|
||||||
|
- podman
|
||||||
|
Loading…
Reference in New Issue
Block a user