Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 85 for tproxy (0.17 sec)

  1. pkg/kube/inject/testdata/inputs/hello-openshift.yaml.47.template.gen.yaml

                add:
                {{ if eq (annotation .ObjectMeta `sidecar.istio.io/interceptionMode` .ProxyConfig.InterceptionMode) `TPROXY` -}}
                - NET_ADMIN
                {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inputs/hello.yaml.1.template.gen.yaml

                add:
                {{ if eq (annotation .ObjectMeta `sidecar.istio.io/interceptionMode` .ProxyConfig.InterceptionMode) `TPROXY` -}}
                - NET_ADMIN
                {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inputs/hello.yaml.12.template.gen.yaml

                add:
                {{ if eq (annotation .ObjectMeta `sidecar.istio.io/interceptionMode` .ProxyConfig.InterceptionMode) `TPROXY` -}}
                - NET_ADMIN
                {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inputs/hello.yaml.13.template.gen.yaml

                add:
                {{ if eq (annotation .ObjectMeta `sidecar.istio.io/interceptionMode` .ProxyConfig.InterceptionMode) `TPROXY` -}}
                - NET_ADMIN
                {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inputs/kubevirtInterfaces.yaml.9.template.gen.yaml

                add:
                {{ if eq (annotation .ObjectMeta `sidecar.istio.io/interceptionMode` .ProxyConfig.InterceptionMode) `TPROXY` -}}
                - NET_ADMIN
                {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener.go

    	push  *model.PushContext
    	proxy *model.Proxy
    
    	bindToPort bool
    	bind       string
    	extraBind  []string
    
    	port              int
    	filterChainOpts   []*filterChainOpts
    	needPROXYProtocol bool
    }
    
    // outboundListenerOpts are the options to build an outbound listener
    type outboundListenerOpts struct {
    	push  *model.PushContext
    	proxy *model.Proxy
    
    	bind listenerBinding
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. src/net/http/httputil/reverseproxy_test.go

    				Host:   "dummy.tld",
    				Path:   "/",
    			}
    			rproxy := NewSingleHostReverseProxy(target)
    			rproxy.Transport = tt.transport
    			rproxy.ModifyResponse = tt.modifyResponse
    			if rproxy.Transport == nil {
    				rproxy.Transport = failingRoundTripper{}
    			}
    			rproxy.ErrorLog = log.New(io.Discard, "", 0) // quiet for tests
    			if tt.errorHandler != nil {
    				rproxy.ErrorHandler = tt.errorHandler
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/sidecar_simulation_test.go

      clusterIP: 2.0.0.2
      ports:
      - port: 80
        name: http
      - port: 8080
        name: http
    `
    	proxy := func(ns string) *model.Proxy {
    		return &model.Proxy{ConfigNamespace: ns}
    	}
    	cases := []struct {
    		name            string
    		cfg             []Configer
    		proxy           *model.Proxy
    		routeName       string
    		expected        map[string][]string
    		expectedGateway map[string][]string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context_test.go

    		},
    
    		{
    			name: "proxy matches no envoyfilter",
    			proxy: &Proxy{
    				Labels:          map[string]string{"app": "v2"},
    				Metadata:        &NodeMetadata{IstioVersion: "1.4.0", Labels: map[string]string{"app": "v2"}},
    				ConfigNamespace: "test-ns",
    			},
    			expectedListenerPatches: 0,
    			expectedClusterPatches:  0,
    		},
    		{
    			name: "proxy matches envoyfilter in root ns",
    			proxy: &Proxy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	}
    
    	cases := []struct {
    		name  string
    		proxy *model.Proxy
    		want  []model.ServiceTarget
    	}{
    		{
    			name:  "proxy with unspecified IP",
    			proxy: &model.Proxy{Metadata: &model.NodeMetadata{}, IPAddresses: nil},
    			want:  nil,
    		},
    		{
    			name:  "proxy with IP not in the registry",
    			proxy: &model.Proxy{Metadata: &model.NodeMetadata{}, IPAddresses: []string{"1.1.1.1"}},
    			want:  nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
Back to top