You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
634 B
YAML
18 lines
634 B
YAML
---
|
|
|
|
### tags:
|
|
### prometheus
|
|
|
|
- name: Deploy kube-prometheus-stack inside monitoring namespace
|
|
kubernetes.core.helm:
|
|
name: "{{ k8s_prometheus_helm__name }}"
|
|
chart_repo_url: "{{ k8s_prometheus_helm__chart_repo_url | default('https://prometheus-community.github.io/helm-charts') }}"
|
|
chart_ref: "{{ k8s_prometheus_helm__chart_ref | default('kube-prometheus-stack') }}"
|
|
release_namespace: "{{ k8s_prometheus_helm__release_namespace }}"
|
|
create_namespace: yes
|
|
release_values: "{{ k8s_prometheus_helm__release_values }}"
|
|
when:
|
|
- inventory_hostname == groups['kube_control_plane'][0]
|
|
tags:
|
|
- prometheus
|