Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for hasMultipleIOPs (0.11 sec)

  1. operator/pkg/manifest/shared.go

    			stdin = true
    			b, err = io.ReadAll(stdinReader)
    		} else {
    			b, err = os.ReadFile(strings.TrimSpace(fn))
    		}
    		if err != nil {
    			return "", err
    		}
    		multiple := false
    		multiple, err = hasMultipleIOPs(string(b))
    		if err != nil {
    			return "", err
    		}
    		if multiple {
    			return "", fmt.Errorf("input file %s contains multiple IstioOperator CRs, only one per file is supported", fn)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top