This commit is contained in:
Daniel Akulenok
2025-09-10 15:10:55 +02:00
parent 565bfa8477
commit 0938e4b601

View File

@@ -152,7 +152,7 @@
annotation: "{{ item.annotations | default(omit) }}"
# Container lifecycle
restart_policy: "{{ item.restart_policy | default('no') }}"
restart_policy: "{{ item.restart_policy | default(omit) }}"
restart_time: "{{ item.restart_time | default(omit) }}"
stop_signal: "{{ item.stop_signal | default(omit) }}"
stop_time: "{{ item.stop_time | default(omit) }}"
@@ -160,7 +160,7 @@
timeout: "{{ item.timeout | default(omit) }}"
# Pull and image options
pull: "{{ item.pull | default('missing') }}"
pull: "{{ item.pull | default(omit) }}"
image_strict: "{{ item.image_strict | bool | default(omit) }}"
arch: "{{ item.arch | default(omit) }}"
os: "{{ item.os | default(omit) }}"