使用helm安装grafana

键盘侠 2020年11月03日 1,251次浏览
  1. 添加grafana仓库
helm repo add grafana https://grafana.github.io/helm-charts
helm repo update
  1. 安装grafana
helm install ds-grafana grafana/grafana -n mynamespace --set service.type=NodePort
  1. 获取管理员admin的密码
kubectl get secret --namespace pt ds-grafana -o jsonpath="{.data.admin-password}" | base64 --decode ; echo
  1. 导入现有看板或者创建新的看析以及数据源