We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10314ff commit e8a7abdCopy full SHA for e8a7abd
config/base/common/kustomization.yaml
@@ -2,3 +2,4 @@ apiVersion: kustomize.config.k8s.io/v1beta1
2
kind: Kustomization
3
resources:
4
- namespace.yaml
5
+- network_policy.yaml
config/base/common/network_policy.yaml
@@ -0,0 +1,10 @@
1
+apiVersion: networking.k8s.io/v1
+kind: NetworkPolicy
+metadata:
+ name: default-deny-all-traffic
+ namespace: system
6
+spec:
7
+ podSelector: { }
8
+ policyTypes:
9
+ - Ingress
10
+ - Egress
0 commit comments