hydra-maester/config/default/manager_prometheus_metrics_patch.yaml

20 lines
459 B
YAML
Raw Normal View History

2019-08-21 10:12:07 +02:00
# This patch enables Prometheus scraping for the manager pod.
apiVersion: apps/v1
kind: Deployment
metadata:
name: controller-manager
namespace: system
spec:
template:
metadata:
annotations:
2022-09-22 07:52:52 -05:00
prometheus.io/scrape: "true"
2019-08-21 10:12:07 +02:00
spec:
containers:
2022-09-22 07:52:52 -05:00
# Expose the prometheus metrics on default port
- name: manager
ports:
- containerPort: 8080
name: metrics
protocol: TCP