mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-03-05 13:16:08 -05:00
33 lines
1.0 KiB
YAML
33 lines
1.0 KiB
YAML
![]() |
{{- if and .Values.envoy.enabled (not .Values.preflight.enabled) .Values.proxy.prometheus.enabled .Values.envoy.prometheus.enabled }}
|
||
|
apiVersion: v1
|
||
|
kind: Service
|
||
|
metadata:
|
||
|
name: cilium-envoy
|
||
|
namespace: {{ .Release.Namespace }}
|
||
|
{{- if or (not .Values.envoy.prometheus.serviceMonitor.enabled) .Values.envoy.annotations }}
|
||
|
annotations:
|
||
|
{{- if not .Values.envoy.prometheus.serviceMonitor.enabled }}
|
||
|
prometheus.io/scrape: "true"
|
||
|
prometheus.io/port: {{ .Values.proxy.prometheus.port | default .Values.envoy.prometheus.port | quote }}
|
||
|
{{- end }}
|
||
|
{{- with .Values.envoy.annotations }}
|
||
|
{{- toYaml . | nindent 4 }}
|
||
|
{{- end }}
|
||
|
{{- end }}
|
||
|
labels:
|
||
|
k8s-app: cilium-envoy
|
||
|
app.kubernetes.io/name: cilium-envoy
|
||
|
app.kubernetes.io/part-of: cilium
|
||
|
io.cilium/app: proxy
|
||
|
spec:
|
||
|
clusterIP: None
|
||
|
type: ClusterIP
|
||
|
selector:
|
||
|
k8s-app: cilium-envoy
|
||
|
ports:
|
||
|
- name: envoy-metrics
|
||
|
port: {{ .Values.proxy.prometheus.port | default .Values.envoy.prometheus.port }}
|
||
|
protocol: TCP
|
||
|
targetPort: envoy-metrics
|
||
|
{{- end }}
|