Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 272 for applyTo (0.25 sec)

  1. pilot/pkg/model/envoyfilter.go

    			if cpw.ApplyTo != networking.EnvoyFilter_HTTP_FILTER &&
    				cpw.ApplyTo != networking.EnvoyFilter_NETWORK_FILTER &&
    				cpw.ApplyTo != networking.EnvoyFilter_HTTP_ROUTE &&
    				cpw.ApplyTo != networking.EnvoyFilter_LISTENER_FILTER {
    				cpw.Operation = networking.EnvoyFilter_Patch_ADD
    			}
    		}
    		out.Patches[cp.ApplyTo] = append(out.Patches[cp.ApplyTo], cpw)
    	}
    	return out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. pkg/controlplane/apiserver/config.go

    	if lastErr = s.Features.ApplyTo(genericConfig, clientgoExternalClient, versionedInformers); lastErr != nil {
    		return
    	}
    	if lastErr = s.APIEnablement.ApplyTo(genericConfig, resourceConfig, legacyscheme.Scheme); lastErr != nil {
    		return
    	}
    	if lastErr = s.EgressSelector.ApplyTo(genericConfig); lastErr != nil {
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/cmd/server/options/options.go

    	}
    
    	serverConfig := genericapiserver.NewRecommendedConfig(apiserver.Codecs)
    	if err := o.ServerRunOptions.ApplyTo(&serverConfig.Config); err != nil {
    		return nil, err
    	}
    	if err := o.RecommendedOptions.ApplyTo(serverConfig); err != nil {
    		return nil, err
    	}
    	if err := o.APIEnablement.ApplyTo(&serverConfig.Config, apiserver.DefaultAPIResourceConfigSource(), apiserver.Scheme); err != nil {
    		return nil, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_builder_test.go

    		{
    			ApplyTo: networking.EnvoyFilter_LISTENER,
    			Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    				Context: networking.EnvoyFilter_SIDECAR_OUTBOUND,
    			},
    			Patch: &networking.EnvoyFilter_Patch{
    				Operation: networking.EnvoyFilter_Patch_ADD,
    				Value:     buildPatchStruct(`{"name":"new-outbound-listener"}`),
    			},
    		},
    		{
    			ApplyTo: networking.EnvoyFilter_LISTENER,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/accesslog_test.go

    		ConfigPointers: nil,
    		ConfigString: `
    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: access-log-format
      namespace: default
    spec:
      configPatches:
      - applyTo: NETWORK_FILTER
        match:
          context: ANY
          listener:
            filterChain:
              filter:
                name: envoy.filters.network.tcp_proxy
        patch:
          operation: MERGE
          value:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  6. tests/integration/ambient/baseline_test.go

    			// Apply the policy.
    			cfg := t.ConfigIstio().File(c.Namespace.Name(), filepath.Join("testdata", c.ConfigFile))
    			retry.UntilSuccessOrFail(t, func() error {
    				t.Logf("[%s] [%v] Apply config %s", testName, time.Now(), c.ConfigFile)
    				// TODO(https://github.com/istio/istio/issues/20460) We shouldn't need a retry loop
    				return cfg.Apply(apply.Wait)
    			})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_test.go

    			[]*networking.EnvoyFilter{{
    				ConfigPatches: []*networking.EnvoyFilter_EnvoyConfigObjectPatch{{
    					ApplyTo: networking.EnvoyFilter_CLUSTER,
    					Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    						Context: networking.EnvoyFilter_SIDECAR_OUTBOUND,
    					},
    					Patch: &networking.EnvoyFilter_Patch{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                          description: Labels apply a filter over the endpoints of a service
                            in the service registry.
                          type: object
                        name:
                          description: Name of the subset.
                          type: string
                        trafficPolicy:
                          description: Traffic policies that apply to this subset.
                          properties:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  9. manifests/charts/base/crds/crd-all.gen.yaml

                          description: Labels apply a filter over the endpoints of a service
                            in the service registry.
                          type: object
                        name:
                          description: Name of the subset.
                          type: string
                        trafficPolicy:
                          description: Traffic policies that apply to this subset.
                          properties:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/GroovyPluginImplementation.groovy

                class SneakyPlugin implements Plugin<Project> {
                    public void apply(Project project) {
                        def value = ${read.groovyExpression}
                        println("apply = " + value)
    
                        // Instance call
                        def sys = System
                        println("apply INSTANCE = " + sys.getProperty("INSTANCE"))
    
                        // Call from closure
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top