Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(base-cluster/cert-manager): metrics collection #1397

Merged
merged 1 commit into from
Feb 28, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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