mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
503 B
19 lines
503 B
{{- if .Values.networkPolicy.enabled }}
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: NetworkPolicy
|
|
metadata:
|
|
name: allow-{{ include "squidex.fullname" . }}
|
|
labels:
|
|
{{- include "squidex.labels" . | indent 4 }}
|
|
spec:
|
|
podSelector:
|
|
matchLabels:
|
|
{{- include "squidex.selectors" . | indent 6 }}
|
|
policyTypes:
|
|
- Ingress
|
|
- Egress
|
|
ingress:
|
|
{{- toYaml .Values.networkPolicy.ingressRules | nindent 4 }}
|
|
egress:
|
|
{{- toYaml .Values.networkPolicy.egressRules | nindent 4 }}
|
|
{{- end }}
|
|
|