chore(nginx): add state=absent support

This commit is contained in:
2024-10-05 10:04:19 +02:00
parent 97526aec36
commit c36e95d7eb
4 changed files with 44 additions and 9 deletions

View File

@ -3,6 +3,7 @@ nginx_version: "1.27.2"
nginx_flavour: alpine
nginx_base_path: /opt/nginx
nginx_config_file: "{{ nginx_base_path }}/nginx.conf"
nginx_state: present
nginx_container_name: nginx
nginx_container_image_reference: >-
@ -25,6 +26,9 @@ nginx_container_image_repository: >-
nginx_container_image_registry: "docker.io"
nginx_container_image_name: "nginx"
nginx_container_image_tag: ~
nginx_container_image_source: pull
nginx_container_state: >-2
{{ (nginx_state == 'present') | ternary('started', 'absent') }}
nginx_container_restart_policy: "unless-stopped"
nginx_container_volumes: