0

请帮助我了解一件事PrometheusPrometheus operator集成到 Kubernetes。

从文档中我看到一种新的而非标准的 Kubernetes 对象用于配置Prometheus operator. 我的意思是标准种类,,,Pod等等ServiceReplicaSetDeployment的喜欢PrometheusRulePrometheus被创造出来的?这里有一个整合点?

让我想到这个问题的文档在这里https://github.com/coreos/prometheus-operator/blob/master/Documentation/user-guides/alerting.md

此类 Kubernetes 对象 YAML 的示例

apiVersion: monitoring.coreos.com/v1
kind: Prometheus
metadata:
  name: example
spec:
  replicas: 2
  alerting:
    alertmanagers:
    - namespace: default
      name: alertmanager-example
      port: web
  serviceMonitorSelector:
    matchLabels:
      team: frontend
  ruleSelector:
    matchLabels:
      role: alert-rules
      prometheus: example
4

1 回答 1

1

这是一个 Kubernetes自定义资源

于 2019-10-01T21:09:18.333 回答