Merge pull request #109090 from sarveshr7/multicidr-rangeallocator

Enhance NodeIPAM to support multiple ClusterCIDRs

Kubernetes-commit: 759785ea147bc13945d521eaba4a6592cbc0675f
This commit is contained in:
Kubernetes Publisher
2022-08-07 15:40:18 -07:00
24 changed files with 1243 additions and 4 deletions

4
go.mod
View File

@@ -24,7 +24,7 @@ require (
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8
google.golang.org/protobuf v1.28.0
k8s.io/api v0.0.0-20220805002038-2f9e58849198
k8s.io/api v0.0.0-20220807235320-860821164923
k8s.io/apimachinery v0.0.0-20220805001719-117bd9b56ec3
k8s.io/klog/v2 v2.70.1
k8s.io/kube-openapi v0.0.0-20220803162953-67bda5d908f1
@@ -61,6 +61,6 @@ require (
)
replace (
k8s.io/api => k8s.io/api v0.0.0-20220805002038-2f9e58849198
k8s.io/api => k8s.io/api v0.0.0-20220807235320-860821164923
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20220805001719-117bd9b56ec3
)