Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for validatePortNumberString (0.29 sec)

  1. operator/pkg/validate/validate_values.go

    	"global.proxy.includeIPRanges":     validateIPRangesOrStar,
    	"global.proxy.excludeIPRanges":     validateIPRangesOrStar,
    	"global.proxy.includeInboundPorts": validateStringList(validatePortNumberString),
    	"global.proxy.excludeInboundPorts": validateStringList(validatePortNumberString),
    	"meshConfig":                       validateMeshConfig,
    }
    
    // CheckValues validates the values in the given tree, which follows the Istio values.yaml schema.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  2. operator/pkg/validate/common.go

    		}
    		logWithError(errs.ToError(), msg)
    		return errs
    	}
    }
    
    // validatePortNumberString checks if val is a string with a valid port number.
    func validatePortNumberString(path util.Path, val any) util.Errors {
    	scope.Debugf("validatePortNumberString %v:", val)
    	if !util.IsString(val) {
    		return util.NewErrs(fmt.Errorf("validatePortNumberString(%s) bad type %T, want string", path, val))
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top