Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for excludeInterfaces (3.91 sec)

  1. releasenotes/notes/42381.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - https://github.com/istio/istio/pull/42381
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 09 15:59:04 UTC 2022
    - 196 bytes
    - Viewed (0)
  2. cni/pkg/plugin/sidecar_redirect.go

    	redir.excludeInboundPorts = strings.Join(dedupPorts(splitPorts(redir.excludeInboundPorts)), ",")
    	isFound, redir.excludeInterfaces, valErr = getAnnotationOrDefault("excludeInterfaces", pi.Annotations)
    	if valErr != nil {
    		return nil, fmt.Errorf("annotation value error for value %s; annotationFound = %t: %v",
    			"excludeInterfaces", isFound, valErr)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. releasenotes/notes/39404.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - https://github.com/istio/istio/pull/39404
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 14 09:46:19 UTC 2022
    - 231 bytes
    - Viewed (0)
  4. releasenotes/notes/44777.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue: 
      - 41271
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 05:53:01 UTC 2023
    - 196 bytes
    - Viewed (0)
  5. cni/pkg/plugin/sidecar_iptables_linux.go

    	cfg.OutboundIPRangesInclude = rdrct.includeIPCidrs
    	cfg.InboundPortsExclude = rdrct.excludeInboundPorts
    	cfg.InboundPortsInclude = rdrct.includeInboundPorts
    	cfg.ExcludeInterfaces = rdrct.excludeInterfaces
    	cfg.OutboundPortsExclude = rdrct.excludeOutboundPorts
    	cfg.OutboundPortsInclude = rdrct.includeOutboundPorts
    	cfg.OutboundIPRangesExclude = rdrct.excludeIPCidrs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. pkg/kube/inject/template.go

    		"isset":               isset,
    		"excludeInboundPort":  excludeInboundPort,
    		"includeInboundPorts": includeInboundPorts,
    		"kubevirtInterfaces":  kubevirtInterfaces,
    		"excludeInterfaces":   excludeInterfaces,
    		"applicationPorts":    applicationPorts,
    		"annotation":          getAnnotation,
    		"valueOrDefault":      valueOrDefault,
    		"toJSON":              toJSON,
    		"fromJSON":            fromJSON,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 02:12:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/config/config.go

    	OutboundIPRangesExclude string        `json:"OUTBOUND_IPRANGES_EXCLUDE"`
    	KubeVirtInterfaces      string        `json:"KUBE_VIRT_INTERFACES"`
    	ExcludeInterfaces       string        `json:"EXCLUDE_INTERFACES"`
    	IptablesProbePort       uint16        `json:"IPTABLES_PROBE_PORT"`
    	ProbeTimeout            time.Duration `json:"PROBE_TIMEOUT"`
    	DryRun                  bool          `json:"DRY_RUN"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/files/injection-template.yaml

        {{ with index .ObjectMeta.Annotations `traffic.sidecar.istio.io/excludeInterfaces` }}traffic.sidecar.istio.io/excludeInterfaces: "{{.}}",{{ end }}
    {{- end }}
      }
    spec:
      {{- $holdProxy := and
          (or .ProxyConfig.HoldApplicationUntilProxyStarts.GetValue .Values.global.proxy.holdApplicationUntilProxyStarts)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/capture/run_test.go

    				cfg.OutboundIPRangesInclude = "9.9.0.0/16"
    				cfg.DryRun = true
    				cfg.RedirectDNS = true
    				cfg.DNSServersV4 = []string{"127.0.0.53"}
    				cfg.ProxyGID = "1337"
    				cfg.ProxyUID = "1337"
    				cfg.ExcludeInterfaces = "not-istio-nic"
    				cfg.EnableIPv6 = true
    			},
    		},
    		{
    			"ipv6-inbound-ports",
    			func(cfg *config.Config) {
    				cfg.InboundPortsInclude = "4000,5000"
    				cfg.EnableIPv6 = true
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/files/injection-template.yaml

        {{ with index .ObjectMeta.Annotations `traffic.sidecar.istio.io/excludeInterfaces` }}traffic.sidecar.istio.io/excludeInterfaces: "{{.}}",{{ end }}
    {{- end }}
      }
    spec:
      {{- $holdProxy := and
          (or .ProxyConfig.HoldApplicationUntilProxyStarts.GetValue .Values.global.proxy.holdApplicationUntilProxyStarts)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
Back to top