2024年12月10日火曜日

Prometheus/Grafana(Helmによる導入)

手動で、yamlからprometheusやgrafanaを入れるとハマる要素がありすぎるので
素直にhelmから入れることにする 
(container系のcpu使用率を確認するクエリがまともに動かなかったのが経緯)

helm repo add prometheus-community https://prometheus-community.github.io/helm-charts helm repo update helm install prometheus prometheus-community/kube-prometheus-stack


以下が含まれる。

  • Prometheus Operator
  • Prometheus Server、Alertmanager、および関連するCustom Resource群
  • Node Exporter

0 件のコメント:

コメントを投稿

Pod Security Admission

[用途] ルール対象外のマニフェストをデプロイさせないための 防止策で利用するイメージになる [検証] 以下のコマンドを投入する kubectl label ns default pod-security.kubernetes.io/warn=baseline [各種コマンドの意...