You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: gen/workload-extensions/oke/simple/oke_network_resources.libsonnet
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -287,7 +287,7 @@ local public_lb = import './oke_public_load_balancer.libsonnet';
287
287
ingress_rules: {
288
288
nsg_cp_6443: nsg.tcp_ingress_src('Allow TCP ingress for Kubernetes control plane inter-communication on source port 6443', ctx.nsg_cp_key, '6443'),
289
289
} + ctx.api_endpoint_ingress_rules + {
290
-
nsg_service: service.tcp_ingress(ctx, 'Allow TCP ingress from OCI services to control plane for responses'),
290
+
nsg_service: service.tcp_ingress('Allow TCP ingress from OCI services to control plane for responses'),
291
291
nsg_workers_10250: nsg.tcp_ingress_src('Allow TCP ingress to control plane from worker nodes for Kubelet responses on source port 10250', ctx.nsg_workers_key, '10250'),
292
292
nsg_workers_12250: nsg.tcp_ingress('Allow TCP ingress to kube-apiserver from workers on port 12250', ctx.nsg_workers_key, '12250'),
293
293
nsg_workers_6443: nsg.tcp_ingress('Allow TCP ingress to kube-apiserver from workers on port 6443', ctx.nsg_workers_key, '6443'),
@@ -365,7 +365,7 @@ local public_lb = import './oke_public_load_balancer.libsonnet';
365
365
nsg_lb_tcp: nsg.tcp_ingress_any('Allow TCP ingress to pods from load balancers', ctx.nsg_lb_key),
366
366
nsg_lb_udp: nsg.udp_ingress_any('Allow UDP ingress to pods from load balancers', ctx.nsg_lb_key),
367
367
nsg_pods: nsg.all_ingress('Allow ALL ingress to pods from other pods', ctx.nsg_pods_key),
368
-
nsg_service: service.tcp_ingress(ctx, 'Allow TCP ingress from OCI services to pods'),
368
+
nsg_service: service.tcp_ingress('Allow TCP ingress from OCI services to pods'),
369
369
nsg_workers: nsg.all_ingress('Allow ALL ingress to pods from workers', ctx.nsg_workers_key),
370
370
} + hub_public_lb.pod_ingress(ctx),
371
371
},
@@ -408,7 +408,7 @@ local public_lb = import './oke_public_load_balancer.libsonnet';
408
408
nsg_lb_10256: nsg.tcp_ingress('Allow TCP ingress to workers for health check from load balancer on port 10256', ctx.nsg_lb_key, '10256'),
409
409
nsg_lb_tcp: nsg.tcp_ingress_range('Allow TCP ingress to workers from load balancers on service ports 30000-32767', ctx.nsg_lb_key, '30000', '32767'),
410
410
nsg_lb_udp: nsg.udp_ingress_range('Allow UDP ingress to workers from load balancers on service ports 30000-32767', ctx.nsg_lb_key, '30000', '32767'),
411
-
nsg_service: service.tcp_ingress(ctx, 'Allow TCP ingress from OCI services to workers'),
411
+
nsg_service: service.tcp_ingress('Allow TCP ingress from OCI services to workers'),
412
412
nsg_workers: nsg.all_ingress('Allow ALL ingress to workers from other workers', ctx.nsg_workers_key),
413
413
} + (if ctx.create_fss then {
414
414
nsg_fss_udp_111: nsg.udp_ingress_src('Allow UDP return traffic to workers from NFS portmapper on source port 111', ctx.nsg_fss_key, '111'),
0 commit comments