From 42903b4fe139fe568cc33c2e1d0e0d6d194f40f9 Mon Sep 17 00:00:00 2001 From: Anton Vakhrushev Date: Sun, 29 Oct 2023 19:01:49 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D0=BB=20ne?= =?UTF-8?q?tdata?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Taskfile.yml | 13 +++++++++++++ ansible/configuration.yml | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/Taskfile.yml b/Taskfile.yml index cbbceb7..0c282fb 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -7,8 +7,21 @@ vars: sh: id -u GROUP_ID: sh: id -g + ANSIBLE_HOST_KEY_CHECKING: 'True' tasks: + configure-monitoring: + cmds: + - >- + ansible-playbook + --user="major" + --become + --tags="monitoring" + --inventory="ansible/hosts_prod" + --extra-vars="ansible_python_interpreter=/usr/bin/python3" + -vvv + ansible/configuration.yml + format-py-files: cmds: - docker run --rm -u {{.USER_ID}}:{{.GROUP_ID}} -v $PWD/app:/app -w /app pyfound/black:latest_release black . diff --git a/ansible/configuration.yml b/ansible/configuration.yml index c23750c..f1f536c 100644 --- a/ansible/configuration.yml +++ b/ansible/configuration.yml @@ -71,7 +71,7 @@ - import_role: name: netdata vars: - netdata_version: 'v1.42.4' + netdata_version: 'v1.43.1' netdata_exposed_port: '{{ netdata_port }}' tags: - monitoring