Skip to content

Commit

Permalink
container: T5867: disable healthchecks due to upstream issue
Browse files Browse the repository at this point in the history
conmon 402de34b31388b5a2e1c <error>: Unable to send container stderr message to parent Broken pipe

containers/conmon#438
  • Loading branch information
c-po committed Dec 28, 2023
1 parent 405cc66 commit 6c84ff4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/conf_mode/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ def generate_run_arguments(name, container_config):
else:
ip_param += f' --ip {address}'

return f'{container_base_cmd} --net {networks} {ip_param} {entrypoint} {image} {command} {command_arguments}'.strip()
return f'{container_base_cmd} --no-healthcheck --net {networks} {ip_param} {entrypoint} {image} {command} {command_arguments}'.strip()

def generate(container):
# bail out early - looks like removal from running config
Expand Down

0 comments on commit 6c84ff4

Please sign in to comment.