Files
charts/bitnami/postgresql/templates/networkpolicy.yaml
Miguel Ángel Cabrera Miñagorri 7eabc85fd4 [bitnami/postgresql] Adapt to Helm v3 and change nomenclature (#4385)
* Breaking change removal of Master/Slave

* Some additional clean up post merge of terms

* [bitnami/postgresql] Major version. Adapt Chart to apiVersion: v2

* Update Chart.yaml

* Delete empty section from README

Co-authored-by: W. Kavanaugh Latiolais <kavlatiolais@gmail.com>
Co-authored-by: Carlos Rodríguez Hernández <carlosrh@vmware.com>
2020-11-17 16:19:22 +01:00

39 lines
1.3 KiB
YAML

{{- if .Values.networkPolicy.enabled }}
kind: NetworkPolicy
apiVersion: {{ template "postgresql.networkPolicy.apiVersion" . }}
metadata:
name: {{ template "postgresql.fullname" . }}
labels:
{{- include "common.labels.standard" . | nindent 4 }}
{{- 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.port" . }}
{{- if not .Values.networkPolicy.allowExternal }}
from:
- podSelector:
matchLabels:
{{ template "postgresql.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 }}