-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(lint): fixed ansible lint errors in the monitoring file
Signed-off-by: sakethanne <[email protected]>
- Loading branch information
1 parent
9d81f40
commit b47c06a
Showing
1 changed file
with
8 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,11 +64,17 @@ | |
ansible.builtin.cron: | ||
name: "mev imc temperature" | ||
minute: "*/5" | ||
job: "ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o ConnectTimeout=3 [email protected] iset-cli get-temperature > /run/mev_imc_temperature.json" | ||
job: > | ||
ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null | ||
-o ConnectTimeout=3 [email protected] iset-cli get-temperature | ||
> /run/mev_imc_temperature.json | ||
- name: Intel | Add additional mount for mev | ||
ansible.builtin.set_fact: | ||
telegraf_mounts: "{{ telegraf_mounts + [{'type': 'bind', 'source': '/run/mev_imc_temperature.json', 'target': '/run/mev_imc_temperature.json', 'read_only': true}] }}" | ||
telegraf_mounts: "{{ telegraf_mounts + [{'type': 'bind', | ||
'source': '/run/mev_imc_temperature.json', | ||
'target': '/run/mev_imc_temperature.json', | ||
'read_only': true}] }}" | ||
|
||
- name: Print the list of mounts for each host | ||
ansible.builtin.debug: | ||
|