mirror of
https://github.com/prometheus-community/ansible
synced 2024-11-22 11:53:12 +00:00
9e8cdccba6
Add a role to deploy https://github.com/google/cadvisor. Signed-off-by: SuperQ <superq@gmail.com>
10 lines
201 B
YAML
10 lines
201 B
YAML
---
|
|
- name: Restart cadvisor
|
|
listen: "restart cadvisor"
|
|
become: true
|
|
ansible.builtin.systemd:
|
|
daemon_reload: true
|
|
name: cadvisor
|
|
state: restarted
|
|
when:
|
|
- not ansible_check_mode
|