Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,686 for applyTo (0.14 sec)

  1. tests/integration/pilot/testdata/upgrade/1.8.6-install.yaml.tar

    namespace: istio-system labels: istio.io/rev: 1-8-6 spec: configPatches: - applyTo: NETWORK_FILTER match: context: SIDECAR_INBOUND proxy: proxyVersion: '^1\.6.*' listener: {} patch: operation: INSERT_BEFORE value: name: istio.metadata_exchange typed_config: "@type": type.googleapis.com/udpa.type.v1.TypedStruct type_url: type.googleapis.com/envoy.tcp.metadataexchange.config.MetadataExchange value: protocol: istio-peer-exchange - applyTo: CLUSTER match: context: SIDECAR_OUTBOUND proxy: proxyVersion: '^1\.6.*'...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 70K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/envoyfilter/rc_patch_test.go

    				Operation: networking.EnvoyFilter_Patch_REMOVE,
    			},
    		},
    		{
    			ApplyTo: networking.EnvoyFilter_VIRTUAL_HOST,
    			Patch: &networking.EnvoyFilter_Patch{
    				Operation: networking.EnvoyFilter_Patch_ADD,
    				Value:     buildPatchStruct(`{"name":"new-vhost"}`),
    			},
    		},
    		{
    			ApplyTo: networking.EnvoyFilter_VIRTUAL_HOST,
    			Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/initialization/BuildLayoutParametersBuildOptions.java

            }
    
            @Override
            public void applyTo(String value, BuildLayoutParameters settings, Origin origin) {
                Transformer<File, String> resolver = new BasicFileResolver(settings.getCurrentDir());
                settings.setGradleUserHomeDir(resolver.transform(value));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Feb 04 18:57:57 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. pkg/config/xds/xds.go

    	"istio.io/istio/pkg/util/protomarshal"
    )
    
    // nolint: interfacer
    func BuildXDSObjectFromStruct(applyTo networking.EnvoyFilter_ApplyTo, value *structpb.Struct, strict bool) (proto.Message, error) {
    	if value == nil {
    		// for remove ops
    		return nil, nil
    	}
    	var obj proto.Message
    	switch applyTo {
    	case networking.EnvoyFilter_CLUSTER:
    		obj = &cluster.Cluster{}
    	case networking.EnvoyFilter_LISTENER:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 14 02:41:27 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. samples/bookinfo/policy/productpage_envoy_ratelimit.yaml

      namespace: istio-system
    spec:
      workloadSelector:
        # select by label in the same namespace
        labels:
          istio: ingressgateway
      configPatches:
        # The Envoy config you want to modify
        - applyTo: HTTP_FILTER
          match:
            context: GATEWAY
            listener:
              filterChain:
                filter:
                  name: "envoy.filters.network.http_connection_manager"
                  subFilter:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 10 15:30:28 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    	e.SetPushContext(pushContext)
    	return e
    }
    
    func TestApplyListenerPatches(t *testing.T) {
    	configPatchesPriorities := []*networking.EnvoyFilter_EnvoyConfigObjectPatch{
    		{
    			ApplyTo: networking.EnvoyFilter_HTTP_FILTER,
    			Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    				Context: networking.EnvoyFilter_GATEWAY,
    				ObjectTypes: &networking.EnvoyFilter_EnvoyConfigObjectMatch_Listener{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/EnabledOnlyBooleanBuildOption.java

            for (CommandLineOptionConfiguration config : commandLineOptionConfigurations) {
                if (options.hasOption(config.getLongOption())) {
                    applyTo(settings, Origin.forCommandLine(config.getLongOption()));
                }
            }
        }
    
        public abstract void applyTo(T settings, Origin origin);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/absolute-envoy-filter-operation.yaml

    metadata:
      name: test-reviews-lua-1
      namespace: bookinfo
    spec:
      workloadSelector:
        labels:
          app: reviews
      configPatches:
        # The first patch adds the lua filter to the listener/http connection manager
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_INBOUND
          listener:
            portNumber: 8080
            filterChain:
              filter:
                name: "envoy.filters.network.http_connection_manager"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 28 12:58:54 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/StringBuildOption.java

                if (options.hasOption(config.getLongOption())) {
                    String value = options.option(config.getLongOption()).getValue();
                    applyTo(value, settings, Origin.forCommandLine(config.getLongOption()));
                }
            }
        }
    
        public abstract void applyTo(String value, T settings, Origin origin);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/ListBuildOption.java

                    List<String> value = options.option(config.getLongOption()).getValues();
                    applyTo(value, settings, Origin.forCommandLine(config.getLongOption()));
                }
            }
        }
    
        public abstract void applyTo(List<String> values, T settings, Origin origin);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top