2021年7月18日日曜日

prometheusOperator for k8s(docker desktop)


1)namespaceを作成

kubectl create namespace monitoring


2)helmにて、prometheus-operatorのインストールを行う

helm install monitoring stable/prometheus-operator -n monitoring2


3)対象のnamespaceに導入されていることを確認

helm list -n monitoring


4)garafana, prometheusのpodに対して、nodeportの割り当てを行う。

kubectl patch svc -n namespace pod -p '{"spec": {"type": "NodePort"}}'

0 件のコメント:

コメントを投稿

helm( kube-prometheus-stack)とlokiの連携

helm経由で、 kube-prometheus-stackとloki stackを入れるだけだと連携ができないので 追加で以下の手順を進める必要がある。 1)Loki stackの導入を実施 helm install loki grafana/loki-stack --name...