Skip to content

Commit

Permalink
fix(base-cluster/cert-manager): metrics collection (#1397)
Browse files Browse the repository at this point in the history
  • Loading branch information
cwrau authored Feb 28, 2025
1 parent a4c2144 commit 71e1189
Showing 1 changed file with 21 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,16 @@ spec:
matchLabels:
app.kubernetes.io/name: cert-manager
app.kubernetes.io/instance: cert-manager
ingress:
ingress: {{- if .Values.monitoring.prometheus.enabled }}
- fromEndpoints:
- matchLabels: {{- include "common.tplvalues.render" (dict "value" (include "common.dict.filterEmptyValues" .Values.global.networkPolicy.metricsLabels) "context" $) | nindent 12 }}
toPorts:
- ports:
- port: "9402"
protocol: TCP
{{- else }}
- {}
{{- end }}
egress:
- toEntities:
- world # allow access to letsencrypt and the DNS apis
Expand Down Expand Up @@ -60,6 +63,14 @@ spec:
- ports:
- port: "6080"
protocol: TCP
{{- if .Values.monitoring.prometheus.enabled }}
- fromEndpoints:
- matchLabels: {{- include "common.tplvalues.render" (dict "value" (include "common.dict.filterEmptyValues" .Values.global.networkPolicy.metricsLabels) "context" $) | nindent 12 }}
toPorts:
- ports:
- port: "9402"
protocol: TCP
{{- end }}
egress:
- toEntities:
- kube-apiserver
Expand All @@ -76,8 +87,16 @@ spec:
matchLabels:
app.kubernetes.io/name: cainjector
app.kubernetes.io/instance: cert-manager
ingress:
ingress: {{- if .Values.monitoring.prometheus.enabled }}
- fromEndpoints:
- matchLabels: {{- include "common.tplvalues.render" (dict "value" (include "common.dict.filterEmptyValues" .Values.global.networkPolicy.metricsLabels) "context" $) | nindent 12 }}
toPorts:
- ports:
- port: "9402"
protocol: TCP
{{- else }}
- {}
{{- end }}
egress:
- toEntities:
- kube-apiserver
Expand Down

0 comments on commit 71e1189

Please sign in to comment.