diff options
| author | Mitch Riedstra <mitch@riedstra.us> | 2019-03-05 22:33:19 -0500 |
|---|---|---|
| committer | Mitch Riedstra <mitch@riedstra.us> | 2019-03-05 22:33:19 -0500 |
| commit | a436d3d340a96d473c2b7c7a29cebd54367a60b4 (patch) | |
| tree | 13059eb336ce2bd4ec25ec97c47d27e45006ee09 /defaults | |
| download | prometheus-a436d3d340a96d473c2b7c7a29cebd54367a60b4.tar.gz prometheus-a436d3d340a96d473c2b7c7a29cebd54367a60b4.tar.xz | |
Initial
Diffstat (limited to 'defaults')
| -rw-r--r-- | defaults/main.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/defaults/main.yml b/defaults/main.yml new file mode 100644 index 0000000..634243f --- /dev/null +++ b/defaults/main.yml @@ -0,0 +1,20 @@ +--- + +prometheus_ui_listen: ':9090' +prometheus_home_dir: /var/lib/prometheus +prometheus_data_dir: '{{prometheus_home_dir}}/data' +prometheus_user: prometheus +prometheus_version: "2.7.2" +prometheus_os: "{{ansible_facts['system']|lower}}" # Should resolve to "linux" +prometheus_checksum: fca1b17bef8bd19c2ad90caf13d7ffa85e8c4655aa03315fb5e228bd06c4e0ae +prometheus_architecture: amd64 +# https://github.com/prometheus/prometheus/releases/download/v2.7.2/prometheus-2.7.2.linux-amd64.tar.gz +prometheus_url: "https://github.com/prometheus/prometheus/releases/download/v{{prometheus_version}}/prometheus-{{prometheus_version}}.{{prometheus_os}}-{{prometheus_architecture}}.tar.gz" + + +prometheus_netdata_hosts: + - localhost:19999 + +# Only inserted into the template if defined +# prometheus_netdata_tls_hosts: +# - example.com:19443 |
