Skip to content
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