Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for _rds (0.09 sec)

  1. pilot/pkg/networking/core/listener_test.go

    		}
    
    		f := l.FilterChains[0].Filters[0]
    		cfg, _ := conversion.MessageToStruct(f.GetTypedConfig())
    		rds := cfg.Fields["rds"].GetStructValue().Fields["route_config_name"].GetStringValue()
    		if rds != "8080" {
    			t.Fatalf("expect routes %s, found %s", "8080", rds)
    		}
    
    		l = findListenerByAddress(listeners, "1.2.3.4")
    		if l == nil {
    			t.Fatalf("expect listener %s", "1.2.3.4_8080")
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener.go

    	_, actualLocalHosts := getWildcardsAndLocalHost(node.GetIPMode())
    
    	httpOpts := &core.Http1ProtocolOptions{
    		AllowAbsoluteUrl: proto.BoolTrue,
    	}
    	if features.HTTP10 || enableHTTP10(node.Metadata.HTTP10) {
    		httpOpts.AcceptHttp_10 = true
    	}
    
    	fcs := []*filterChainOpts{{
    		httpOpts: &httpListenerOpts{
    			rds:              model.RDSHttpProxy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

    	if err != nil {
    		t.Fatalf("failed decoding of: %v\n\n%s", err, fixtureItemsAndType)
    	}
    	crd := obj.(*apiextensionsv1.CustomResourceDefinition)
    
    	// create CRDs
    	t.Logf("Creating CRD %s", crd.Name)
    	if _, err = fixtures.CreateNewV1CustomResourceDefinition(crd, apiExtensionClient, client); err != nil {
    		t.Fatalf("unexpected create error: %v", err)
    	}
    
    	// create CR
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    	if err != nil {
    		panic(err)
    	}
    	return result
    }
    
    func BenchmarkRatcheting(b *testing.B) {
    	// Walk directory with CRDs, for each file parse YAML with multiple CRDs in it.
    	// Keep track in a map a validator for each unique gvk
    	crdObjects := loadObjects("ratcheting_test_cases/crds")
    	invalidFiles := loadObjects("ratcheting_test_cases/invalid")
    	validFiles := loadObjects("ratcheting_test_cases/valid")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  5. api/discovery/aggregated_v2.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	case "watch":
    		forceWatch := true
    		return handlers.ListResource(storage, storage, requestScope, forceWatch, r.minRequestTimeout)
    	case "create":
    		// we want to track recently created CRDs so that in HA environments we don't have server A allow a create and server B
    		// not have observed the established, so a followup get,update,delete results in a 404. We've observed about 800ms
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  7. api/discovery/aggregated_v2beta1.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	Storage storage.Interface
    
    	// An underlying storage.Versioner.
    	Versioner storage.Versioner
    
    	// The GroupResource the cacher is caching. Used for disambiguating *unstructured.Unstructured (CRDs) in logging
    	// and metrics.
    	GroupResource schema.GroupResource
    
    	// The Cache will be caching objects of a given Type and assumes that they
    	// are all stored under ResourcePrefix directory in the underlying database.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.proto

      uint32 maxNumberOfMessageEvents = 4;
    }
    
    message BaseConfig {
      // For Helm2 use, adds the CRDs to templates.
      google.protobuf.BoolValue enableCRDTemplates = 1;
    
      // URL to use for validating webhook.
      string validationURL = 2;
    
      // For istioctl usage to disable istio config crds in base
      google.protobuf.BoolValue enableIstioConfigCRDs = 3;
    
      google.protobuf.BoolValue validateGateway = 4;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/httproute_test.go

    		Meta: config.Meta{
    			GroupVersionKind: gvk.VirtualService,
    			Name:             "vs-1",
    			Namespace:        "default",
    		},
    		Spec: virtualServiceSpec7,
    	}
    
    	// With the config above, RDS should return a valid route for the following route names
    	// port 9000 - [bookinfo.com:9999, *.bookinfo.com:9990], [bookinfo.com:70, *.bookinfo.com:70] but no bookinfo.com
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
Back to top