superlint/.automation/test/ansible/roles/ghe_initialize/tasks/collectd-settings.yml

89 lines
2.6 KiB
YAML
Raw Normal View History

2020-02-04 09:49:58 -05:00
---
- name: Wait for admin port to open
block:
2020-02-04 09:49:58 -05:00
- name: Wait for Admin port to come up (Port 8443)
## Doc: http://docs.ansible.com/ansible/latest/modules/wait_for_module.html
## Helpful Google: ansible wait_for
2022-03-24 10:26:33 -04:00
ansible.builtin.wait_for:
2020-02-04 09:49:58 -05:00
host: "{{ ansible_host }}"
port: 8443
delay: 5
timeout: 300
state: started
changed_when: false
#################################
# Wait for successful open port #
#################################
- name: Wait for http status 200
changed_when: false
2022-03-24 10:26:33 -04:00
ansible.builtin.uri:
2020-02-04 09:49:58 -05:00
url: "https://{{ ansible_host }}:8443"
validate_certs: "no"
register: http_result
# ignore_errors: true
until: http_result.status == 200
retries: 100
delay: 3
#######################################################
# Copy License file to GHE to decrypt file and upload #
#######################################################
# Copy of the file will allow for Ansible Vault to decrypt the file
# and place it on the new remote machine
- name: Copy collectd-settings.json File to GHE
become: true
2022-03-24 10:26:33 -04:00
ansible.builtin.template:
2020-02-04 09:49:58 -05:00
src: "collectd-settings.json.j2"
dest: /tmp/collectd-settings.json
owner: admin
group: admin
mode: 0644
2020-06-21 00:00:08 -04:00
########################################################
# Set up Admin password, License, and Initial Settings #
########################################################
2020-02-04 09:49:58 -05:00
- name: Setup Grafana
# yamllint disable
2022-03-24 10:26:33 -04:00
ansible.builtin.shell: curl --fail -Lk \
2020-02-04 09:49:58 -05:00
-X PUT "https://api_key:{{ github_admin_password }}@{{ ansible_host }}:8443/setup/api/settings" \
--data-urlencode "settings=`cat /tmp/collectd-settings.json`"
# yamllint enable
retries: 10
delay: 5
register: http_collectd_config_result
until: http_collectd_config_result.rc == 0
notify: ghe config apply
#####################################
# Edit forwarding.conf with metrics #
#####################################
- name: Copy forwarding.conf File to GHE
become: true
2022-03-24 10:26:33 -04:00
ansible.builtin.template:
2020-02-04 09:49:58 -05:00
force: true
src: "forwarding.conf.j2"
dest: /etc/collectd/conf.d/forwarding.conf
owner: root
group: root
mode: 0644
###########################################
# Restart Collectd service to take effect #
###########################################
- name: Restart Collectd service
become: true
2022-03-24 10:26:33 -04:00
ansible.builtin.service:
2020-02-04 09:49:58 -05:00
name: collectd
state: restarted
######################
# Set the tags block #
######################
tags:
- metrics
- github
- ghe_primary
- initialize