Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[zh] Update network-policies.md
Signed-off-by: xin.li <xin.li@daocloud.io>
  • Loading branch information
my-git9 committed Apr 18, 2022
1 parent 09b7739 commit 69984b9
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 36 deletions.
37 changes: 1 addition & 36 deletions content/zh/docs/concepts/services-networking/network-policies.md
Expand Up @@ -121,42 +121,7 @@ An example NetworkPolicy might look like this:

下面是一个 NetworkPolicy 的示例:

```yaml
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: test-network-policy
namespace: default
spec:
podSelector:
matchLabels:
role: db
policyTypes:
- Ingress
- Egress
ingress:
- from:
- ipBlock:
cidr: 172.17.0.0/16
except:
- 172.17.1.0/24
- namespaceSelector:
matchLabels:
project: myproject
- podSelector:
matchLabels:
role: frontend
ports:
- protocol: TCP
port: 6379
egress:
- to:
- ipBlock:
cidr: 10.0.0.0/24
ports:
- protocol: TCP
port: 5978
```
{{< codenew file="service/networking/networkpolicy.yaml" >}}

<!--
POSTing this to the API server for your cluster will have no effect unless your chosen networking solution supports network policy.
Expand Down
35 changes: 35 additions & 0 deletions content/zh/examples/service/networking/networkpolicy.yaml
@@ -0,0 +1,35 @@
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: test-network-policy
namespace: default
spec:
podSelector:
matchLabels:
role: db
policyTypes:
- Ingress
- Egress
ingress:
- from:
- ipBlock:
cidr: 172.17.0.0/16
except:
- 172.17.1.0/24
- namespaceSelector:
matchLabels:
project: myproject
- podSelector:
matchLabels:
role: frontend
ports:
- protocol: TCP
port: 6379
egress:
- to:
- ipBlock:
cidr: 10.0.0.0/24
ports:
- protocol: TCP
port: 5978

0 comments on commit 69984b9

Please sign in to comment.