Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for httpCookie (0.17 sec)

  1. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                        - required:
                                          - httpHeaderName
                                        - required:
                                          - httpCookie
                                        - required:
                                          - useSourceIp
                                        - required:
                                          - httpQueryParameterName
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  2. manifests/charts/base/crds/crd-all.gen.yaml

                                        - required:
                                          - httpHeaderName
                                        - required:
                                          - httpCookie
                                        - required:
                                          - useSourceIp
                                        - required:
                                          - httpQueryParameterName
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/route_test.go

    									ConsistentHash: &networking.LoadBalancerSettings_ConsistentHashLB{
    										HashKey: &networking.LoadBalancerSettings_ConsistentHashLB_HttpCookie{
    											HttpCookie: &networking.LoadBalancerSettings_ConsistentHashLB_HTTPCookie{
    												Name: "hash-cookie",
    												Ttl:  &ttl,
    											},
    										},
    									},
    								},
    							},
    						},
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    	}
    
    	// simple load balancing is always valid
    	consistentHash := settings.GetConsistentHash()
    	if consistentHash != nil {
    		httpCookie := consistentHash.GetHttpCookie()
    		if httpCookie != nil && httpCookie.GetName() == "" {
    			errs = AppendValidation(errs, fmt.Errorf("name required for HttpCookie"))
    		}
    		if consistentHash.MinimumRingSize != 0 { // nolint: staticcheck
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. tests/integration/pilot/common/routing.go

    ---
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: %s
    spec:
      host: %s
      trafficPolicy:
        loadBalancer:
          consistentHash:
            httpCookie:
              name: session-cookie
              ttl: 3600s
    `, svcName, svcName)
    
    			cookieWithoutTTLDest := fmt.Sprintf(`
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  6. pkg/config/validation/validation_test.go

    					ConsistentHash: &networking.LoadBalancerSettings_ConsistentHashLB{
    						MinimumRingSize: 1024,
    						HashKey: &networking.LoadBalancerSettings_ConsistentHashLB_HttpCookie{
    							HttpCookie: &networking.LoadBalancerSettings_ConsistentHashLB_HTTPCookie{
    								Name: "test",
    								Ttl:  &duration,
    							},
    						},
    					},
    				},
    			},
    			valid: true,
    		},
    
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_test.go

    									ConsistentHash: &networking.LoadBalancerSettings_ConsistentHashLB{
    										MinimumRingSize: uint64(tt.ringSize),
    										HashKey: &networking.LoadBalancerSettings_ConsistentHashLB_HttpCookie{
    											HttpCookie: &networking.LoadBalancerSettings_ConsistentHashLB_HTTPCookie{
    												Name: "hash-cookie",
    												Ttl:  &durationpb.Duration{Nanos: 100},
    											},
    										},
    									},
    								},
    							},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
Back to top