From cfd6df6c30b1dc43c9eebd157582eb4b335a6bab Mon Sep 17 00:00:00 2001 From: Michele Cereda Date: Thu, 30 Nov 2023 18:47:35 +0100 Subject: [PATCH] chore: added source --- examples/kubernetes/grafana on k8s using helm.md | 2 ++ .../kubernetes/prometheus on k8s using helm.md | 14 ++++++++++---- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/examples/kubernetes/grafana on k8s using helm.md b/examples/kubernetes/grafana on k8s using helm.md index c2bd761..643db77 100644 --- a/examples/kubernetes/grafana on k8s using helm.md +++ b/examples/kubernetes/grafana on k8s using helm.md @@ -64,6 +64,7 @@ Useful dashboards: - Official [helm chart] - [Set up prometheus and ingress on kubernetes] +- [How to integrate Prometheus and Grafana on Kubernetes using Helm] +[how to integrate prometheus and grafana on kubernetes using helm]: https://semaphoreci.com/blog/prometheus-grafana-kubernetes-helm [set up prometheus and ingress on kubernetes]: https://blog.gojekengineering.com/diy-how-to-set-up-prometheus-and-ingress-on-kubernetes-d395248e2ba diff --git a/examples/kubernetes/prometheus on k8s using helm.md b/examples/kubernetes/prometheus on k8s using helm.md index c9a3596..da7f9ef 100644 --- a/examples/kubernetes/prometheus on k8s using helm.md +++ b/examples/kubernetes/prometheus on k8s using helm.md @@ -11,7 +11,11 @@ Installation: ```sh -helm upgrade --install --namespace monitoring --create-namespace prometheus prometheus-community/prometheus +helm repo add \ + 'prometheus-community' 'https://prometheus-community.github.io/helm-charts' +helm upgrade --install \ + --namespace 'monitoring' --create-namespace \ + 'prometheus' 'prometheus-community/prometheus' ``` The server can be accessed via port 80 on `prometheus-server.monitoring.svc.cluster.local` from within the cluster. @@ -42,14 +46,15 @@ export POD_NAME=$(kubectl get pods --namespace monitoring -l "app=prometheus,com ## Further readings -- [Install Prometheus and Grafana with helm 3 on a local machine VM] -- [Set up prometheus and ingress on kubernetes] +- [Helm chart] ## Sources All the references in the [further readings] section, plus the following: -- [Helm chart] +- [Install Prometheus and Grafana with helm 3 on a local machine VM] +- [Set up prometheus and ingress on kubernetes] +- [How to integrate Prometheus and Grafana on Kubernetes using Helm] +[how to integrate prometheus and grafana on kubernetes using helm]: https://semaphoreci.com/blog/prometheus-grafana-kubernetes-helm [install prometheus and grafana with helm 3 on a local machine vm]: https://dev.to/ko_kamlesh/install-prometheus-grafana-with-helm-3-on-local-machine-vm-1kgj [set up prometheus and ingress on kubernetes]: https://blog.gojekengineering.com/diy-how-to-set-up-prometheus-and-ingress-on-kubernetes-d395248e2ba