Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,166 for port1 (0.23 sec)

  1. pkg/test/framework/components/istio/ingress.go

    			ports = append(ports, int(v.Port()))
    		}
    	}
    	if len(addrs) > 0 {
    		return addrs, ports, nil
    	}
    
    	return nil, nil, fmt.Errorf("failed to get address for port %v", port)
    }
    
    // AddressForPort returns the externally reachable host and port of the component for the given port.
    func (c *ingressImpl) AddressesForPort(port int) ([]string, []int) {
    	addrs, ports, err := c.getAddressesInner(port)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_inbound.go

    			port := model.ServiceInstancePort{
    				ServicePort: &model.Port{
    					Name:     i.Port.Name,
    					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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. pkg/api/pod/warnings_test.go

    			}},
    			expected: []string{
    				`spec.containers[0].ports[2]: duplicate port definition with spec.containers[0].ports[0]`,
    				`spec.containers[1].ports[0]: duplicate port definition with spec.containers[0].ports[0]`,
    				`spec.containers[1].ports[0]: duplicate port definition with spec.containers[0].ports[2]`,
    				`spec.containers[1].ports[1]: duplicate port definition with spec.containers[0].ports[0]`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    	}
    
    	svcPorts := make(model.PortList, 0, len(ports))
    	for name, port := range ports {
    		svcPort := &model.Port{
    			Name:     name,
    			Port:     port,
    			Protocol: convertPortNameToProtocol(name),
    		}
    		svcPorts = append(svcPorts, svcPort)
    	}
    
    	sortPorts(svcPorts)
    	svc.Ports = svcPorts
    	return svc
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  5. tests/fuzz/pilot_model_fuzzer.go

    // Creates a new fuzzed Port slice
    func createPorts(f *fuzz.ConsumeFuzzer) ([]*model.Port, error) {
    	ports := make([]*model.Port, 0, 20)
    	numberOfPorts, err := f.GetInt()
    	if err != nil {
    		return ports, err
    	}
    	// Maximum 20 ports:
    	maxPorts := numberOfPorts % 20
    	if maxPorts == 0 {
    		maxPorts = 1
    	}
    	for i := 0; i < maxPorts; i++ {
    		port, err := createPort(f)
    		if err != nil {
    			return ports, err
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 18:13:06 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. samples/bookinfo/platform/kube/bookinfo-versions.yaml

    metadata:
      name: reviews-v1
    spec:
      ports:
      - port: 9080
        name: http
      selector:
        app: reviews
        version: v1
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: reviews-v2
    spec:
      ports:
      - port: 9080
        name: http
      selector:
        app: reviews
        version: v2
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: reviews-v3
    spec:
      ports:
      - port: 9080
        name: http
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 11 16:27:45 UTC 2022
    - 920 bytes
    - Viewed (0)
  7. pkg/test/echo/cmd/server/main.go

    	rootCmd.PersistentFlags().IntSliceVar(&httpPorts, "port", []int{8080}, "HTTP/1.1 ports")
    	rootCmd.PersistentFlags().IntSliceVar(&grpcPorts, "grpc", []int{7070}, "GRPC ports")
    	rootCmd.PersistentFlags().IntSliceVar(&tcpPorts, "tcp", []int{9090}, "TCP ports")
    	rootCmd.PersistentFlags().IntSliceVar(&udpPorts, "udp", []int{}, "UDP ports")
    	rootCmd.PersistentFlags().IntSliceVar(&hbonePorts, "hbone", []int{}, "HBONE ports")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. manifests/helm-profiles/demo.yaml

        autoscaleEnabled: false
        ports:
        ## You can add custom gateway ports in user values overrides, but it must include those ports since helm replaces.
        # Note that AWS ELB will by default perform health checks on the first port
        # on this list. Setting this to the health check port will ensure that health
        # checks always work. https://github.com/istio/istio/issues/12503
        - port: 15021
          targetPort: 15021
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 06 01:25:34 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. pkg/kube/inject/validate.go

    			port, err := parsePort(portStr)
    			if err != nil {
    				return nil, fmt.Errorf("failed parsing port '%s': %v", portStr, err)
    			}
    			ports = append(ports, port)
    		}
    	}
    	return ports, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. manifests/charts/base/files/profile-demo.yaml

        autoscaleEnabled: false
        ports:
        ## You can add custom gateway ports in user values overrides, but it must include those ports since helm replaces.
        # Note that AWS ELB will by default perform health checks on the first port
        # on this list. Setting this to the health check port will ensure that health
        # checks always work. https://github.com/istio/istio/issues/12503
        - port: 15021
          targetPort: 15021
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top