Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for gatewayName (0.11 sec)

  1. pilot/pkg/model/gateway.go

    						s.Name, gatewayName)
    				}
    			}
    			if s.Port == nil {
    				// Should be rejected in validation, this is an extra check
    				log.Debugf("invalid server without port: %q", gatewayName)
    				RecordRejectedConfig(gatewayName)
    				continue
    			}
    			sanitizeServerHostNamespace(s, gatewayConfig.Namespace)
    			gatewayNameForServer[s] = gatewayName
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    }
    
    func validateGatewayNames(gatewayNames []string, gatewaySemantics bool) (errs Validation) {
    	for _, gatewayName := range gatewayNames {
    		parts := strings.SplitN(gatewayName, "/", 2)
    		if len(parts) != 2 {
    			if strings.Contains(gatewayName, ".") {
    				// Legacy FQDN style
    				parts := strings.Split(gatewayName, ".")
    				recommended := fmt.Sprintf("%s/%s", parts[1], parts[0])
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top