@@ -27,19 +27,19 @@ func LabelString(labels map[string]string) string {
27
27
return strings .Join (chunks , "-" )
28
28
}
29
29
30
- // https://github.com/ahmetb/kubernetes-network-policy-recipes/blob/master/01-deny-all-traffic-to-an-application.md
31
- /*
32
- kind: NetworkPolicy
33
- apiVersion: networking.k8s.io/v1
34
- metadata:
35
- name: web-deny-all
36
- spec:
37
- podSelector:
38
- matchLabels:
39
- app: web
40
- ingress: []
41
- */
30
+ // AllowNothingTo is from https://github.com/ahmetb/kubernetes-network-policy-recipes/blob/master/01-deny-all-traffic-to-an-application.md
42
31
func AllowNothingTo (namespace string , toLabels map [string ]string ) * networkingv1.NetworkPolicy {
32
+ /*
33
+ kind: NetworkPolicy
34
+ apiVersion: networking.k8s.io/v1
35
+ metadata:
36
+ name: web-deny-all
37
+ spec:
38
+ podSelector:
39
+ matchLabels:
40
+ app: web
41
+ ingress: []
42
+ */
43
43
return & networkingv1.NetworkPolicy {
44
44
ObjectMeta : metav1.ObjectMeta {
45
45
Name : fmt .Sprintf ("allow-nothing-to-%s" , LabelString (toLabels )),
@@ -52,7 +52,7 @@ func AllowNothingTo(namespace string, toLabels map[string]string) *networkingv1.
52
52
}
53
53
}
54
54
55
- // Same as above , but with empty slice instead of nil slice
55
+ // AllowNothingToEmptyIngress is the same as AllowNothingTo , but with empty slice instead of nil slice
56
56
func AllowNothingToEmptyIngress (namespace string , targetLabels map [string ]string ) * networkingv1.NetworkPolicy {
57
57
return & networkingv1.NetworkPolicy {
58
58
ObjectMeta : metav1.ObjectMeta {
86
86
matchLabels:
87
87
app: bookstore
88
88
*/
89
+
89
90
func AllowFromTo (namespace string , fromLabels map [string ]string , toLabels map [string ]string ) * networkingv1.NetworkPolicy {
90
91
return & networkingv1.NetworkPolicy {
91
92
ObjectMeta : metav1.ObjectMeta {
@@ -122,6 +123,7 @@ spec:
122
123
ingress:
123
124
- {}
124
125
*/
126
+
125
127
func AllowAllTo (namespace string , toLabels map [string ]string ) * networkingv1.NetworkPolicy {
126
128
return & networkingv1.NetworkPolicy {
127
129
ObjectMeta : metav1.ObjectMeta {
@@ -151,6 +153,7 @@ spec:
151
153
podSelector: {}
152
154
ingress: []
153
155
*/
156
+
154
157
func AllowNothingToAnything (namespace string ) * networkingv1.NetworkPolicy {
155
158
return & networkingv1.NetworkPolicy {
156
159
ObjectMeta : metav1.ObjectMeta {
@@ -179,6 +182,7 @@ spec:
179
182
- from:
180
183
- podSelector: {}
181
184
*/
185
+
182
186
func AllowAllWithinNamespace (namespace string ) * networkingv1.NetworkPolicy {
183
187
return & networkingv1.NetworkPolicy {
184
188
ObjectMeta : metav1.ObjectMeta {
@@ -218,6 +222,7 @@ spec:
218
222
- from:
219
223
- namespaceSelector: {}
220
224
*/
225
+
221
226
func AllowAllTo_Version2 (namespace string , targetLabels map [string ]string ) * networkingv1.NetworkPolicy {
222
227
return & networkingv1.NetworkPolicy {
223
228
ObjectMeta : metav1.ObjectMeta {
@@ -255,6 +260,7 @@ spec:
255
260
ingress:
256
261
- from:
257
262
*/
263
+
258
264
func AllowAllTo_Version3 (namespace string , targetLabels map [string ]string ) * networkingv1.NetworkPolicy {
259
265
return & networkingv1.NetworkPolicy {
260
266
ObjectMeta : metav1.ObjectMeta {
@@ -309,6 +315,7 @@ spec:
309
315
matchLabels:
310
316
purpose: production
311
317
*/
318
+
312
319
func AllowFromNamespaceTo (namespace string , namespaceLabels map [string ]string , toLabels map [string ]string ) * networkingv1.NetworkPolicy {
313
320
return & networkingv1.NetworkPolicy {
314
321
ObjectMeta : metav1.ObjectMeta {
@@ -353,6 +360,7 @@ spec:
353
360
matchLabels:
354
361
type: monitoring
355
362
*/
363
+
356
364
func AllowFromDifferentNamespaceWithLabelsTo (namespace string , fromLabels , namespaceLabels , toLabels map [string ]string ) * networkingv1.NetworkPolicy {
357
365
return & networkingv1.NetworkPolicy {
358
366
ObjectMeta : metav1.ObjectMeta {
@@ -391,6 +399,7 @@ spec:
391
399
ingress:
392
400
- from: []
393
401
*/
402
+
394
403
func AllowFromAnywhere (namespace string , targetLabels map [string ]string ) * networkingv1.NetworkPolicy {
395
404
return & networkingv1.NetworkPolicy {
396
405
ObjectMeta : metav1.ObjectMeta {
@@ -429,6 +438,7 @@ spec:
429
438
matchLabels:
430
439
role: monitoring
431
440
*/
441
+
432
442
func AllowSpecificPortTo (namespace string , fromLabels , targetLabels map [string ]string , targetPort int ) * networkingv1.NetworkPolicy {
433
443
portRef := intstr .FromInt (targetPort )
434
444
return & networkingv1.NetworkPolicy {
@@ -485,6 +495,7 @@ spec:
485
495
app: inventory
486
496
role: web
487
497
*/
498
+
488
499
func AllowFromMultipleTo (namespace string , fromLabels []map [string ]string , targetLabels map [string ]string ) * networkingv1.NetworkPolicy {
489
500
var froms []networkingv1.NetworkPolicyPeer
490
501
for _ , labels := range fromLabels {
@@ -523,6 +534,7 @@ spec:
523
534
- Egress
524
535
egress: []
525
536
*/
537
+
526
538
func AllowNoEgressFromLabels (namespace string , targetLabels map [string ]string ) * networkingv1.NetworkPolicy {
527
539
return & networkingv1.NetworkPolicy {
528
540
ObjectMeta : metav1.ObjectMeta {
@@ -558,6 +570,7 @@ spec:
558
570
- port: 53
559
571
protocol: TCP
560
572
*/
573
+
561
574
func AllowEgressOnPort (namespace string , targetLabels map [string ]string , port int ) * networkingv1.NetworkPolicy {
562
575
tcp := v1 .ProtocolTCP
563
576
udp := v1 .ProtocolUDP
@@ -597,6 +610,7 @@ spec:
597
610
podSelector: {}
598
611
egress: []
599
612
*/
613
+
600
614
func AllowNoEgressFromNamespace (namespace string ) * networkingv1.NetworkPolicy {
601
615
return & networkingv1.NetworkPolicy {
602
616
ObjectMeta : metav1.ObjectMeta {
@@ -632,6 +646,7 @@ spec:
632
646
to:
633
647
- namespaceSelector: {}
634
648
*/
649
+
635
650
func AllowEgressToAllNamespacesOnPort (namespace string , targetLabels map [string ]string , port int ) * networkingv1.NetworkPolicy {
636
651
tcp := v1 .ProtocolTCP
637
652
udp := v1 .ProtocolUDP
@@ -676,6 +691,7 @@ spec:
676
691
- Egress
677
692
- Ingress
678
693
*/
694
+
679
695
func AllowNoIngressNorEgress (namespace string , targetLabels map [string ]string ) * networkingv1.NetworkPolicy {
680
696
return & networkingv1.NetworkPolicy {
681
697
ObjectMeta : metav1.ObjectMeta {
0 commit comments