skip to Main Content

Ubuntu – Can't update properties in Ansible role for Prometheus

I am trying to use Prometheus Role: https://github.com/prometheus-community/ansible I created a playbook - playbook.yaml, with the following content: --- - hosts: prometheus-server become: true roles: - role: prometheus.prometheus.prometheus prometheus_version: "2.43.0" prometheus_config_dir: "/sites/prometheus" prometheus_web_listen_address: "0.0.0.0:9090" prometheus_global: {"evaluation_interval": "1m5s", "scrape_interval": "1m", "scrape_timeout":…

VIEW QUESTION

run ansible role with specific playbook – Nginx

I have one ansible role with this structure: ── prepare-workstation.yaml ── group_vars └── roles ├── build-nginx-proxy │   ├── defaults │   ├── tasks │   └── templates │ └── nginx.yml │ ├── ca │   ├── defaults │   ├── handlers │   ├── tasks…

VIEW QUESTION
Back To Top
Search