Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for addProfileDiffFlags (0.21 sec)

  1. operator/cmd/mesh/profile.go

    	pdfc := profileDiffCmd(pdfArgs)
    
    	addFlags(pc, args)
    	addFlags(plc, args)
    	addFlags(pdc, args)
    	addFlags(pdfc, args)
    
    	addProfileDumpFlags(pdc, pdArgs)
    	addProfileListFlags(plc, plArgs)
    	addProfileDiffFlags(pdfc, pdfArgs)
    
    	pc.AddCommand(plc)
    	pc.AddCommand(pdc)
    	pc.AddCommand(pdfc)
    
    	return pc
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  2. operator/cmd/mesh/profile-diff.go

    )
    
    type profileDiffArgs struct {
    	// manifestsPath is a path to a charts and profiles directory in the local filesystem with a release tgz.
    	manifestsPath string
    }
    
    func addProfileDiffFlags(cmd *cobra.Command, args *profileDiffArgs) {
    	cmd.PersistentFlags().StringVarP(&args.manifestsPath, "charts", "", "", ChartsDeprecatedStr)
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 3.1K bytes
    - Viewed (0)
Back to top