Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 154 for Port (0.04 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    						},
    					},
    					PortNames: map[int32]model.ServicePortName{
    						// 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"},
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. manifests/charts/gateway/values.yaml

        # Type of service. Set to "None" to disable the service entirely
        type: LoadBalancer
        ports:
        - name: status-port
          port: 15021
          protocol: TCP
          targetPort: 15021
        - name: http2
          port: 80
          protocol: TCP
          targetPort: 80
        - name: https
          port: 443
          protocol: TCP
          targetPort: 443
        annotations: {}
        loadBalancerIP: ""
        loadBalancerSourceRanges: []
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 16:51:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. tests/integration/ambient/baseline_test.go

    	callOptions   = []echo.CallOptions{
    		{
    			Port:   echo.Port{Name: "http"},
    			Scheme: scheme.HTTP,
    			Count:  10, // TODO use more
    		},
    		//{
    		//	Port: echo.Port{Name: "http"},
    		//	Scheme:   scheme.WebSocket,
    		//	Count:    4,
    		//	Timeout:  time.Second * 2,
    		//},
    		{
    			Port:   echo.Port{Name: "tcp"},
    			Scheme: scheme.TCP,
    			Count:  1,
    		},
    		//{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  4. samples/addons/kiali.yaml

              capabilities:
                drop:
                - ALL
            ports:
            - name: api-port
              containerPort: 20001
            - name: http-metrics
              containerPort: 9090
            readinessProbe:
              httpGet:
                path: /kiali/healthz
                port: api-port
                scheme: HTTP
              initialDelaySeconds: 5
              periodSeconds: 30
            livenessProbe:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. samples/addons/extras/zipkin.yaml

                httpGet:
                  path: /health
                  port: 9411
                initialDelaySeconds: 5
                periodSeconds: 5
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: tracing
      namespace: istio-system
      labels:
        app: zipkin
    spec:
      type: ClusterIP
      ports:
        - name: http-query
          port: 80
          protocol: TCP
          targetPort: 9411
      selector:
        app: zipkin
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. tests/integration/telemetry/api/dashboard_test.go

      - echo-gateway
      http:
      - match:
        - uri:
            exact: /echo-%s
        route:
        - destination:
            host: b
            port:
              number: 80
      tcp:
      - match:
        - port: 31400
        route:
        - destination:
            host: b
            port:
              number: 9090
    `
    
    func setupDashboardTest(done <-chan struct{}) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    		return InboundBinding{}
    	}
    
    	// parse port
    	port := uint32(0)
    	if len(parts) == 2 {
    		parsed, err := strconv.ParseUint(parts[1], 10, 32)
    		if err != nil {
    			log.Warnf("invalid port %s for %s.", parts[1], constants.AmbientWaypointInboundBinding)
    		}
    		port = uint32(parsed)
    	}
    
    	return InboundBinding{
    		Port:     port,
    		Protocol: protocol,
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_builder_test.go

    	t.Helper()
    	for port, expect := range expected {
    		got := xdstest.EvaluateListenerFilterPredicates(predicate, port)
    		if got != expect {
    			t.Errorf("expected port %v to have match=%v, got match=%v", port, expect, got)
    		}
    	}
    }
    
    func TestSidecarInboundListenerFilters(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/types.go

    const DefaultBindAllHostIP = "0.0.0.0"
    
    // ProtocolPort represents a protocol port pair, e.g. tcp:80.
    type ProtocolPort struct {
    	Protocol string
    	Port     int32
    }
    
    // NewProtocolPort creates a ProtocolPort instance.
    func NewProtocolPort(protocol string, port int32) *ProtocolPort {
    	pp := &ProtocolPort{
    		Protocol: protocol,
    		Port:     port,
    	}
    
    	if len(pp.Protocol) == 0 {
    		pp.Protocol = string(v1.ProtocolTCP)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  10. pilot/pkg/simulation/traffic.go

    	}
    	// First find exact match for the IP/Port, then fallback to wildcard IP/Port
    	// There is no wildcard port
    	for _, l := range listeners {
    		if matchAddress(l.GetAddress(), input.Address, input.Port) {
    			return l
    		}
    	}
    	for _, l := range listeners {
    		if matchAddress(l.GetAddress(), "0.0.0.0", input.Port) {
    			return l
    		}
    	}
    
    	// Fallback to the outbound listener
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top