c237d4ffae
I want to configure monitoring for Minecraft, and it's not possible with the Vanilla version. So we're testing Paper Reviewed-on: https://git.badhouseplants.net/badhouseplants/k8s-cluster-config/pulls/37
17 lines
370 B
YAML
17 lines
370 B
YAML
---
|
|
service-monitor:
|
|
templates:
|
|
- |
|
|
{{ range .Values.service-monitor.resources }}
|
|
apiVersion: monitoring.coreos.com/v1
|
|
kind: ServiceMonitor
|
|
metadata:
|
|
name: {{ .name }}
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: {{ .label.app }}
|
|
endpoints:
|
|
- port: {{ .endpoints.port }}
|
|
{{ end }}
|