UNPKG

@installdoc/ansible-gas-station

Version:

An Ansible playbook that provisions your network with software from GitHub Awesome lists, developed with disaster recovery in mind ⛽🔥🤤

82 lines (72 loc) 2.42 kB
--- - name: "Ensure Megabyte Labs configuration directory exists" file: mode: 0700 path: "{{ item }}" state: directory loop: - ~/.config - ~/.config/megabytelabs - name: "Ensure {{ app_name }} is installed" become: false community.general.homebrew: name: netdata state: "{{ app_state | default('present') }}" - name: Ensure JOBS section is enabled in the config file lineinfile: path: /etc/netdata/go.d/wmi.conf regex: "^ [JOBS]" line: " [JOBS]" when: monitor_windows - name: Configure WMI to add Windows servers to monitoring blockinfile: path: /etc/netdata/go.d/wmi.conf insertafter: "^ [ JOBS ]" block: | jobs: {% for item in netdata_win_setting %} - name: {{ item.name }} url: http://{{ item.ip }}:9182/metrics" {% endfor %} when: monitor_windows - name: "Check if netdata instance was claimed by netdata.cloud" stat: path: ~/.config/megabytelabs/netdata-claimed register: netdata_claim - name: "Wait for netdata to stabilize" wait_for: timeout: 3 when: - not netdata_claim.stat.exists - netdata_room is defined - netdata_token is defined - name: Ensure netdata service is started # noqa 301 command: brew services start netdata environment: PATH: /usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:{{ ansible_env.PATH }} when: - not netdata_claim.stat.exists # Commenting this out due to https://github.com/netdata/netdata/issues/9061. Netdata Cloud claim does not work at this point. # This is working now, leaving this as a reference - name: "Add instance to netdata cloud" command: "./netdata-claim.sh -token={{ netdata_token }} -rooms={{ netdata_room }} -url={{ netdata_claim_url }}" args: chdir: "/usr/local/opt/netdata/sbin/" creates: ~/.config/megabytelabs/netdata-claimed ignore_errors: true register: netdata_claimed_status when: - not netdata_claim.stat.exists - netdata_room is defined - netdata_token is defined - name: "Create configuration if the netdata claim was successful" file: mode: 0600 path: ~/.config/megabytelabs/netdata-claimed state: touch when: - not (netdata_claimed_status.failed | default(false)) - not (netdata_claimed_status.skipped | default(false)) - name: "Ensure {{ app_name }} is installed via Docker" include_tasks: docker-Linux.yml when: netdata_install_via_docker