mirror of https://github.com/k3s-io/k3s
20 lines
343 B
YAML
20 lines
343 B
YAML
|
apiVersion: networking.k8s.io/v1
|
||
|
kind: NetworkPolicy
|
||
|
metadata:
|
||
|
name: test-network-policy
|
||
|
namespace: default
|
||
|
spec:
|
||
|
podSelector:
|
||
|
matchLabels:
|
||
|
k8s-app: nginx-app-clusterip
|
||
|
policyTypes:
|
||
|
- Ingress
|
||
|
ingress:
|
||
|
- from:
|
||
|
- podSelector:
|
||
|
matchLabels:
|
||
|
app: whatever
|
||
|
ports:
|
||
|
- protocol: TCP
|
||
|
port: 80
|