diff --git a/pkg/api/validation/validation_test.go b/pkg/api/validation/validation_test.go index 671d0dd11f46..e51e1296f530 100644 --- a/pkg/api/validation/validation_test.go +++ b/pkg/api/validation/validation_test.go @@ -7814,7 +7814,7 @@ func TestValidateServiceUpdate(t *testing.T) { oldSvc.Spec.Type = api.ServiceTypeLoadBalancer oldSvc.Spec.LoadBalancerSourceRanges = []string{"10.0.0.0/8"} newSvc.Spec.Type = api.ServiceTypeLoadBalancer - newSvc.Spec.LoadBalancerSourceRanges = []string{"10.180.0.0/16"} + newSvc.Spec.LoadBalancerSourceRanges = []string{"10.100.0.0/16"} }, numErrs: 0, }, diff --git a/test/e2e_node/conformance/run_test.sh b/test/e2e_node/conformance/run_test.sh index feb0b9e59346..5c9c51cde085 100755 --- a/test/e2e_node/conformance/run_test.sh +++ b/test/e2e_node/conformance/run_test.sh @@ -150,7 +150,7 @@ allow_privileged=true serialize_image_pulls=false config_dir=`mktemp -d` file_check_frequency=10s -pod_cidr=10.180.0.0/24 +pod_cidr=10.100.0.0/24 log_level=4 start_kubelet --api-servers $apiserver \ --volume-stats-agg-period $volume_stats_agg_period \ diff --git a/test/e2e_node/services/kubelet.go b/test/e2e_node/services/kubelet.go index 2ed5cf998985..477155db190b 100644 --- a/test/e2e_node/services/kubelet.go +++ b/test/e2e_node/services/kubelet.go @@ -137,7 +137,12 @@ func (e *E2EServices) startKubelet() (*server, error) { "--serialize-image-pulls", "false", "--pod-manifest-path", manifestPath, "--file-check-frequency", "10s", // Check file frequently so tests won't wait too long - "--pod-cidr", "10.180.0.0/24", // Assign a fixed CIDR to the node because there is no node controller. + // Assign a fixed CIDR to the node because there is no node controller. + // + // Note: this MUST be in sync with with the IP in + // - cluster/gce/config-test.sh and + // - test/e2e_node/conformance/run_test.sh. + "--pod-cidr", "10.100.0.0/24", "--eviction-pressure-transition-period", "30s", // Apply test framework feature gates by default. This could also be overridden // by kubelet-flags.