Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for Patches (0.46 sec)

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

                      envoyproxy_authority: '%REQ(:AUTHORITY)%'
    `,
    	})
    
    	proxy := cg.SetupProxy(nil)
    	l1 := cg.Listeners(proxy)
    	l2 := cg.Listeners(proxy)
    	// Make sure it doesn't change between patches
    	if d := cmp.Diff(l1, l2, protocmp.Transform()); d != "" {
    		t.Fatal(d)
    	}
    	// Make sure we have exactly 1 access log
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster.go

    			if patched := cp.patch(nil, defaultCluster.build()); patched != nil {
    				resources = append(resources, patched)
    				if features.EnableCDSCaching {
    					cb.cache.Add(&clusterKey, cb.req, patched)
    				}
    			}
    			for _, ss := range subsetClusters {
    				if patched := cp.patch(nil, ss); patched != nil {
    					resources = append(resources, patched)
    					if features.EnableCDSCaching {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. pilot/pkg/simulation/traffic.go

    var (
    	ErrNoListener          = errors.New("no listener matched")
    	ErrNoFilterChain       = errors.New("no filter chains matched")
    	ErrNoRoute             = errors.New("no route matched")
    	ErrTLSRedirect         = errors.New("tls required, sending 301")
    	ErrNoVirtualHost       = errors.New("no virtual host matched")
    	ErrMultipleFilterChain = errors.New("multiple filter chains matched")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. pilot/pkg/features/pilot.go

    	LocalClusterSecretWatcher = env.Register("LOCAL_CLUSTER_SECRET_WATCHER", false,
    		"If enabled, the cluster secret watcher will watch the namespace of the external cluster instead of config cluster").Get()
    
    	InformerWatchNamespace = env.Register("ISTIO_WATCH_NAMESPACE", "",
    		"If set, limit Kubernetes watches to a single namespace. "+
    			"Warning: only a single namespace can be set.").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/server.go

    	httpsMux *http.ServeMux // webhooks
    
    	// fileWatcher used to watch mesh config, networks and certificates.
    	fileWatcher filewatcher.FileWatcher
    
    	// certWatcher watches the certificates for changes and triggers a notification to Istiod.
    	cacertsWatcher *fsnotify.Watcher
    	dnsNames       []string
    
    	CA       *ca.IstioCA
    	RA       ra.RegistrationAuthority
    	caServer *caserver.Server
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  6. pkg/security/security.go

    	TokenAudiences = strings.Split(env.Register("TOKEN_AUDIENCES", "istio-ca",
    		"A list of comma separated audiences to check in the JWT token before issuing a certificate. "+
    			"The token is accepted if it matches with one of the audiences").Get(), ",")
    )
    
    const (
    	BearerTokenPrefix = "Bearer "
    
    	K8sTokenPrefix = "Istio "
    
    	// CertSigner info
    	CertSigner = "CertSigner"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/customresourcedefinition.go

    		Resource("customresourcedefinitions").
    		VersionedParams(&opts, scheme.ParameterCodec).
    		Timeout(timeout).
    		WatchList(ctx).
    		Into(result)
    	return
    }
    
    // Watch returns a watch.Interface that watches the requested customResourceDefinitions.
    func (c *customResourceDefinitions) Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error) {
    	var timeout time.Duration
    	if opts.TimeoutSeconds != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. cmd/signature-v4_test.go

    		}
    
    		// Do the same for the headers.
    		for key, value := range testCase.headers {
    			req.Header.Set(key, value)
    		}
    
    		// parse form.
    		req.ParseForm()
    
    		// Check if it matches!
    		err := doesPresignedSignatureMatch(payloadSHA256, req, testCase.region, serviceS3)
    		if err != testCase.expected {
    			t.Errorf("(%d) expected to get %s, instead got %s", i, niceError(testCase.expected), niceError(err))
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/customresourcedefinition.go

    		Resource("customresourcedefinitions").
    		VersionedParams(&opts, scheme.ParameterCodec).
    		Timeout(timeout).
    		WatchList(ctx).
    		Into(result)
    	return
    }
    
    // Watch returns a watch.Interface that watches the requested customResourceDefinitions.
    func (c *customResourceDefinitions) Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error) {
    	var timeout time.Duration
    	if opts.TimeoutSeconds != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. pilot/pkg/model/gateway.go

    				if s.Tls != nil {
    					// Envoy will reject config that has multiple filter chain matches with the same matching rules.
    					// To avoid this, we need to make sure we don't have duplicated hosts, which will become
    					// SNI filter chain matches.
    
    					// When there is Bind specified in the Gateway, the listener is built per IP instead of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top