18 lines
331 B
YAML
18 lines
331 B
YAML
|
{{- if .Values.networkPolicies.enabled }}
|
||
|
apiVersion: networking.k8s.io/v1
|
||
|
kind: NetworkPolicy
|
||
|
metadata:
|
||
|
name: longhorn-recovery-backend
|
||
|
namespace: longhorn-system
|
||
|
spec:
|
||
|
podSelector:
|
||
|
matchLabels:
|
||
|
app: longhorn-manager
|
||
|
policyTypes:
|
||
|
- Ingress
|
||
|
ingress:
|
||
|
- ports:
|
||
|
- protocol: TCP
|
||
|
port: 9503
|
||
|
{{- end }}
|