Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Ball (0.18 sec)

  1. istioctl/pkg/root/root.go

    	Scope = log.RegisterScope("cli", "istioctl")
    )
    
    func defaultLogOptions() *log.Options {
    	o := log.DefaultOptions()
    	// Default to warning for everything; we usually don't want logs in istioctl
    	o.SetDefaultOutputLevel("all", log.WarnLevel)
    	// These scopes are too noisy even at warning level
    	o.SetDefaultOutputLevel("validation", log.ErrorLevel)
    	o.SetDefaultOutputLevel("processing", log.ErrorLevel)
    	o.SetDefaultOutputLevel("kube", log.ErrorLevel)
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Mar 26 20:38:10 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  2. operator/cmd/mesh/root.go

    	OperatorRevFlagHelpStr    = `Target revision for the operator.`
    	AllOperatorRevFlagHelpStr = `Remove all versions of Istio operator.`
    	ComponentFlagHelpStr      = "Specify which component to generate manifests for."
    	VerifyCRInstallHelpStr    = "Verify the Istio control plane after installation/in-place upgrade"
    )
    
    type RootArgs struct {
    	// DryRun performs all steps except actually applying the manifests or creating output dirs/files.
    	DryRun bool
    }
    
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  3. cni/pkg/cmd/root.go

    	registerStringParameter(constants.RepairNodeName, "", "The name of the managed node (will manage all nodes if unset)")
    	registerStringParameter(constants.RepairSidecarAnnotation, "sidecar.istio.io/status",
    		"An annotation key that indicates this pod contains an istio sidecar. All pods without this annotation will be ignored."+
    			"The value of the annotation is ignored.")
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 11 21:42:29 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  4. istioctl/cmd/root.go

    	hideInheritedFlags(validateCmd, "kubeconfig")
    	rootCmd.AddCommand(validateCmd)
    
    	rootCmd.AddCommand(optionsCommand(rootCmd))
    
    	// BFS applies the flag error function to all subcommands
    	seenCommands := make(map[*cobra.Command]bool)
    	var commandStack []*cobra.Command
    
    	commandStack = append(commandStack, rootCmd)
    
    	for len(commandStack) > 0 {
    		n := len(commandStack) - 1
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 11 20:51:30 GMT 2024
    - 10K bytes
    - Viewed (0)
Back to top