File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -172,11 +172,7 @@ default_sysctls = [
172
172
173
173
# Logging driver for the container. Available options: k8s-file and journald.
174
174
#
175
- {% if log_driver is vyos_defined %}
176
- log_driver = "{{ log_driver }}"
177
- {% else %}
178
175
#log_driver = "k8s-file"
179
- {% endif %}
180
176
181
177
# Maximum size allowed for the container log file. Negative numbers indicate
182
178
# that no size limit is imposed. If positive, it must be >= 8192 to match or
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ def test_basic(self):
110
110
tmp = cmd (f'sudo podman exec -it { cont_name } sysctl kernel.msgmax' )
111
111
self .assertEqual (tmp , 'kernel.msgmax = 4096' )
112
112
113
- tmp = cmd (f'podman container inspect { cont_name } --format "{{ .HostConfig.LogConfig.Type }}"' )
113
+ tmp = cmd (f'podman container inspect { cont_name } --format "{{{{ .HostConfig.LogConfig.Type }}}}" "' )
114
114
self .assertEqual (tmp , 'journald' )
115
115
116
116
You can’t perform that action at this time.
0 commit comments