Merge "Add podman's events_logger option by default set to journald" into stable/train

This commit is contained in:
Zuul 2021-06-08 21:32:45 +00:00 committed by Gerrit Code Review
commit 2f1fb2439e
2 changed files with 11 additions and 3 deletions

View File

@ -51,3 +51,4 @@ tripleo_podman_default_network_config:
portMappings: true portMappings: true
- type: firewall - type: firewall
- type: tuning - type: tuning
tripleo_container_events_logger_mechanism: journald

View File

@ -70,6 +70,13 @@
setype: etc_t setype: etc_t
mode: '0644' mode: '0644'
create: true create: true
section: containers section: "{{ item.section }}"
option: pids_limit option: "{{ item.option }}"
value: "{{ tripleo_container_default_pids_limit }}" value: "{{ item.value }}"
loop:
- section: containers
option: pids_limit
value: "{{ tripleo_container_default_pids_limit }}"
- section: engine
option: events_logger
value: "\"{{ tripleo_container_events_logger_mechanism }}\""