@@ -21,29 +21,31 @@ The following topics fall under ownership of this SIG:
21
21
- Cluster connectivity.
22
22
- Cross-cutting concerns such as scalability.
23
23
- Metrics and monitoring associated with networking components.
24
+ - Multi-cluster networking (shared responsibility with [ sig-multicluster] ).
24
25
25
26
#### Code, Binaries and Services
26
27
27
28
- Services
28
- - APIs for defining and grouping networking endpoints.
29
- - APIs for defining L3/4 loadbalancing.
30
- - Reference implementation ( kube-proxy).
29
+ - APIs for defining and grouping network endpoints (i.e. [ EndpointSlices ] , or the older [ Endpoints ] API)
30
+ - APIs for defining L3/4 loadbalancing (i.e. [ Service ] , [ Gateway API ] )
31
+ - Reference implementations (i.e. [ kube-proxy] ).
31
32
- Ingress
32
- - APIs for defining L7 loadbalancing.
33
- - APIs for defining network policy.
33
+ - APIs for defining ingress loadbalancing (i.e. [ Ingress] , [ Gateway API] )
34
+ - Reference implementations (i.e. [ ingress-nginx] )
35
+ - Network Policy
36
+ - APIs for defining network policies (i.e. [ NetworkPolicy] , [ AdminNetworkPolicy] , [ BaselineAdminNetworkPolicy] )
37
+ - Reference implementations (i.e. [ kube-network-policies] )
34
38
- Cluster DNS.
35
- - Integration points with networking implementations (e.g. CNI integration ).
36
- - Container runtime interface (CRI) (With [ sig-node] ).
39
+ - Integration points with networking implementations (i.e. [ Container Network Interface (CNI) ] [ CNI ] ).
40
+ - [ Container Runtime Interface (CRI)] [ CRI ] (With [ sig-node] ).
37
41
- Cloud provider network integrations (With [ sig-cloud-provider] ).
38
42
39
43
#### Cross-cutting and Externally Facing Processes
40
44
41
45
### Out of scope
42
46
43
- - The CNI specification itself, which is maintained outside the Kubernetes project
44
- - Particular implementations of the CNI specification
45
- - Particular implementations of the NetworkPolicy API
46
- - Particular implementations of the Ingress API
47
+ - The [ CNI] specification itself, which is maintained outside the Kubernetes project
48
+ - Particular implementations of the [ CNI] specification
47
49
48
50
## Roles and Organization Management
49
51
@@ -66,9 +68,27 @@ and opts-in to updates and modifications to [sig-governance].
66
68
67
69
SIG Technical Leads
68
70
71
+ [ Kubernetes Charter README ] : https://github.com/kubernetes/community/blob/master/committee-steering/governance/README.md
72
+
69
73
[ sig-cloud-provider ] : https://github.com/kubernetes/community/tree/master/sig-cloud-provider
70
74
[ sig-node ] : https://github.com/kubernetes/community/tree/master/sig-node
71
-
72
75
[ sig-governance ] : https://github.com/kubernetes/community/blob/master/committee-steering/governance/sig-governance.md
73
76
[ sig-subprojects ] : https://github.com/kubernetes/community/blob/master/sig-network/README.md#subprojects
74
- [ Kubernetes Charter README ] : https://github.com/kubernetes/community/blob/master/committee-steering/governance/README.md
77
+ [ sig-multicluster ] : https://github.com/kubernetes/community/blob/master/sig-multicluster/README.md
78
+
79
+ [ EndpointSlices ] : https://kubernetes.io/docs/concepts/services-networking/endpoint-slices/
80
+ [ Endpoints ] : https://kubernetes.io/docs/concepts/services-networking/service/#endpoints
81
+ [ Service ] : https://kubernetes.io/docs/concepts/services-networking/service/
82
+ [ kube-proxy ] : https://kubernetes.io/docs/concepts/overview/components/#kube-proxy
83
+
84
+ [ Ingress ] : https://kubernetes.io/docs/concepts/services-networking/ingress/
85
+ [ Gateway API ] : https://gateway-api.sigs.k8s.io/
86
+ [ ingress-nginx ] : https://github.com/kubernetes/ingress-nginx/
87
+
88
+ [ NetworkPolicy ] : https://kubernetes.io/docs/concepts/services-networking/network-policies/
89
+ [ AdminNetworkPolicy ] : https://network-policy-api.sigs.k8s.io/api-overview/#the-adminnetworkpolicy-resource
90
+ [ BaselineAdminNetworkPolicy ] : https://network-policy-api.sigs.k8s.io/api-overview/#the-baselineadminnetworkpolicy-resource
91
+ [ kube-network-policies ] : https://github.com/kubernetes-sigs/kube-network-policies
92
+
93
+ [ CNI ] : https://kubernetes.io/docs/concepts/cluster-administration/networking/#how-to-implement-the-kubernetes-network-model
94
+ [ CRI ] : https://kubernetes.io/docs/concepts/architecture/cri/
0 commit comments