Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 42 of 42 for IPv6Protocol (1.23 sec)

  1. pkg/apis/core/validation/validation.go

    var supportedServiceInternalTrafficPolicy = sets.New(core.ServiceInternalTrafficPolicyCluster, core.ServiceInternalTrafficPolicyLocal)
    
    var supportedServiceIPFamily = sets.New(core.IPv4Protocol, core.IPv6Protocol)
    var supportedServiceIPFamilyPolicy = sets.New(
    	core.IPFamilyPolicySingleStack,
    	core.IPFamilyPolicyPreferDualStack,
    	core.IPFamilyPolicyRequireDualStack)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (1)
  2. staging/src/k8s.io/api/core/v1/types.go

    // +enum
    type IPFamily string
    
    const (
    	// IPv4Protocol indicates that this IP is IPv4 protocol
    	IPv4Protocol IPFamily = "IPv4"
    	// IPv6Protocol indicates that this IP is IPv6 protocol
    	IPv6Protocol IPFamily = "IPv6"
    	// IPFamilyUnknown indicates that this IP is unknown protocol
    	IPFamilyUnknown IPFamily = ""
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top