Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for portNames (0.15 sec)

  1. pkg/proxy/endpointslicecache.go

    			if port.Name == nil {
    				klog.ErrorS(nil, "Ignoring port with nil name", "portName", port.Name)
    				continue
    			}
    			// TODO: handle nil ports to mean "all"
    			if port.Port == nil || *port.Port == int32(0) {
    				klog.ErrorS(nil, "Ignoring invalid endpoint port", "portName", *port.Name)
    				continue
    			}
    
    			svcPortName := ServicePortName{
    				NamespacedName: serviceNN,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. pilot/pkg/model/gateway_test.go

    	if !hosts.Equals(expectedHosts) {
    		t.Errorf("expected to get: [a.apps.svc.cluster.local,b.apps.svc.cluster.local], got: %s", hosts.String())
    	}
    }
    
    func makeConfig(name, namespace, host, portName, portProtocol string, portNumber uint32, gw string, bind string,
    	mode networking.ServerTLSSettings_TLSmode,
    ) config.Config {
    	c := config.Config{
    		Meta: config.Meta{
    			Name:      name,
    			Namespace: namespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 02:36:23 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/envoyfilter/rc_patch.go

    	}
    
    	// This is a gateway. Get all the fields in the gateway's RDS route name
    	routePortNumber, portName, gateway := model.ParseGatewayRDSRouteName(rc.Name)
    	if rMatch.PortNumber != 0 && !anyPortMatches(portMap, routePortNumber, int(rMatch.PortNumber)) {
    		return false
    	}
    	if rMatch.PortName != "" && rMatch.PortName != portName {
    		return false
    	}
    	if rMatch.Gateway != "" && rMatch.Gateway != gateway {
    		return false
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationProvider.kt

            val ktFile: KtFile = ktFileStub.psi
            addToFacadeFileMap(ktFile)
    
            val partNames = ktFileStub.facadePartSimpleNames
            if (partNames != null) {
                val packageFqName = ktFileStub.getPackageFqName()
                for (partName in partNames) {
                    val multiFileClassPartFqName: FqName = packageFqName.child(Name.identifier(partName))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. pilot/pkg/model/gateway.go

    // (https.<portNumber>.<portName>.<gatewayName>.<namespace>) so that when a RDS request comes in, we serve the virtual
    // hosts and associated routes for that server.
    //
    // Note that the common case is one where multiple servers are exposed under a single multi-SAN cert on a single port.
    // In this case, we have a single https.<portNumber>.<portName>.<gatewayName>.<namespace> RDS for the HTTPS server.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. tests/integration/telemetry/policy/helper_test.go

        network: external
      ports:
      - number: 80
        name: http
      resolution: DNS
    `
    )
    
    // TestCase represents what is being tested
    type TestCase struct {
    	Name     string
    	PortName string
    	HTTP2    bool
    	Host     string
    	Expected Expected
    }
    
    // Expected contains the metric and query to run against
    // prometheus to validate that expected telemetry information was gathered;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    			for _, port := range slice.Ports {
    				var portNum int32
    				if port.Port != nil {
    					portNum = *port.Port
    				}
    				var portName string
    				if port.Name != nil {
    					portName = *port.Name
    				}
    
    				istioEndpoint := builder.buildIstioEndpoint(a, portNum, portName, discoverabilityPolicy, healthStatus)
    				endpoints = append(endpoints, istioEndpoint)
    			}
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. tests/integration/security/authz_test.go

    	b.from = from
    	return b
    }
    
    func (b *authzTest) To(to echo.Target) *authzTest {
    	b.opts.To = to
    	return b
    }
    
    func (b *authzTest) PortName(portName string) *authzTest {
    	b.opts.Port.Name = portName
    	return b
    }
    
    func (b *authzTest) Method(method string) *authzTest {
    	b.opts.HTTP.Method = method
    	return b
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster.go

    	sidecarScope := proxy.SidecarScope
    	for _, ingressListener := range sidecarScope.Sidecar.Ingress {
    		// LDS would have setup the inbound clusters
    		// as inbound|portNumber|portName|Hostname[or]SidecarScopeID
    		listenPort := &model.Port{
    			Port:     int(ingressListener.Port.Number),
    			Protocol: protocol.Parse(ingressListener.Port.Protocol),
    			Name:     ingressListener.Port.Name,
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  10. pilot/pkg/xds/eds_test.go

    			},
    		})
    	}
    }
    
    // nolint: unparam
    func addEdsCluster(s *xdsfake.FakeDiscoveryServer, hostName string, portName string, address string, port int) {
    	svc := &model.Service{
    		Hostname: host.Name(hostName),
    		Ports: model.PortList{
    			{
    				Name:     portName,
    				Port:     port,
    				Protocol: protocol.HTTP,
    			},
    		},
    	}
    	s.MemRegistry.AddService(svc)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
Back to top