Files
devops-infra-helm-charts-gcp/helm-templates/mimir-distributed/charts/rollout-operator/templates/service.yaml
T
2026-08-26 03:39:42 +05:30

19 lines
436 B
YAML

{{- if .Values.serviceMonitor.enabled }}
apiVersion: v1
kind: Service
metadata:
name: {{ include "rollout-operator.fullname" . }}
labels:
{{- include "rollout-operator.labels" . | nindent 4 }}
spec:
type: ClusterIP
clusterIP: None
ports:
- port: 8001
targetPort: http-metrics
protocol: TCP
name: http-metrics
selector:
{{- include "rollout-operator.selectorLabels" . | nindent 4 }}
{{- end -}}