21 lines
649 B
YAML
21 lines
649 B
YAML
{{- if and .Values.pushgateway.enabled .Values.networkPolicy.enabled -}}
|
|
apiVersion: {{ template "prometheus.networkPolicy.apiVersion" . }}
|
|
kind: NetworkPolicy
|
|
metadata:
|
|
name: {{ template "prometheus.pushgateway.fullname" . }}
|
|
{{ include "prometheus.namespace" . | indent 2 }}
|
|
labels:
|
|
{{- include "prometheus.pushgateway.labels" . | nindent 4 }}
|
|
spec:
|
|
podSelector:
|
|
matchLabels:
|
|
{{- include "prometheus.pushgateway.matchLabels" . | nindent 6 }}
|
|
ingress:
|
|
- from:
|
|
- podSelector:
|
|
matchLabels:
|
|
{{- include "prometheus.server.matchLabels" . | nindent 12 }}
|
|
- ports:
|
|
- port: 9091
|
|
{{- end -}}
|