Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for KubernetesServiceNodePort (0.25 sec)

  1. cmd/kube-apiserver/app/options/validation_test.go

    			}
    		})
    	}
    }
    
    func makeOptionsWithPort(kubernetesServiceNodePort int, base int, size int) *ServerRunOptions {
    	var portRange = utilnet.PortRange{
    		Base: base,
    		Size: size,
    	}
    	return &ServerRunOptions{
    		Extra: Extra{
    			ServiceNodePortRange:      portRange,
    			KubernetesServiceNodePort: kubernetesServiceNodePort,
    		},
    	}
    }
    
    func TestValidateMaxCIDRRange(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. cmd/kube-apiserver/app/server.go

    			SecondaryServiceIPRange: opts.SecondaryServiceClusterIPRange,
    
    			APIServerServicePort: 443,
    
    			ServiceNodePortRange:      opts.ServiceNodePortRange,
    			KubernetesServiceNodePort: opts.KubernetesServiceNodePort,
    
    			EndpointReconcilerType: reconcilers.Type(opts.EndpointReconcilerType),
    			MasterCount:            opts.MasterCount,
    		},
    	}
    
    	if config.ControlPlane.Generic.EgressSelector != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 17:44:20 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. pkg/controlplane/instance.go

    		ServiceIP:                 c.Extra.APIServerServiceIP,
    		ServicePort:               c.Extra.APIServerServicePort,
    		PublicServicePort:         publicServicePort,
    		KubernetesServiceNodePort: c.Extra.KubernetesServiceNodePort,
    	}, client, c.ControlPlane.Extra.VersionedInformers.Core().V1().Services())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top