24 lines
676 B
YAML
24 lines
676 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: NetworkPolicy
|
|
metadata:
|
|
name: longhorn-ui
|
|
namespace: longhorn-system
|
|
spec:
|
|
podSelector:
|
|
matchLabels:
|
|
app: longhorn-ui
|
|
policyTypes:
|
|
- Ingress
|
|
ingress:
|
|
- from:
|
|
# Depending on the ingress controller setup in your cluster, Change the following
|
|
# info to allow the traffic from the ingress controller pods to Longhorn UI
|
|
- namespaceSelector:
|
|
matchLabels:
|
|
kubernetes.io/metadata.name: ingress-nginx
|
|
podSelector:
|
|
matchLabels:
|
|
app.kubernetes.io/component: controller
|
|
app.kubernetes.io/instance: ingress-nginx
|
|
app.kubernetes.io/name: ingress-nginx
|