Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for IPFamilyPolicyPreferDualStack (0.3 sec)

  1. pkg/registry/core/service/storage/storage_test.go

    						svctest.SetIPFamilyPolicy(api.IPFamilyPolicyPreferDualStack)),
    					expectPolicy:   api.IPFamilyPolicyPreferDualStack,
    					expectFamilies: []api.IPFamily{api.IPv4Protocol},
    				}, {
    					name: "ClusterIPs:unset_Policy:PreferDualStack_Families:v4",
    					line: line(),
    					svc: svctest.MakeService("foo",
    						svctest.SetIPFamilyPolicy(api.IPFamilyPolicyPreferDualStack),
    						svctest.SetIPFamilies(api.IPv4Protocol)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	// The IPFamily assigned is based on the default IPFamily used by the cluster
    	// or as identified by service.spec.ipFamilies field
    	IPFamilyPolicySingleStack IPFamilyPolicy = "SingleStack"
    	// IPFamilyPolicyPreferDualStack indicates that this service prefers dual-stack when
    	// the cluster is configured for dual-stack. If the cluster is not configured
    	// for dual-stack the service will be assigned a single IPFamily. If the IPFamily is not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// The IPFamily assigned is based on the default IPFamily used by the cluster
    	// or as identified by service.spec.ipFamilies field
    	IPFamilyPolicySingleStack IPFamilyPolicy = "SingleStack"
    	// IPFamilyPolicyPreferDualStack indicates that this service prefers dual-stack when
    	// the cluster is configured for dual-stack. If the cluster is not configured
    	// for dual-stack the service will be assigned a single IPFamily. If the IPFamily is not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation.go

    var supportedServiceIPFamily = sets.New(core.IPv4Protocol, core.IPv6Protocol)
    var supportedServiceIPFamilyPolicy = sets.New(
    	core.IPFamilyPolicySingleStack,
    	core.IPFamilyPolicyPreferDualStack,
    	core.IPFamilyPolicyRequireDualStack)
    
    // ValidateService tests if required fields/annotations of a Service are valid.
    func ValidateService(service *core.Service) field.ErrorList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top