Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,708 for PORT (0.03 sec)

  1. pilot/pkg/serviceregistry/kube/conversion.go

    	"istio.io/istio/pkg/config/visibility"
    	"istio.io/istio/pkg/spiffe"
    	"istio.io/istio/pkg/util/sets"
    )
    
    func convertPort(port corev1.ServicePort) *model.Port {
    	return &model.Port{
    		Name:     port.Name,
    		Port:     int(port.Port),
    		Protocol: kube.ConvertProtocol(port.Port, port.Name, port.Protocol, port.AppProtocol),
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. pkg/proxy/healthcheck/service_health.go

    			continue
    		}
    
    		klog.V(2).InfoS("Opening healthcheck", "service", nsn, "port", port)
    
    		svc := &hcInstance{nsn: nsn, port: port}
    		err := svc.listenAndServeAll(hcs)
    
    		if err != nil {
    			msg := fmt.Sprintf("node %s failed to start healthcheck %q on port %d: %v", hcs.hostname, nsn.String(), port, err)
    
    			if hcs.recorder != nil {
    				hcs.recorder.Eventf(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 30 09:25:48 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. pkg/client/tests/portfoward_test.go

    		for port, expected := range expectedFromClient {
    			actual, ok := pf.received[port]
    			if !ok {
    				t.Errorf("%s: server didn't receive any data for port %d", testName, port)
    				continue
    			}
    
    			if expected != actual {
    				t.Errorf("%s: server expected to receive %q, got %q for port %d", testName, expected, actual, port)
    			}
    		}
    
    		for port, actual := range pf.received {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 06:08:18 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/gateway_simulation_test.go

    			name: "multiple target port, target port first",
    			config: createGateway("gateway80", "", `
    port:
      number: 80
      name: http
      protocol: HTTP
    hosts:
    - "example.com"
    `) + createGateway("gateway8081", "", `
    port:
      number: 8081
      name: http
      protocol: HTTP
    hosts:
    - "example.com"
    `) + `
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: service-instance
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  5. pkg/test/echo/server/endpoint/util.go

    	return ln, port, nil
    }
    
    func listenOnAddressTLS(ip string, port int, cfg *tls.Config) (net.Listener, int, error) {
    	ipBind := "tcp"
    	parsedIP := net.ParseIP(ip)
    	if parsedIP != nil {
    		if parsedIP.To4() == nil && parsedIP.To16() != nil {
    			ipBind = "tcp6"
    		} else if parsedIP.To4() != nil {
    			ipBind = "tcp4"
    		}
    	}
    	ln, err := tls.Listen(ipBind, net.JoinHostPort(ip, strconv.Itoa(port)), cfg)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/common/ports/ports.go

    )
    
    // Port names.
    var (
    	HTTP             = echo.Port{Name: "http", Protocol: protocol.HTTP, ServicePort: 80, WorkloadPort: 18080}
    	GRPC             = echo.Port{Name: "grpc", Protocol: protocol.GRPC, ServicePort: 7070, WorkloadPort: 17070}
    	HTTP2            = echo.Port{Name: "http2", Protocol: protocol.HTTP, ServicePort: 85, WorkloadPort: 18085}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 08 16:17:34 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/ingress/testdata/simple.yaml

                name: service1
                port:
                  number: 4200
            # Subpath without trailing /
          - path: /sub/path
            backend:
              service:
                name: service1
                port:
                  number: 4201
          # With a trailing /
          - path: /sub/path/
            backend:
              service:
                name: service1
                port:
                  number: 4202
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 16:43:09 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. pkg/test/echo/server/endpoint/tcp.go

    		// Store the actual listening port back to the argument.
    		s.Port.Port = port
    	} else {
    		// Listen on the given port and update the port if it changed from what was passed in.
    		listener, port, err = listenOnAddress(s.ListenerIP, s.Port.Port)
    		// Store the actual listening port back to the argument.
    		s.Port.Port = port
    	}
    	if err != nil {
    		return err
    	}
    
    	s.l = listener
    	if s.Port.TLS {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 16:20:31 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/virtualservice_dupmatches.yaml

      - "*"
      gateways:
      - tcp-echo-gateway
      tcp:
      - match:
        - port: 31400
        route:
        - destination:
            host: tcp-echo
            port:
              number: 9000
            subset: v1
      - match:
        - port: 31400
        - port: 31401
        route:
        - destination:
            host: tcp-echo
            port:
              number: 9000
            subset: v2
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  10. samples/multicluster/expose-istiod.yaml

      - istiod-gateway
      tls:
      - match:
        - port: 15012
          sniHosts:
          - "*"
        route:
        - destination:
            host: istiod.istio-system.svc.cluster.local
            port:
              number: 15012
      - match:
        - port: 15017
          sniHosts:
          - "*"
        route:
        - destination:
            host: istiod.istio-system.svc.cluster.local
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 22 16:29:16 UTC 2021
    - 967 bytes
    - Viewed (0)
Back to top