Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for printDiffsTabular (0.08 sec)

  1. istioctl/pkg/writer/compare/sds/writer.go

    	var err error
    	switch w.output {
    	case JSON:
    		err = w.printDiffsJSON(statuses)
    	case TABULAR:
    		err = w.printDiffsTabular(statuses)
    	}
    	return err
    }
    
    // printDiffsTabular prints the secret in table format
    func (w *sdsWriter) printDiffsTabular(statuses []SecretItemDiff) error {
    	if len(statuses) == 0 {
    		fmt.Fprintln(w.w, "No secrets found to diff.")
    		return nil
    	}
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Oct 28 19:52:53 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top