43 lines
1.5 KiB
YAML
43 lines
1.5 KiB
YAML
{{- if .Values.networkPolicy.enabled }}
|
|
kind: NetworkPolicy
|
|
apiVersion: {{ include "common.capabilities.networkPolicy.apiVersion" . }}
|
|
metadata:
|
|
name: {{ template "common.names.fullname" . }}
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
{{- include "common.labels.standard" . | nindent 4 }}
|
|
{{- if .Values.commonLabels }}
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
{{- if .Values.commonAnnotations }}
|
|
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
podSelector:
|
|
matchLabels:
|
|
{{- include "common.labels.matchLabels" . | nindent 6 }}
|
|
ingress:
|
|
# Allow inbound connections
|
|
- ports:
|
|
- port: {{ template "postgresql.servicePort" . }}
|
|
{{- if not .Values.networkPolicy.allowExternal }}
|
|
from:
|
|
- podSelector:
|
|
matchLabels:
|
|
{{ template "common.names.fullname" . }}-client: "true"
|
|
{{- if .Values.networkPolicy.explicitNamespacesSelector }}
|
|
namespaceSelector:
|
|
{{ toYaml .Values.networkPolicy.explicitNamespacesSelector | indent 12 }}
|
|
{{- end }}
|
|
- podSelector:
|
|
matchLabels:
|
|
{{- include "common.labels.matchLabels" . | nindent 14 }}
|
|
role: read
|
|
{{- end }}
|
|
{{- if .Values.metrics.enabled }}
|
|
# Allow prometheus scrapes
|
|
- ports:
|
|
- port: 9187
|
|
{{- end }}
|
|
{{- end }}
|