...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
# Add the prometheus-community repo and perform a general update of the repositories $ helm repo add prometheus-community https://prometheus-community.github.io/helm-charts $ helm repo update # Install ChartUse the --create-namespace flag, if the namespace does not exist $ helm install <chart_name> prometheus-community/kube-prometheus-stack -n monitoring [--create-namespace] |
In this way we will have already deployed all the components in our cluster. To perform a quick test, you can connect, via browser, to the user interfaces of Prometheus and Grafana, modifying the two services
in a similar way to what was seen for the Kubernetes dashboard: edit
the type of service
, from ClusterIP
to NodePort
, and select a port in the range 30000-32767. At the first access to Grafana you will be asked for your credentials, which you can later change. Credentials are present in github site.
...