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 }}
|
2023-10-16 13:14:53 -04:00
|
|
|
{{- 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
|
2023-10-16 13:14:53 -04:00
|
|
|
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 }}
|