ingress
观察: under的字段值spec
。
案例 1:拒绝应用程序的所有流量。这里 ingress 将一个空数组作为它的值。
kind: NetworkPolicy
apiVersion: networking.k8s.io/v1
metadata:
name: web-deny-all
spec:
podSelector:
matchLabels:
app: web
ingress: [] # <-- This DENIES ALL traffic
案例 2:允许应用程序的所有流量。这里 ingress 将一个空地图的列表项作为它的值。
kind: NetworkPolicy
apiVersion: networking.k8s.io/v1
metadata:
name: web-allow-all
namespace: default
spec:
podSelector:
matchLabels:
app: web
ingress:
- {} # <-- This ALLOWS ALL traffic
我只是想知道,如果我要大声读出ingress
上面的赋值值,我该如何阅读它?