Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for IsValidIPAddress (0.25 sec)

  1. pkg/config/validation/validation.go

    				}
    			}
    		}
    
    		allHostsValid := true
    		for _, virtualHost := range virtualService.Hosts {
    			if err := agent.ValidateWildcardDomain(virtualHost); err != nil {
    				if !netutil.IsValidIPAddress(virtualHost) {
    					errs = AppendValidation(errs, err)
    					allHostsValid = false
    				}
    			} else if appliesToMesh && virtualHost == "*" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  2. istioctl/pkg/workload/workload.go

    			} else if len(ingress.Spec.ExternalIPs) > 0 {
    				ingressIP = ingress.Spec.ExternalIPs[0]
    			}
    			// TODO: add case where the load balancer is a DNS name
    		}
    	}
    
    	var hosts string
    	if netutil.IsValidIPAddress(ingressIP) {
    		hosts = fmt.Sprintf("%s %s\n", ingressIP, IstiodHost(istioNamespace, revision))
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. pilot/pkg/xds/endpoints/endpoint_builder.go

    		// 2. ep.Address can be uds when EndpointPort = 0
    		if ep.Address != "" && ep.EndpointPort != 0 && !netutil.IsValidIPAddress(ep.Address) {
    			return false
    		}
    		// filter out endpoints that don't match the subset
    		if !b.subsetLabels.SubsetOf(ep.Labels) {
    			return false
    		}
    		return true
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener.go

    							// as service entries could have NONE resolution with label selectors for workload
    							// entries (which could technically have hostnames).
    							if !netutil.IsValidIPAddress(instance.Address) {
    								continue
    							}
    							// Skip build outbound listener to the node itself,
    							// as when app access itself by pod ip will not flow through this listener.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top