Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for proxy_version (0.2 sec)

  1. pkg/config/analysis/analyzers/testdata/envoy-filter-replace-operation.yaml

          app: reviews4
      configPatches:
        # The first patch adds the Lua filter to the listener/http connection manager
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_OUTBOUND
          proxy:
            proxyVersion: '^1\.11.*'
          listener:
            portNumber: 8080
            filterChain:
              filter:
                name: "envoy.filters.network.http_connection_manager"
                subFilter:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/relative-envoy-filter-operation.yaml

          app: reviews-3
      configPatches:
        # The first patch adds the Lua filter to the listener/http connection manager
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_INBOUND
          proxy:
            proxyVersion: '^1\.11.*'
          listener:
            portNumber: 8080
            filterChain:
              filter:
                name: "envoy.filters.network.http_connection_manager.InternalAddressConfig"
        patch:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  3. pkg/config/validation/envoyfilter/envoyfilter_test.go

    				{
    					ApplyTo: networking.EnvoyFilter_LISTENER,
    					Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    						Proxy: &networking.EnvoyFilter_ProxyMatch{
    							ProxyVersion: "%#@~++==`24c234`",
    						},
    					},
    					Patch: &networking.EnvoyFilter_Patch{
    						Operation: networking.EnvoyFilter_Patch_REMOVE,
    					},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. pkg/config/validation/envoyfilter/envoyfilter.go

    			continue
    		}
    
    		// ensure that the supplied regex for proxy version compiles
    		if cp.Match != nil && cp.Match.Proxy != nil && cp.Match.Proxy.ProxyVersion != "" {
    			if _, err := regexp.Compile(cp.Match.Proxy.ProxyVersion); err != nil {
    				errs = validation.AppendValidation(errs, fmt.Errorf("Envoy filter: invalid regex for proxy version, [%v]", err)) // nolint: stylecheck
    				continue
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. tools/docker-builder/main.go

    	rootCmd.Flags().StringVar(&globalArgs.BaseImageRegistry, "image-base-registry", globalArgs.BaseImageRegistry, "base image registry to use")
    	rootCmd.Flags().StringVar(&globalArgs.ProxyVersion, "proxy-version", globalArgs.ProxyVersion, "proxy version to use")
    	rootCmd.Flags().StringVar(&globalArgs.ZtunnelVersion, "ztunnel-version", globalArgs.ZtunnelVersion, "ztunnel version to use")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  6. pkg/config/analysis/msg/messages.yaml

        template: "This EnvoyFilter does not have a priority and has a relative patch operation (NSTERT_BEFORE/AFTER, REPLACE, MERGE, DELETE) and proxyVersion set which can cause the EnvoyFilter not to be applied during an upgrade....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. pilot/pkg/model/context_test.go

    			pversion := &model.IstioVersion{
    				Major: tt.fields.Major,
    				Minor: tt.fields.Minor,
    				Patch: tt.fields.Patch,
    			}
    			if got := pversion.Compare(tt.args.inv); got != tt.want {
    				t.Errorf("ProxyVersion.Compare() = %v, want %v", got, tt.want)
    			}
    		})
    	}
    }
    
    func Test_parseIstioVersion(t *testing.T) {
    	type args struct {
    		ver string
    	}
    	tests := []struct {
    		name string
    		args args
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_builder.go

    	clusterID          string                // Cluster in which proxy is running.
    	proxyID            string                // Identifier that uniquely identifies a proxy.
    	proxyVersion       string                // Version of Proxy.
    	proxyType          model.NodeType        // Indicates whether the proxy is sidecar or gateway.
    	sidecarScope       *model.SidecarScope   // Computed sidecar for the proxy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    							Filter: &networking.EnvoyFilter_ListenerMatch_FilterMatch{Name: "filter1"},
    						},
    					},
    				},
    				Proxy: &networking.EnvoyFilter_ProxyMatch{
    					ProxyVersion: `^1\.[2-9](.*?)$`,
    				},
    			},
    			Patch: &networking.EnvoyFilter_Patch{
    				Operation: networking.EnvoyFilter_Patch_INSERT_BEFORE,
    				Value:     buildPatchStruct(`{"name":"filter0"}`),
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  10. pkg/config/analysis/msg/messages.gen.go

    	// Description: This EnvoyFilter does not have a priority and has a relative patch operation (NSTERT_BEFORE/AFTER, REPLACE, MERGE, DELETE) and proxyVersion set which can cause the EnvoyFilter not to be applied during an upgrade. Using the INSERT_FIRST or ADD option or setting the priority may help in ensuring the EnvoyFilter is applied correctly.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top