mirror of
https://github.com/davestephens/ansible-nas
synced 2025-01-13 03:58:47 +00:00
44 lines
1.6 KiB
YAML
44 lines
1.6 KiB
YAML
---
|
|
- name: Start Wireshark
|
|
block:
|
|
- name: Create Wireshark Directories
|
|
ansible.builtin.file:
|
|
path: "{{ item }}"
|
|
state: directory
|
|
with_items:
|
|
- "{{ wireshark_data_directory }}"
|
|
- "{{ wireshark_data_directory }}/config"
|
|
|
|
- name: Create Wireshark Docker Container
|
|
community.docker.docker_container:
|
|
container_default_behavior: no_defaults
|
|
name: "{{ wireshark_container_name }}"
|
|
image: "{{ wireshark_image_name }}:{{ wireshark_image_version }}"
|
|
pull: true
|
|
volumes:
|
|
- "{{ wireshark_data_directory }}/config:/config:rw"
|
|
network_mode: host
|
|
env:
|
|
TZ: "{{ ansible_nas_timezone }}"
|
|
PUID: "{{ wireshark_user_id }}"
|
|
PGID: "{{ wireshark_group_id }}"
|
|
capabilities:
|
|
- NET_ADMIN
|
|
restart_policy: unless-stopped
|
|
memory: "{{ wireshark_memory }}"
|
|
labels:
|
|
traefik.enable: "{{ wireshark_available_externally | string }}"
|
|
traefik.http.routers.wireshark.rule: "Host(`{{ wireshark_hostname }}.{{ ansible_nas_domain }}`)"
|
|
traefik.http.routers.wireshark.tls.certresolver: "letsencrypt"
|
|
traefik.http.routers.wireshark.tls.domains[0].main: "{{ ansible_nas_domain }}"
|
|
traefik.http.routers.wireshark.tls.domains[0].sans: "*.{{ ansible_nas_domain }}"
|
|
traefik.http.services.wireshark.loadbalancer.server.port: "3000"
|
|
when: wireshark_enabled is true
|
|
|
|
- name: Stop Wireshark
|
|
block:
|
|
- name: Stop Wireshark
|
|
community.docker.docker_container:
|
|
name: "{{ wireshark_container_name }}"
|
|
state: absent
|
|
when: wireshark_enabled is false
|