Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for tcpPorts (0.17 sec)

  1. pkg/test/echo/cmd/server/main.go

    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/test/echo/common"
    	"istio.io/istio/pkg/test/echo/server"
    )
    
    var (
    	httpPorts        []int
    	grpcPorts        []int
    	tcpPorts         []int
    	udpPorts         []int
    	tlsPorts         []int
    	hbonePorts       []int
    	instanceIPPorts  []int
    	localhostIPPorts []int
    	serverFirstPorts []int
    	xdsGRPCServers   []int
    	metricsPort      int
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. helm/minio/templates/ciliumnetworkpolicy.yaml

        release: {{ .Release.Name }}
        heritage: {{ .Release.Service }}
    spec:
      endpointSelector:
        matchLabels:
          app: {{ template "minio.name" . }}
          release: {{ .Release.Name }}
      ingress:
      - toPorts:
        - ports:
          - port: "{{ .Values.minioAPIPort }}"
            protocol: TCP
          - port: "{{ .Values.minioConsolePort }}"
            protocol: TCP
        {{- if not .Values.networkPolicy.allowExternal }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 26 07:50:24 UTC 2024
    - 936 bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_test.go

    	const tcpPort = 79
    	services := []*model.Service{
    		{
    			CreationTime:             tnow.Add(1 * time.Second),
    			Hostname:                 host.Name("test1.com"),
    			DefaultAddress:           wildcardIPv4,
    			AutoAllocatedIPv4Address: "240.240.0.100",
    			Ports: model.PortList{
    				&model.Port{
    					Name:     "tcp",
    					Port:     tcpPort,
    					Protocol: protocol.TCP,
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener.go

    					conflictType = AutoOverTCP
    				} else {
    					// Exit early, listener already exists
    					return
    				}
    			}
    			// Add tcp filter chain, build TCP filter chain first.
    			tcpOpts := buildSidecarOutboundTCPListenerOpts(listenerOpts, virtualServices)
    
    			// Add http filter chain and tcp filter chain to the listener opts
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. tests/integration/pilot/common/routing.go

    kind: Service
    metadata:
      name: {{.Service}}
    spec:
      ports:
      - name: http
        port: {{.Port}}
        targetPort: {{.TargetPort}}
      - name: tcp
        port: {{.TcpPort}}
        targetPort: {{.TcpTargetPort}}
      selector:
        test.istio.io/class: standard
        {{- if .Network }}
        topology.istio.io/network: {{.Network}}
    	{{- end }}
    `, map[string]any{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  6. helm-releases/minio-5.1.0.tgz

    app: {{ template "minio.name" . }} chart: {{ template "minio.chart" . }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} spec: endpointSelector: matchLabels: app: {{ template "minio.name" . }} release: {{ .Release.Name }} ingress: - toPorts: - ports: - port: {{ .Values.minioAPIPort }} protocol: TCP - port: {{ .Values.minioConsolePort }} protocol: TCP {{- if not .Values.networkPolicy.allowExternal }} fromEndpoints: - matchLabels: {{ template "minio.name" . }}-client: "true" {{- end }}...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 03 18:49:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. helm-releases/minio-5.2.0.tgz

    app: {{ template "minio.name" . }} chart: {{ template "minio.chart" . }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} spec: endpointSelector: matchLabels: app: {{ template "minio.name" . }} release: {{ .Release.Name }} ingress: - toPorts: - ports: - port: "{{ .Values.minioAPIPort }}" protocol: TCP - port: "{{ .Values.minioConsolePort }}" protocol: TCP {{- if not .Values.networkPolicy.allowExternal }} fromEndpoints: - matchLabels: {{ template "minio.name" . }}-client: "true" {{- end...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top