25 lines
616 B
YAML
25 lines
616 B
YAML
{{- if .Values.networkPolicy.enabled -}}
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: NetworkPolicy
|
|
metadata:
|
|
name: {{ include "krawl.fullname" . }}
|
|
labels:
|
|
{{- include "krawl.labels" . | nindent 4 }}
|
|
spec:
|
|
podSelector:
|
|
matchLabels:
|
|
{{- include "krawl.selectorLabels" . | nindent 6 }}
|
|
{{- with .Values.networkPolicy.policyTypes }}
|
|
policyTypes:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- with .Values.networkPolicy.ingress }}
|
|
ingress:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- with .Values.networkPolicy.egress }}
|
|
egress:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- end }}
|