Prometheus Installation with Helm: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 11: Line 11:


Install the "kube-prometheus-stack" Helm chart.
Install the "kube-prometheus-stack" Helm chart.
Various walkthroughs seem to prefer to name the Prometheus namespace "prom". We shall use this conventions.


<syntaxhighlight lang='bash'>
<syntaxhighlight lang='bash'>
Line 17: Line 19:
helm repo update
helm repo update


helm install -n prometheus prometheus prometheus-community/kube-prometheus-stack
helm install -n prom prometheus prometheus-community/kube-prometheus-stack
</syntaxhighlight>
</syntaxhighlight>



Revision as of 03:59, 15 October 2020

External

Internal

Overview

Installs Prometheus, Grafana, etc.

Install

Install the "kube-prometheus-stack" Helm chart.

Various walkthroughs seem to prefer to name the Prometheus namespace "prom". We shall use this conventions.

helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm repo add stable https://kubernetes-charts.storage.googleapis.com/
helm repo update

helm install -n prom prometheus prometheus-community/kube-prometheus-stack

Post-Install

Uninstall

helm uninstall -n prometheus prometheus