Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,735 for port1 (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. tests/integration/iop-integration-test-defaults.yaml

            k8s:
              service:
                ports:
                  ## Default ports
                  - port: 15021
                    targetPort: 15021
                    name: status-port
                  - port: 80
                    targetPort: 8080
                    name: http2
                  - port: 443
                    targetPort: 8443
                    name: https
                    # This is the port where sni routing happens
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 23 23:20:19 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  5. tests/testdata/config/none.yaml

        - port:
            number: 18079
            protocol: TCP
            name: grpc-ping
          defaultEndpoint: 127.0.0.1:28079
    ---
    
    apiVersion: v1
    kind: Service
    metadata:
      name: fortio
      namespace: none
    spec:
      ports:
      - port: 8080 # This is the service port - connect to fortio:8080 as client (using http proxy or in mesh)
        name: http-echo
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/deployment-multi-service-different-ns.yaml

      ports:
        - port: 9080
          name: tcp
          targetPort: 9080
          protocol: TCP
      selector:
        app: conflicting-ports
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: conflicting-ports-1
      namespace: bookinfo2
      labels:
        app: conflicting-ports
    spec:
      ports:
        - port: 9090
          name: http
          targetPort: 9080
          protocol: HTTP
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. manifests/charts/gateways/istio-ingress/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