Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsFilePath (0.16 sec)

  1. operator/pkg/helm/helm.go

    // profile format (compiled-in, file, HTTP, etc.).
    func ReadProfileYAML(profile, manifestsPath string) (string, error) {
    	var err error
    	var globalValues string
    
    	// Get global values from profile.
    	switch {
    	case util.IsFilePath(profile):
    		if globalValues, err = readFile(profile); err != nil {
    			return "", err
    		}
    	default:
    		if globalValues, err = LoadValues(profile, manifestsPath); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top