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