mirror of
https://github.com/bitnami/charts.git
synced 2026-03-11 07:17:45 +08:00
* Update configmap.yaml * Update extended-config-configmap.yaml * Update initialization-configmap.yaml * Update metrics-configmap.yaml * Update metrics-svc.yaml * Update networkpolicy.yaml * Update podsecuritypolicy.yaml * Update role.yaml * Update rolebinding.yaml * Update secrets.yaml * Update serviceaccount.yaml * Update statefulset-readreplicas.yaml * Update statefulset.yaml * Update svc-headless.yaml * Update svc-read.yaml * Update svc.yaml * Update chart version
40 lines
1.3 KiB
YAML
40 lines
1.3 KiB
YAML
{{- if .Values.networkPolicy.enabled }}
|
|
kind: NetworkPolicy
|
|
apiVersion: {{ template "postgresql.networkPolicy.apiVersion" . }}
|
|
metadata:
|
|
name: {{ template "common.names.fullname" . }}
|
|
labels:
|
|
{{- include "common.labels.standard" . | nindent 4 }}
|
|
{{- if .Values.commonAnnotations }}
|
|
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
namespace: {{ .Release.Namespace }}
|
|
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 "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 }}
|