Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ServiceName (0.18 sec)

  1. tests/integration/ambient/baseline_test.go

    					echotest.
    						New(t, apps.All).
    						// TODO eventually we can do this for uncaptured -> l7
    						FromMatch(match.Not(match.ServiceName(echo.NamespacedName{
    							Name:      "uncaptured",
    							Namespace: apps.Namespace,
    						}))).
    						ToMatch(match.ServiceName(echo.NamespacedName{
    							Name:      "uncaptured",
    							Namespace: apps.Namespace,
    						})).
    						Config(cfg.WithParams(param.Params{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier.go

    		name = name[:chainNameBaseLengthMax-3] + "..."
    	}
    	return name
    }
    
    // servicePortChainNameBase returns the base name for a chain for the given ServicePort.
    // This is something like "HASH-namespace/serviceName/protocol/portName", e.g,
    // "ULMVA6XW-ns1/svc1/tcp/p80".
    func servicePortChainNameBase(servicePortName *proxy.ServicePortName, protocol string) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conversion.go

    			return nil, &ConfigError{Reason: InvalidDestination, Message: "port is required in backendRef"}
    		}
    		if strings.Contains(string(to.Name), ".") {
    			return nil, &ConfigError{Reason: InvalidDestination, Message: "serviceName invalid; the name of the Service must be used, not the hostname."}
    		}
    		hostname := fmt.Sprintf("%s.%s.svc.%s", to.Name, namespace, ctx.Domain)
    		if ctx.Context.GetService(hostname, namespace) == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top