Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,735 for port1 (0.05 sec)

  1. pkg/test/framework/components/echo/kube/testdata/multiple-istio-versions.yaml

              - --grpc=7070
              - --port=8090
              - --port=8080
              - --port=3333
              - --version=bar
              - --istio-version=1.9.0
              - --crt=/cert.crt
              - --key=/cert.key
            ports:
            - containerPort: 7070
            - containerPort: 8090
            - containerPort: 8080
            - containerPort: 3333
              name: tcp-health-port
            env:
            - name: INSTANCE_IP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. pkg/registry/core/service/portallocator/operation.go

    		}
    
    		// Try to find the next non allocated port.
    		// If too many ports are full, just reuse one,
    		// since this is just a dummy value.
    		for port := lastPort + 1; port < 100; port++ {
    			err := op.Allocate(port)
    			if err == nil {
    				return port, nil
    			}
    		}
    		op.allocated = append(op.allocated, lastPort+1)
    		return lastPort + 1, nil
    	}
    
    	port, err := op.pa.AllocateNext()
    	if err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/ztunnel/configdump/testdata/dump.json

              "address": "/10.244.2.8",
              "port": {
                "443": 8443
              }
            }
          },
          "subjectAltNames": []
        },
        "/10.96.198.255": {
          "name": "productpage",
          "namespace": "default",
          "hostname": "productpage.default.svc.cluster.local",
          "vips": [
            "/10.96.198.255"
          ],
          "ports": {
            "9080": 9080
          },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/input/gateways.yaml

              service:
                ports:
                ## You can add custom gateway ports - google ILB default quota is 5 ports,
                - port: 15011
                  name: grpc-pilot-mtls
                - port: 8060
                  targetPort: 8060
                  name: tcp-citadel-grpc-tls
                # Port 5353 is forwarded to kube-dns
                - port: 5353
                  name: tcp-dns
              overlays:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. samples/addons/jaeger.yaml

      name: zipkin
      namespace: istio-system
    spec:
      ports:
        - port: 9411
          targetPort: 9411
          name: http-query
      selector:
        app: jaeger
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: jaeger-collector
      namespace: istio-system
      labels:
        app: jaeger
    spec:
      type: ClusterIP
      ports:
      - name: jaeger-collector-http
        port: 14268
        targetPort: 14268
        protocol: TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. samples/ratelimit/rate-limit-service.yaml

            name: redis
            ports:
            - name: redis
              containerPort: 6379
          restartPolicy: Always
          serviceAccountName: ""
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: ratelimit
      labels:
        app: ratelimit
    spec:
      ports:
      - name: http-port
        port: 8080
        targetPort: 8080
        protocol: TCP
      - name: grpc-port
        port: 8081
        targetPort: 8081
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    						// Not a named port
    						80: {PortName: "80"},
    						// Named port found in WE
    						81: {PortName: "81", TargetPortName: "81-target"},
    						// Named port target found in WE
    						82: {PortName: "82", TargetPortName: "82-target"},
    						// Named port not found in WE
    						83: {PortName: "83", TargetPortName: "83-target"},
    					},
    					LabelSelector: model.NewSelector(map[string]string{"app": "foo"}),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/kube/testdata/healthcheck-rewrite.yaml

                path: /
                port: 8080
              initialDelaySeconds: 1
              periodSeconds: 2
              failureThreshold: 10
            livenessProbe:
              tcpSocket:
                port: tcp-health-port
              initialDelaySeconds: 10
              periodSeconds: 10
              failureThreshold: 10
            startupProbe:
              tcpSocket:
                port: tcp-health-port
              periodSeconds: 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. samples/tcp-echo/src/main.go

    func main() {
    	if len(os.Args) != 3 {
    		fmt.Println("you should run it like: 'main [PORTS...] prefix' , please notice PORTS are comma-delineated , like  port 1[,port 2]  ")
    		os.Exit(1)
    	}
    	// obtain the port and prefix via program arguments
    	ports := strings.Split(os.Args[1], ",")
    	prefix := os.Args[2]
    	for _, port := range ports {
    		addr := fmt.Sprintf(":%s", port)
    		go serve(addr, prefix)
    	}
    	ch := make(chan struct{})
    	<-ch
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 10 19:10:51 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/mock/discovery.go

    				Port:     80, // target port 80
    				Protocol: protocol.HTTP,
    			}, {
    				Name:     "http-status",
    				Port:     81, // target port 1081
    				Protocol: protocol.HTTP,
    			}, {
    				Name:     "custom",
    				Port:     90, // target port 1090
    				Protocol: protocol.TCP,
    			}, {
    				Name:     "mongo",
    				Port:     100, // target port 1100
    				Protocol: protocol.Mongo,
    			}, {
    				Name:     "redis",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 18:40:05 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top