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
630 B
19 lines
630 B
{{- if and .Values.networkPolicy.enabled .Values.networkPolicy.ingressRules.customRules }}
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: NetworkPolicy
|
|
metadata:
|
|
name: {{ printf "%s-ingress" (include "kafka-ui.fullname" .) }}
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
{{- include "kafka-ui.labels" . | nindent 4 }}
|
|
spec:
|
|
podSelector:
|
|
matchLabels:
|
|
{{- include "kafka-ui.selectorLabels" . | nindent 6 }}
|
|
policyTypes:
|
|
- Ingress
|
|
ingress:
|
|
{{- if .Values.networkPolicy.ingressRules.customRules }}
|
|
{{- tpl (toYaml .Values.networkPolicy.ingressRules.customRules) $ | nindent 4 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
|