Hitachi

Hitachi Microservices Platform - Paxos Commit Transaction Orchestrator ユーザーズガイド


3.6.8 メトリクス収集用ロールおよびロールバインディングのKubernetesマニフェストの作成

次に示す要件を満たすように、メトリクス収集用ロールおよびロールバインディングのKubernetesマニフェストを作成してください。

このロールおよびロールバインディングを使用することで、Prometheusコンテナがメトリクス収集に必要なKubernetesオブジェクトにアクセスできるようにします。

メトリクス収集用ロールおよびロールバインディングのKubernetesマニフェストの作成要領を次に示します。

<ロールの作成要領>

<ロールバインディングの作成要領>

メトリクス収集用ロールおよびロールバインディングのKubernetesマニフェストの記述例を示します。

apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
  name: prometheus-role
rules:
- apiGroups:
  - ""
  resources:
  - pods
  - nodes
  - nodes/proxy
  - services
  - endpoints
  verbs:
  - get
  - watch
  - list
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
  name: prometheus-role-binding
roleRef:
  apiGroup: rbac.authorization.k8s.io
  kind: ClusterRole
  name: prometheus-role
subjects:
- kind: ServiceAccount
  name: prometheus-service-account
  namespace: my-namespace