Introduces pre-commit framework with hooks for: - General file hygiene (trailing whitespace, EOF, large files) - Secret detection (TruffleHog) - YAML linting (yamllint) - Ansible linting (ansible-lint) - Python linting/formatting (ruff) - Shell script analysis (shellcheck, shfmt) - TOML formatting (taplo) - JSON formatting (prettier) Fixes 91+ ansible-lint violations: - Renamed variables to use role prefixes (e.g., brew_start -> alloy_brew_start) - Capitalized handler names per convention - Added changed_when to command tasks - Fixed template usage in task names Fixes shellcheck warnings: - Removed unused variables - Fixed SC2155 (declare and assign separately) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
22 lines
715 B
YAML
22 lines
715 B
YAML
---
|
|
# Note: node_exporter is installed via homebrew manually.
|
|
# This role manages the args file to enable textfile collector.
|
|
|
|
- name: Create textfile collector directory
|
|
ansible.builtin.file:
|
|
path: "{{ node_exporter_textfile_dir }}"
|
|
state: directory
|
|
mode: '0755'
|
|
|
|
- name: Configure node_exporter args
|
|
ansible.builtin.template:
|
|
src: node_exporter.args.j2
|
|
dest: /opt/homebrew/etc/node_exporter.args
|
|
mode: '0644'
|
|
notify: Restart node_exporter
|
|
|
|
- name: Ensure node_exporter service is started
|
|
ansible.builtin.command: brew services start node_exporter
|
|
register: node_exporter_brew_start
|
|
changed_when: "'Successfully started' in node_exporter_brew_start.stdout"
|
|
failed_when: false
|