- Move fluent-bit to common role (systemd service, not a container) - Move geoip to podman/tasks/data/ (data prep, not a container) - Remove debyltech tag from geoip (not a debyltech service) - Fix check_mode for fetch subuid task to enable dry-run mode Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
23 lines
433 B
YAML
23 lines
433 B
YAML
---
|
|
- import_tasks: deps.yml
|
|
- import_tasks: security.yml
|
|
- import_tasks: service.yml
|
|
|
|
- import_tasks: fluent-bit.yml
|
|
tags: fluent-bit, graylog
|
|
|
|
- name: create the docker group
|
|
become: true
|
|
ansible.builtin.group:
|
|
name: docker
|
|
state: present
|
|
tags: common
|
|
|
|
- name: add default user to docker group
|
|
become: true
|
|
ansible.builtin.user:
|
|
name: "{{ ansible_user }}"
|
|
groups: docker
|
|
append: true
|
|
tags: common
|