
Prepatory work fpr removing cloud provider dependency from node controller running in Kube Controller Manager. Splitting the node controller into its two major pieces life-cycle and CIDR/IP management. Both pieces currently need the the cloud system to do their work. Removing lifecycles dependency on cloud will be fixed ina followup PR. Moved node scheduler code to live with node lifecycle controller. Got the IPAM/Lifecycle split completed. Still need to rename pieces. Made changes to the utils and tests so they would be in the appropriate package. Moved the node based ipam code to nodeipam. Made the relevant tests pass. Moved common node controller util code to nodeutil. Removed unneeded pod informer sync from node ipam controller. Fixed linter issues. Factored in feedback from @gmarek. Factored in feedback from @mtaufen. Undoing unneeded change.
433 lines
14 KiB
Go
433 lines
14 KiB
Go
/*
|
|
Copyright 2016 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package ipam
|
|
|
|
import (
|
|
"net"
|
|
"testing"
|
|
"time"
|
|
|
|
"k8s.io/api/core/v1"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/util/wait"
|
|
"k8s.io/client-go/informers"
|
|
coreinformers "k8s.io/client-go/informers/core/v1"
|
|
"k8s.io/client-go/kubernetes/fake"
|
|
"k8s.io/kubernetes/pkg/controller"
|
|
"k8s.io/kubernetes/pkg/controller/testutil"
|
|
)
|
|
|
|
const (
|
|
nodePollInterval = 100 * time.Millisecond
|
|
)
|
|
|
|
var alwaysReady = func() bool { return true }
|
|
|
|
func waitForUpdatedNodeWithTimeout(nodeHandler *testutil.FakeNodeHandler, number int, timeout time.Duration) error {
|
|
return wait.Poll(nodePollInterval, timeout, func() (bool, error) {
|
|
if len(nodeHandler.GetUpdatedNodesCopy()) >= number {
|
|
return true, nil
|
|
}
|
|
return false, nil
|
|
})
|
|
}
|
|
|
|
// Creates a fakeNodeInformer using the provided fakeNodeHandler.
|
|
func getFakeNodeInformer(fakeNodeHandler *testutil.FakeNodeHandler) coreinformers.NodeInformer {
|
|
fakeClient := &fake.Clientset{}
|
|
fakeInformerFactory := informers.NewSharedInformerFactory(fakeClient, controller.NoResyncPeriodFunc())
|
|
fakeNodeInformer := fakeInformerFactory.Core().V1().Nodes()
|
|
|
|
for _, node := range fakeNodeHandler.Existing {
|
|
fakeNodeInformer.Informer().GetStore().Add(node)
|
|
}
|
|
|
|
return fakeNodeInformer
|
|
}
|
|
|
|
func TestAllocateOrOccupyCIDRSuccess(t *testing.T) {
|
|
testCases := []struct {
|
|
description string
|
|
fakeNodeHandler *testutil.FakeNodeHandler
|
|
clusterCIDR *net.IPNet
|
|
serviceCIDR *net.IPNet
|
|
subNetMaskSize int
|
|
expectedAllocatedCIDR string
|
|
allocatedCIDRs []string
|
|
}{
|
|
{
|
|
description: "When there's no ServiceCIDR return first CIDR in range",
|
|
fakeNodeHandler: &testutil.FakeNodeHandler{
|
|
Existing: []*v1.Node{
|
|
{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "node0",
|
|
},
|
|
},
|
|
},
|
|
Clientset: fake.NewSimpleClientset(),
|
|
},
|
|
clusterCIDR: func() *net.IPNet {
|
|
_, clusterCIDR, _ := net.ParseCIDR("127.123.234.0/24")
|
|
return clusterCIDR
|
|
}(),
|
|
serviceCIDR: nil,
|
|
subNetMaskSize: 30,
|
|
expectedAllocatedCIDR: "127.123.234.0/30",
|
|
},
|
|
{
|
|
description: "Correctly filter out ServiceCIDR",
|
|
fakeNodeHandler: &testutil.FakeNodeHandler{
|
|
Existing: []*v1.Node{
|
|
{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "node0",
|
|
},
|
|
},
|
|
},
|
|
Clientset: fake.NewSimpleClientset(),
|
|
},
|
|
clusterCIDR: func() *net.IPNet {
|
|
_, clusterCIDR, _ := net.ParseCIDR("127.123.234.0/24")
|
|
return clusterCIDR
|
|
}(),
|
|
serviceCIDR: func() *net.IPNet {
|
|
_, clusterCIDR, _ := net.ParseCIDR("127.123.234.0/26")
|
|
return clusterCIDR
|
|
}(),
|
|
subNetMaskSize: 30,
|
|
// it should return first /30 CIDR after service range
|
|
expectedAllocatedCIDR: "127.123.234.64/30",
|
|
},
|
|
{
|
|
description: "Correctly ignore already allocated CIDRs",
|
|
fakeNodeHandler: &testutil.FakeNodeHandler{
|
|
Existing: []*v1.Node{
|
|
{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "node0",
|
|
},
|
|
},
|
|
},
|
|
Clientset: fake.NewSimpleClientset(),
|
|
},
|
|
clusterCIDR: func() *net.IPNet {
|
|
_, clusterCIDR, _ := net.ParseCIDR("127.123.234.0/24")
|
|
return clusterCIDR
|
|
}(),
|
|
serviceCIDR: func() *net.IPNet {
|
|
_, clusterCIDR, _ := net.ParseCIDR("127.123.234.0/26")
|
|
return clusterCIDR
|
|
}(),
|
|
subNetMaskSize: 30,
|
|
allocatedCIDRs: []string{"127.123.234.64/30", "127.123.234.68/30", "127.123.234.72/30", "127.123.234.80/30"},
|
|
expectedAllocatedCIDR: "127.123.234.76/30",
|
|
},
|
|
}
|
|
|
|
testFunc := func(tc struct {
|
|
description string
|
|
fakeNodeHandler *testutil.FakeNodeHandler
|
|
clusterCIDR *net.IPNet
|
|
serviceCIDR *net.IPNet
|
|
subNetMaskSize int
|
|
expectedAllocatedCIDR string
|
|
allocatedCIDRs []string
|
|
}) {
|
|
// Initialize the range allocator.
|
|
allocator, _ := NewCIDRRangeAllocator(tc.fakeNodeHandler, getFakeNodeInformer(tc.fakeNodeHandler), tc.clusterCIDR, tc.serviceCIDR, tc.subNetMaskSize, nil)
|
|
rangeAllocator, ok := allocator.(*rangeAllocator)
|
|
if !ok {
|
|
t.Logf("%v: found non-default implementation of CIDRAllocator, skipping white-box test...", tc.description)
|
|
return
|
|
}
|
|
rangeAllocator.nodesSynced = alwaysReady
|
|
rangeAllocator.recorder = testutil.NewFakeRecorder()
|
|
go allocator.Run(wait.NeverStop)
|
|
|
|
// this is a bit of white box testing
|
|
for _, allocated := range tc.allocatedCIDRs {
|
|
_, cidr, err := net.ParseCIDR(allocated)
|
|
if err != nil {
|
|
t.Fatalf("%v: unexpected error when parsing CIDR %v: %v", tc.description, allocated, err)
|
|
}
|
|
if err = rangeAllocator.cidrs.Occupy(cidr); err != nil {
|
|
t.Fatalf("%v: unexpected error when occupying CIDR %v: %v", tc.description, allocated, err)
|
|
}
|
|
}
|
|
if err := allocator.AllocateOrOccupyCIDR(tc.fakeNodeHandler.Existing[0]); err != nil {
|
|
t.Errorf("%v: unexpected error in AllocateOrOccupyCIDR: %v", tc.description, err)
|
|
}
|
|
if err := waitForUpdatedNodeWithTimeout(tc.fakeNodeHandler, 1, wait.ForeverTestTimeout); err != nil {
|
|
t.Fatalf("%v: timeout while waiting for Node update: %v", tc.description, err)
|
|
}
|
|
found := false
|
|
seenCIDRs := []string{}
|
|
for _, updatedNode := range tc.fakeNodeHandler.GetUpdatedNodesCopy() {
|
|
seenCIDRs = append(seenCIDRs, updatedNode.Spec.PodCIDR)
|
|
if updatedNode.Spec.PodCIDR == tc.expectedAllocatedCIDR {
|
|
found = true
|
|
break
|
|
}
|
|
}
|
|
if !found {
|
|
t.Errorf("%v: Unable to find allocated CIDR %v, found updated Nodes with CIDRs: %v",
|
|
tc.description, tc.expectedAllocatedCIDR, seenCIDRs)
|
|
}
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
testFunc(tc)
|
|
}
|
|
}
|
|
|
|
func TestAllocateOrOccupyCIDRFailure(t *testing.T) {
|
|
testCases := []struct {
|
|
description string
|
|
fakeNodeHandler *testutil.FakeNodeHandler
|
|
clusterCIDR *net.IPNet
|
|
serviceCIDR *net.IPNet
|
|
subNetMaskSize int
|
|
allocatedCIDRs []string
|
|
}{
|
|
{
|
|
description: "When there's no ServiceCIDR return first CIDR in range",
|
|
fakeNodeHandler: &testutil.FakeNodeHandler{
|
|
Existing: []*v1.Node{
|
|
{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "node0",
|
|
},
|
|
},
|
|
},
|
|
Clientset: fake.NewSimpleClientset(),
|
|
},
|
|
clusterCIDR: func() *net.IPNet {
|
|
_, clusterCIDR, _ := net.ParseCIDR("127.123.234.0/28")
|
|
return clusterCIDR
|
|
}(),
|
|
serviceCIDR: nil,
|
|
subNetMaskSize: 30,
|
|
allocatedCIDRs: []string{"127.123.234.0/30", "127.123.234.4/30", "127.123.234.8/30", "127.123.234.12/30"},
|
|
},
|
|
}
|
|
|
|
testFunc := func(tc struct {
|
|
description string
|
|
fakeNodeHandler *testutil.FakeNodeHandler
|
|
clusterCIDR *net.IPNet
|
|
serviceCIDR *net.IPNet
|
|
subNetMaskSize int
|
|
allocatedCIDRs []string
|
|
}) {
|
|
// Initialize the range allocator.
|
|
allocator, _ := NewCIDRRangeAllocator(tc.fakeNodeHandler, getFakeNodeInformer(tc.fakeNodeHandler), tc.clusterCIDR, tc.serviceCIDR, tc.subNetMaskSize, nil)
|
|
rangeAllocator, ok := allocator.(*rangeAllocator)
|
|
if !ok {
|
|
t.Logf("%v: found non-default implementation of CIDRAllocator, skipping white-box test...", tc.description)
|
|
return
|
|
}
|
|
rangeAllocator.nodesSynced = alwaysReady
|
|
rangeAllocator.recorder = testutil.NewFakeRecorder()
|
|
go allocator.Run(wait.NeverStop)
|
|
|
|
// this is a bit of white box testing
|
|
for _, allocated := range tc.allocatedCIDRs {
|
|
_, cidr, err := net.ParseCIDR(allocated)
|
|
if err != nil {
|
|
t.Fatalf("%v: unexpected error when parsing CIDR %v: %v", tc.description, allocated, err)
|
|
}
|
|
err = rangeAllocator.cidrs.Occupy(cidr)
|
|
if err != nil {
|
|
t.Fatalf("%v: unexpected error when occupying CIDR %v: %v", tc.description, allocated, err)
|
|
}
|
|
}
|
|
if err := allocator.AllocateOrOccupyCIDR(tc.fakeNodeHandler.Existing[0]); err == nil {
|
|
t.Errorf("%v: unexpected success in AllocateOrOccupyCIDR: %v", tc.description, err)
|
|
}
|
|
// We don't expect any updates, so just sleep for some time
|
|
time.Sleep(time.Second)
|
|
if len(tc.fakeNodeHandler.GetUpdatedNodesCopy()) != 0 {
|
|
t.Fatalf("%v: unexpected update of nodes: %v", tc.description, tc.fakeNodeHandler.GetUpdatedNodesCopy())
|
|
}
|
|
seenCIDRs := []string{}
|
|
for _, updatedNode := range tc.fakeNodeHandler.GetUpdatedNodesCopy() {
|
|
if updatedNode.Spec.PodCIDR != "" {
|
|
seenCIDRs = append(seenCIDRs, updatedNode.Spec.PodCIDR)
|
|
}
|
|
}
|
|
if len(seenCIDRs) != 0 {
|
|
t.Errorf("%v: Seen assigned CIDRs when not expected: %v",
|
|
tc.description, seenCIDRs)
|
|
}
|
|
}
|
|
for _, tc := range testCases {
|
|
testFunc(tc)
|
|
}
|
|
}
|
|
|
|
func TestReleaseCIDRSuccess(t *testing.T) {
|
|
testCases := []struct {
|
|
description string
|
|
fakeNodeHandler *testutil.FakeNodeHandler
|
|
clusterCIDR *net.IPNet
|
|
serviceCIDR *net.IPNet
|
|
subNetMaskSize int
|
|
expectedAllocatedCIDRFirstRound string
|
|
expectedAllocatedCIDRSecondRound string
|
|
allocatedCIDRs []string
|
|
cidrsToRelease []string
|
|
}{
|
|
{
|
|
description: "Correctly release preallocated CIDR",
|
|
fakeNodeHandler: &testutil.FakeNodeHandler{
|
|
Existing: []*v1.Node{
|
|
{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "node0",
|
|
},
|
|
},
|
|
},
|
|
Clientset: fake.NewSimpleClientset(),
|
|
},
|
|
clusterCIDR: func() *net.IPNet {
|
|
_, clusterCIDR, _ := net.ParseCIDR("127.123.234.0/28")
|
|
return clusterCIDR
|
|
}(),
|
|
serviceCIDR: nil,
|
|
subNetMaskSize: 30,
|
|
allocatedCIDRs: []string{"127.123.234.0/30", "127.123.234.4/30", "127.123.234.8/30", "127.123.234.12/30"},
|
|
expectedAllocatedCIDRFirstRound: "",
|
|
cidrsToRelease: []string{"127.123.234.4/30"},
|
|
expectedAllocatedCIDRSecondRound: "127.123.234.4/30",
|
|
},
|
|
{
|
|
description: "Correctly recycle CIDR",
|
|
fakeNodeHandler: &testutil.FakeNodeHandler{
|
|
Existing: []*v1.Node{
|
|
{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "node0",
|
|
},
|
|
},
|
|
},
|
|
Clientset: fake.NewSimpleClientset(),
|
|
},
|
|
clusterCIDR: func() *net.IPNet {
|
|
_, clusterCIDR, _ := net.ParseCIDR("127.123.234.0/28")
|
|
return clusterCIDR
|
|
}(),
|
|
serviceCIDR: nil,
|
|
subNetMaskSize: 30,
|
|
allocatedCIDRs: []string{"127.123.234.4/30", "127.123.234.8/30", "127.123.234.12/30"},
|
|
expectedAllocatedCIDRFirstRound: "127.123.234.0/30",
|
|
cidrsToRelease: []string{"127.123.234.0/30"},
|
|
expectedAllocatedCIDRSecondRound: "127.123.234.0/30",
|
|
},
|
|
}
|
|
|
|
testFunc := func(tc struct {
|
|
description string
|
|
fakeNodeHandler *testutil.FakeNodeHandler
|
|
clusterCIDR *net.IPNet
|
|
serviceCIDR *net.IPNet
|
|
subNetMaskSize int
|
|
expectedAllocatedCIDRFirstRound string
|
|
expectedAllocatedCIDRSecondRound string
|
|
allocatedCIDRs []string
|
|
cidrsToRelease []string
|
|
}) {
|
|
// Initialize the range allocator.
|
|
allocator, _ := NewCIDRRangeAllocator(tc.fakeNodeHandler, getFakeNodeInformer(tc.fakeNodeHandler), tc.clusterCIDR, tc.serviceCIDR, tc.subNetMaskSize, nil)
|
|
rangeAllocator, ok := allocator.(*rangeAllocator)
|
|
if !ok {
|
|
t.Logf("%v: found non-default implementation of CIDRAllocator, skipping white-box test...", tc.description)
|
|
return
|
|
}
|
|
rangeAllocator.nodesSynced = alwaysReady
|
|
rangeAllocator.recorder = testutil.NewFakeRecorder()
|
|
go allocator.Run(wait.NeverStop)
|
|
|
|
// this is a bit of white box testing
|
|
for _, allocated := range tc.allocatedCIDRs {
|
|
_, cidr, err := net.ParseCIDR(allocated)
|
|
if err != nil {
|
|
t.Fatalf("%v: unexpected error when parsing CIDR %v: %v", tc.description, allocated, err)
|
|
}
|
|
err = rangeAllocator.cidrs.Occupy(cidr)
|
|
if err != nil {
|
|
t.Fatalf("%v: unexpected error when occupying CIDR %v: %v", tc.description, allocated, err)
|
|
}
|
|
}
|
|
err := allocator.AllocateOrOccupyCIDR(tc.fakeNodeHandler.Existing[0])
|
|
if tc.expectedAllocatedCIDRFirstRound != "" {
|
|
if err != nil {
|
|
t.Fatalf("%v: unexpected error in AllocateOrOccupyCIDR: %v", tc.description, err)
|
|
}
|
|
if err := waitForUpdatedNodeWithTimeout(tc.fakeNodeHandler, 1, wait.ForeverTestTimeout); err != nil {
|
|
t.Fatalf("%v: timeout while waiting for Node update: %v", tc.description, err)
|
|
}
|
|
} else {
|
|
if err == nil {
|
|
t.Fatalf("%v: unexpected success in AllocateOrOccupyCIDR: %v", tc.description, err)
|
|
}
|
|
// We don't expect any updates here
|
|
time.Sleep(time.Second)
|
|
if len(tc.fakeNodeHandler.GetUpdatedNodesCopy()) != 0 {
|
|
t.Fatalf("%v: unexpected update of nodes: %v", tc.description, tc.fakeNodeHandler.GetUpdatedNodesCopy())
|
|
}
|
|
}
|
|
|
|
for _, cidrToRelease := range tc.cidrsToRelease {
|
|
nodeToRelease := v1.Node{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "node0",
|
|
},
|
|
}
|
|
nodeToRelease.Spec.PodCIDR = cidrToRelease
|
|
err = allocator.ReleaseCIDR(&nodeToRelease)
|
|
if err != nil {
|
|
t.Fatalf("%v: unexpected error in ReleaseCIDR: %v", tc.description, err)
|
|
}
|
|
}
|
|
|
|
if err = allocator.AllocateOrOccupyCIDR(tc.fakeNodeHandler.Existing[0]); err != nil {
|
|
t.Fatalf("%v: unexpected error in AllocateOrOccupyCIDR: %v", tc.description, err)
|
|
}
|
|
if err := waitForUpdatedNodeWithTimeout(tc.fakeNodeHandler, 1, wait.ForeverTestTimeout); err != nil {
|
|
t.Fatalf("%v: timeout while waiting for Node update: %v", tc.description, err)
|
|
}
|
|
|
|
found := false
|
|
seenCIDRs := []string{}
|
|
for _, updatedNode := range tc.fakeNodeHandler.GetUpdatedNodesCopy() {
|
|
seenCIDRs = append(seenCIDRs, updatedNode.Spec.PodCIDR)
|
|
if updatedNode.Spec.PodCIDR == tc.expectedAllocatedCIDRSecondRound {
|
|
found = true
|
|
break
|
|
}
|
|
}
|
|
if !found {
|
|
t.Errorf("%v: Unable to find allocated CIDR %v, found updated Nodes with CIDRs: %v",
|
|
tc.description, tc.expectedAllocatedCIDRSecondRound, seenCIDRs)
|
|
}
|
|
}
|
|
for _, tc := range testCases {
|
|
testFunc(tc)
|
|
}
|
|
}
|