https://www.fosslinux.com/8328/how-to-install-and-configure-grafana-on-centos-7.htm
Username: admin Password: 12345
https://grafana.com/tutorials/grafana-fundamentals/?utm_source=grafana_gettingstarted#5
https://hub.docker.com/r/grafana/grafana
docker run -d --name=grafana -p 3000:3000 grafana/grafana
docker run -d --name=grafana -p 3050:3000 grafana/grafana
Username: admin
Password: admin
- 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 [release name] stable/prometheus-operator -n [namespace]
helm install prometheus-operator-stack-helm stable/prometheus-operator -n v15
Prerequisites:
- Kubernetes 1.16+
- Helm 3+
helm install [release name] prometheus-community/kube-prometheus-stack
helm install kube-prometheus-stack prometheus-community/kube-prometheus-stack
- If having issue is from previous installations of other prometheus-relevant manifest files. As defined in the uninstallation guide, delete the following:
kubectl delete crd alertmanagerconfigs.monitoring.coreos.com
kubectl delete crd alertmanagers.monitoring.coreos.com
kubectl delete crd podmonitors.monitoring.coreos.com
kubectl delete crd probes.monitoring.coreos.com
kubectl delete crd prometheuses.monitoring.coreos.com
kubectl delete crd prometheusrules.monitoring.coreos.com
kubectl delete crd servicemonitors.monitoring.coreos.com
kubectl delete crd thanosrulers.monitoring.coreos.com