constellation/internal/helm/charts/cilium/templates/cilium-operator/service.yaml

28 lines
682 B
YAML
Raw Normal View History

2022-08-12 04:20:19 -04:00
{{- if and .Values.operator.enabled .Values.operator.prometheus.enabled .Values.operator.prometheus.serviceMonitor.enabled }}
kind: Service
apiVersion: v1
metadata:
name: cilium-operator
namespace: {{ .Release.Namespace }}
{{- with .Values.operator.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
2022-08-12 04:20:19 -04:00
labels:
io.cilium/app: operator
name: cilium-operator
app.kubernetes.io/part-of: cilium
app.kubernetes.io/name: cilium-operator
2022-08-12 04:20:19 -04:00
spec:
clusterIP: None
type: ClusterIP
ports:
- name: metrics
port: 9963
protocol: TCP
targetPort: prometheus
selector:
io.cilium/app: operator
name: cilium-operator
{{- end }}