Prometheus Installation with Helm: Difference between revisions
Jump to navigation
Jump to search
Line 33: | Line 33: | ||
<syntaxhighlight lang='bash'> | <syntaxhighlight lang='bash'> | ||
helm uninstall -n | helm uninstall -n prom prometheus | ||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 05:24, 16 October 2020
External
- https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-prometheus-stack
- https://github.com/prometheus-operator/kube-prometheus
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
kubectl create ns prom
helm install -n prom prometheus prometheus-community/kube-prometheus-stack
Optionally, perform the post-install steps.
Post-Install
- Expose Prometheus console in Kubernetes
- Expose Grafana locally over a LoadBalancer service
- Recover (or change) Grafana password
Uninstall
helm uninstall -n prom prometheus