Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for validateStatusPort (0.15 sec)

  1. pkg/kube/inject/validate.go

    func ValidateExcludeOutboundPorts(ports string) error {
    	return validatePortList("excludeOutboundPorts", ports)
    }
    
    // validateStatusPort validates the statusPort parameter
    func validateStatusPort(port string) error {
    	if _, e := parsePort(port); e != nil {
    		return fmt.Errorf("excludeInboundPorts invalid: %v", e)
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top