Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 670 Bytes

install-prometheus-commands.md

File metadata and controls

17 lines (13 loc) · 670 Bytes

create Minikube cluster

minikube start --cpus 4 --memory 8192 --vm-driver hyperkit

install Prometheus-operator

add repos
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
install chart
helm install prometheus prometheus-community/kube-prometheus-stack
install chart with fixed version
helm install prometheus prometheus-community/kube-prometheus-stack --version "9.4.1"
Link to chart

[https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-prometheus-stack]