Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for captureMode (0.17 sec)

  1. tests/fuzz/testdata/FuzzConfigValidation2/fuzz_config_validation2.dict

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 07 17:07:53 UTC 2021
    - 2K bytes
    - Viewed (0)
  2. tests/testdata/networking/sidecar-without-service/configs.yaml

    spec:
      egress:
        - hosts:
            - "ns1/*"
      ingress:
        - port:
            number: 9080
            protocol: HTTP
            name: http-admin
          defaultEndpoint: 127.0.0.1:8080
          captureMode: IPTABLES
      workloadSelector:
        labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 04 17:16:38 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    		} else {
    			errs = appendErrors(errs, ValidateUnixAddress(strings.TrimPrefix(bind, UnixAddressPrefix)))
    		}
    
    		if captureMode != networking.CaptureMode_DEFAULT && captureMode != networking.CaptureMode_NONE {
    			errs = appendErrors(errs, fmt.Errorf("sidecar: captureMode must be DEFAULT/NONE for unix domain socket listeners"))
    		}
    	} else {
    		errs = appendErrors(errs,
    			ValidateProtocol(port.Protocol),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_inbound.go

    					Port:     int(i.Port.Number),
    					Protocol: protocol.Parse(i.Port.Protocol),
    				},
    				TargetPort: i.Port.Number, // No targetPort support in the API
    			}
    			bindtoPort := getBindToPort(i.CaptureMode, lb.node)
    			// Skip ports we cannot bind to
    			if !lb.node.CanBindToPort(bindtoPort, port.TargetPort) {
    				log.Warnf("buildInboundListeners: skipping privileged sidecar port %d for node %s as it is an unprivileged proxy",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  5. pkg/model/proxy.go

    	IstioProxySHA string `json:"ISTIO_PROXY_SHA,omitempty"`
    }
    
    // TrafficInterceptionMode indicates how traffic to/from the workload is captured and
    // sent to Envoy. This should not be confused with the CaptureMode in the API that indicates
    // how the user wants traffic to be intercepted for the listener. TrafficInterceptionMode is
    // always derived from the Proxy metadata
    type TrafficInterceptionMode string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener.go

    		if noneMode {
    			// do not care what the listener's capture mode setting is. The proxy does not use iptables
    			bind.bindToPort = true
    		} else if egressListener.IstioListener != nil {
    			if egressListener.IstioListener.CaptureMode == networking.CaptureMode_NONE {
    				// proxy uses iptables redirect or tproxy. IF mode is not set
    				// for older proxies, it defaults to iptables redirect.  If the
    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. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                            to which the listener should be bound to.
                          type: string
                        captureMode:
                          description: |-
                            When the bind address is an IP, the captureMode option dictates how traffic to the listener is expected to be captured (or not).
    
                            Valid Options: DEFAULT, IPTABLES, NONE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  8. manifests/charts/base/crds/crd-all.gen.yaml

                            to which the listener should be bound to.
                          type: string
                        captureMode:
                          description: |-
                            When the bind address is an IP, the captureMode option dictates how traffic to the listener is expected to be captured (or not).
    
                            Valid Options: DEFAULT, IPTABLES, NONE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_test.go

    					Hosts: []string{"default/*"},
    					Port: &networking.SidecarPort{
    						Number:   15080,
    						Protocol: "HTTP_PROXY",
    						Name:     "15080",
    					},
    					Bind:        "127.0.0.1",
    					CaptureMode: networking.CaptureMode_NONE,
    				},
    			},
    		},
    	}
    	services := []*model.Service{buildService("httpbin.com", wildcardIPv4, protocol.HTTP, tnow.Add(1*time.Second))}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                            to which the listener should be bound to.
                          type: string
                        captureMode:
                          description: When the bind address is an IP, the captureMode
                            option dictates how traffic to the listener is expected to
                            be captured (or not).
                          enum:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
Back to top