Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for ProxyListenPort (0.36 sec)

  1. pilot/pkg/networking/core/listener_builder.go

    	ipTablesListener := &listener.Listener{
    		Name:             model.VirtualOutboundListenerName,
    		Address:          util.BuildAddress(actualWildcards[0], uint32(lb.push.Mesh.ProxyListenPort)),
    		Transparent:      isTransparentProxy,
    		UseOriginalDst:   proto.BoolTrue,
    		FilterChains:     filterChains,
    		TrafficDirection: core.TrafficDirection_OUTBOUND,
    	}
    	// add extra addresses for the listener
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. pkg/config/mesh/mesh.go

    			Enabled: wrappers.Bool(true),
    		},
    		Certificates:  []*meshconfig.Certificate{},
    		DefaultConfig: proxyConfig,
    
    		RootNamespace:                  constants.IstioSystemNamespace,
    		ProxyListenPort:                15001,
    		ProxyInboundListenPort:         15006,
    		ConnectTimeout:                 durationpb.New(10 * time.Second),
    		DefaultServiceExportTo:         []string{"*"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/files/injection-template.yaml

      {{- else }}
        image: "{{ .ProxyImage }}"
      {{- end }}
        args:
        - istio-iptables
        - "-p"
        - {{ .MeshConfig.ProxyListenPort | default "15001" | quote }}
        - "-z"
        - {{ .MeshConfig.ProxyInboundListenPort | default "15006" | quote }}
        - "-u"
        - {{ .ProxyUID | default "1337" | quote }}
        - "-m"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/files/injection-template.yaml

      {{- else }}
        image: "{{ .ProxyImage }}"
      {{- end }}
        args:
        - istio-iptables
        - "-p"
        - {{ .MeshConfig.ProxyListenPort | default "15001" | quote }}
        - "-z"
        - {{ .MeshConfig.ProxyInboundListenPort | default "15006" | quote }}
        - "-u"
        - {{ .ProxyUID | default "1337" | quote }}
        - "-m"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener.go

    }
    
    // buildSidecarListeners produces a list of listeners for sidecar proxies
    func (configgen *ConfigGeneratorImpl) buildSidecarListeners(builder *ListenerBuilder) *ListenerBuilder {
    	if builder.push.Mesh.ProxyListenPort > 0 {
    		// Any build order change need a careful code review
    		builder.appendSidecarInboundListeners().
    			appendSidecarOutboundListeners().
    			buildHTTPProxyListener().
    			buildVirtualOutboundListener()
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. pkg/config/validation/agent/validation.go

    	}
    	return
    }
    
    // ValidateMeshConfig checks that the mesh config is well-formed
    func ValidateMeshConfig(mesh *meshconfig.MeshConfig) (Warning, error) {
    	v := Validation{}
    	if err := ValidatePort(int(mesh.ProxyListenPort)); err != nil {
    		v = AppendValidation(v, multierror.Prefix(err, "invalid proxy listen port:"))
    	}
    
    	if err := ValidateConnectTimeout(mesh.ConnectTimeout); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  7. pkg/config/validation/agent/validation_test.go

    func TestValidateMeshConfig(t *testing.T) {
    	if _, err := ValidateMeshConfig(&meshconfig.MeshConfig{}); err == nil {
    		t.Error("expected an error on an empty mesh config")
    	}
    
    	invalid := &meshconfig.MeshConfig{
    		ProxyListenPort:    0,
    		ConnectTimeout:     durationpb.New(-1 * time.Second),
    		DefaultConfig:      &meshconfig.ProxyConfig{},
    		TrustDomain:        "",
    		TrustDomainAliases: []string{"a.$b", "a/b", ""},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/output/sidecar_template.golden.yaml

              {{- else }}
                image: "{{ .ProxyImage }}"
              {{- end }}
                args:
                - istio-iptables
                - "-p"
                - {{ .MeshConfig.ProxyListenPort | default "15001" | quote }}
                - "-z"
                - {{ .MeshConfig.ProxyInboundListenPort | default "15006" | quote }}
                - "-u"
                - {{ .ProxyUID | default "1337" | quote }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 86.9K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inputs/hello.yaml.4.template.gen.yaml

          {{- else }}
            image: "{{ .ProxyImage }}"
          {{- end }}
            args:
            - istio-iptables
            - "-p"
            - {{ .MeshConfig.ProxyListenPort | default "15001" | quote }}
            - "-z"
            - {{ .MeshConfig.ProxyInboundListenPort | default "15006" | quote }}
            - "-u"
            - {{ .ProxyUID | default "1337" | quote }}
            - "-m"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inputs/merge-probers.yaml.43.template.gen.yaml

          {{- else }}
            image: "{{ .ProxyImage }}"
          {{- end }}
            args:
            - istio-iptables
            - "-p"
            - {{ .MeshConfig.ProxyListenPort | default "15001" | quote }}
            - "-z"
            - {{ .MeshConfig.ProxyInboundListenPort | default "15006" | quote }}
            - "-u"
            - {{ .ProxyUID | default "1337" | quote }}
            - "-m"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top