Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for StringVarP (0.27 sec)

  1. istioctl/pkg/precheck/precheck.go

    		fmt.Sprintf("The severity level of precheck at which to display messages. Valid values: %v", diag.GetAllLevelStrings()))
    	cmd.PersistentFlags().StringVarP(&msgOutputFormat, "output", "o", formatting.LogFormat,
    		fmt.Sprintf("Output format: one of %v", formatting.MsgOutputFormatKeys))
    	cmd.PersistentFlags().StringVarP(&fromCompatibilityVersion, "from-version", "f", "",
    		"check changes since the provided version")
    	opts.AttachControlPlaneFlags(cmd)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. istioctl/pkg/kubeinject/kubeinject.go

    	injectCmd.PersistentFlags().StringVar(&valuesFile, "valuesFile", "",
    		"Injection values configuration filename.")
    
    	injectCmd.PersistentFlags().StringVarP(&inFilename, "filename", "f",
    		"", "Input Kubernetes resource filename")
    	injectCmd.PersistentFlags().StringVarP(&outFilename, "output", "o",
    		"", "Modified output Kubernetes resource filename")
    	injectCmd.PersistentFlags().StringVar(&iopFilename, "operatorFileName", "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

    	cmd.PersistentFlags().StringVarP(&c.outputFormat, "output", "o", summaryOutput, "Output format: one of json|yaml|short")
    	cmd.PersistentFlags().StringVar(&c.node, "node", "", "Filter workloads by node field")
    	cmd.PersistentFlags().StringVarP(&c.configDumpFile, "file", "f", "",
    		"Ztunnel config dump JSON file")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. istioctl/pkg/admin/istiodconfig.go

    			"Possible values for <stack-trace-level>: none, error, warn, info, debug")
    	logCmd.PersistentFlags().StringVarP(&outputFormat, "output", "o",
    		outputFormat, "Output format: one of json|yaml|short")
    	return logCmd
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. istioctl/pkg/multicluster/remote_secret.go

    			RemoteSecretAuthTypePlugin))
    	flagset.Var(&o.Type, "type",
    		fmt.Sprintf("Type of the generated secret. supported values = %v", supportedSecretType))
    	flagset.StringVarP(&o.ManifestsPath, "manifests", "d", "", util.ManifestsFlagHelpStr)
    }
    
    func (o *RemoteSecretOptions) prepare(ctx cli.Context) error {
    	o.KubeOptions.prepare(ctx)
    
    	if o.ClusterName != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 01:43:17 UTC 2023
    - 24K bytes
    - Viewed (0)
Back to top