https://artifacthub.io/packages/helm/prometheus-community/prometheus
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm repo update
helm install prometheus prometheus-community/prometheus --set server.service.type=LoadBalancer --set server.global.scrape_interval=10s
helm upgrade prometheus prometheus-community/prometheus --set server.service.type=LoadBalancer --set server.global.scrape_interval=10s
helm repo add grafana https://grafana.github.io/helm-charts
helm repo update
helm install grafana grafana/grafana --set service.type=LoadBalancer
Comando para obter a senha do admin
kubectl get secret --namespace default grafana -o jsonpath="{.data.admin-password}" | base64 --decode ; echo