mirror of
https://github.com/ZwareBear/JFrog-Cloud-Installers.git
synced 2026-01-21 05:06:56 -06:00
35 lines
1.0 KiB
YAML
Executable File
35 lines
1.0 KiB
YAML
Executable File
{{- if .Values.networkPolicy.enabled }}
|
|
kind: NetworkPolicy
|
|
apiVersion: {{ template "postgresql.networkPolicy.apiVersion" . }}
|
|
metadata:
|
|
name: {{ template "postgresql.fullname" . }}
|
|
labels:
|
|
app: {{ template "postgresql.name" . }}
|
|
chart: {{ template "postgresql.chart" . }}
|
|
release: {{ .Release.Name | quote }}
|
|
heritage: {{ .Release.Service | quote }}
|
|
spec:
|
|
podSelector:
|
|
matchLabels:
|
|
app: {{ template "postgresql.name" . }}
|
|
release: {{ .Release.Name | quote }}
|
|
ingress:
|
|
# Allow inbound connections
|
|
- ports:
|
|
- port: {{ template "postgresql.port" . }}
|
|
{{- if not .Values.networkPolicy.allowExternal }}
|
|
from:
|
|
- podSelector:
|
|
matchLabels:
|
|
{{ template "postgresql.fullname" . }}-client: "true"
|
|
- podSelector:
|
|
matchLabels:
|
|
app: {{ template "postgresql.name" . }}
|
|
release: {{ .Release.Name | quote }}
|
|
role: slave
|
|
{{- end }}
|
|
# Allow prometheus scrapes
|
|
- ports:
|
|
- port: 9187
|
|
{{- end }}
|