Skip to content

Commit

Permalink
Alertmanager command on a single line
Browse files Browse the repository at this point in the history
  • Loading branch information
drmatthews committed Jan 3, 2024
1 parent 69fdd27 commit d4a5d84
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,7 @@
image: "{{ monitoring_server_alertmanager.image }}"
state: started
user: "{{ monitoring_server_uid }}:{{ monitoring_server_gid }}"
command: >
"{% for key in
monitoring_server_alertmanager.commandline_args
%}--{{ key }}={{ monitoring_server_alertmanager.commandline_args[key] }}
{% endfor %}"
command: "{% for key in monitoring_server_alertmanager.commandline_args %}--{{ key }}={{ monitoring_server_alertmanager.commandline_args[key] }}{% endfor %}" # noqa yaml[line-length]
networks:
- name: monitor-net
volumes:
Expand Down

0 comments on commit d4a5d84

Please sign in to comment.