| # Copyright (c) 2024 VEXXHOST, Inc. |
| # SPDX-License-Identifier: Apache-2.0 |
| - name: Create temporary file to download |
| ansible.builtin.tempfile: |
| - name: Download Prometheus |
| url: https://github.com/prometheus/prometheus/releases/download/v2.55.0/prometheus-2.55.0.linux-amd64.tar.gz |
| dest: "{{ promtool_file.path }}" |
| checksum: sha256:7a6b6d5ea003e8d59def294392c64e28338da627bf760cf268e788d6a8832a23 |
| - name: Extract Prometheus into /usr/local/bin |
| ansible.builtin.unarchive: |
| src: "{{ promtool_file.path }}" |
| - prometheus-2.55.0.linux-amd64/promtool |
| - name: Remove temporary file |
| path: "{{ promtool_file.path }}" |