Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for clientTop (0.38 sec)

  1. common-protos/k8s.io/api/core/v1/generated.proto

    }
    
    // ClientIPConfig represents the configurations of Client IP based session affinity.
    message ClientIPConfig {
      // timeoutSeconds specifies the seconds of ClientIP type session sticky time.
      // The value must be >0 && <=86400(for 1 day) if ServiceAffinity == "ClientIP".
      // Default value is 10800(for 3 hours).
      // +optional
      optional int32 timeoutSeconds = 1;
    }
    
    // Information about the condition of a component.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    type SessionAffinityConfig struct {
    	// clientIP contains the configurations of Client IP based session affinity.
    	// +optional
    	ClientIP *ClientIPConfig
    }
    
    // ClientIPConfig represents the configurations of Client IP based session affinity.
    type ClientIPConfig struct {
    	// timeoutSeconds specifies the seconds of ClientIP type session sticky time.
    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_swagger_doc_generated.go

    	"":               "ClientIPConfig represents the configurations of Client IP based session affinity.",
    	"timeoutSeconds": "timeoutSeconds specifies the seconds of ClientIP type session sticky time. The value must be >0 && <=86400(for 1 day) if ServiceAffinity == \"ClientIP\". Default value is 10800(for 3 hours).",
    }
    
    func (ClientIPConfig) SwaggerDoc() map[string]string {
    	return map_ClientIPConfig
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	ClientIP *ClientIPConfig `json:"clientIP,omitempty" protobuf:"bytes,1,opt,name=clientIP"`
    }
    
    // ClientIPConfig represents the configurations of Client IP based session affinity.
    type ClientIPConfig struct {
    	// timeoutSeconds specifies the seconds of ClientIP type session sticky time.
    	// The value must be >0 && <=86400(for 1 day) if ServiceAffinity == "ClientIP".
    	// Default value is 10800(for 3 hours).
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation.go

    		return allErrs
    	}
    	if config.ClientIP == nil {
    		allErrs = append(allErrs, field.Required(fldPath.Child("clientIP"), fmt.Sprintf("when session affinity type is %s", core.ServiceAffinityClientIP)))
    		return allErrs
    	}
    	if config.ClientIP.TimeoutSeconds == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

    }
    
    // ClientIPConfig represents the configurations of Client IP based session affinity.
    message ClientIPConfig {
      // timeoutSeconds specifies the seconds of ClientIP type session sticky time.
      // The value must be >0 && <=86400(for 1 day) if ServiceAffinity == "ClientIP".
      // Default value is 10800(for 3 hours).
      // +optional
      optional int32 timeoutSeconds = 1;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_SessionAffinityConfig_To_core_SessionAffinityConfig(in *v1.SessionAffinityConfig, out *core.SessionAffinityConfig, s conversion.Scope) error {
    	out.ClientIP = (*core.ClientIPConfig)(unsafe.Pointer(in.ClientIP))
    	return nil
    }
    
    // Convert_v1_SessionAffinityConfig_To_core_SessionAffinityConfig is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  8. pkg/registry/core/service/storage/storage_test.go

    				func(s *api.Service) {
    					// Set it without setting the config
    					s.Spec.SessionAffinity = api.ServiceAffinityClientIP
    				}),
    			expectError: true,
    		},
    	}, {
    		name: "None-ClientIP",
    		create: svcTestCase{
    			svc: svctest.MakeService("foo", svctest.SetTypeClusterIP,
    				svctest.SetSessionAffinity(api.ServiceAffinityNone)),
    			expectClusterIPs: true,
    		},
    		update: svcTestCase{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  9. pkg/proxy/iptables/proxier_test.go

    			svc.Spec.LoadBalancerSourceRanges = []string{" 203.0.113.0/25"}
    
    			svc.Spec.SessionAffinity = v1.ServiceAffinityClientIP
    			svc.Spec.SessionAffinityConfig = &v1.SessionAffinityConfig{
    				ClientIP: &v1.ClientIPConfig{
    					TimeoutSeconds: ptr.To[int32](10800),
    				},
    			}
    		}),
    		// create ClusterIP service with no endpoints
    		makeTestService("ns6", "svc6", func(svc *v1.Service) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
Back to top