Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for StringVarP (0.15 sec)

  1. pkg/test/echo/cmd/client/main.go

    	rootCmd.PersistentFlags().StringVar(&clientKey, "client-key", "", "client certificate key file to use for request")
    	rootCmd.PersistentFlags().StringSliceVarP(&alpn, "alpn", "", nil, "alpn to set")
    	rootCmd.PersistentFlags().StringVarP(&serverName, "server-name", "", serverName, "server name to set")
    
    	rootCmd.PersistentFlags().StringVar(&hboneAddress, "hbone", "", "address to send HBONE request to")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 8.9K 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/checkinject/checkinject.go

    			return printCheckInjectorResults(cmd.OutOrStdout(), checkResults)
    		},
    		ValidArgsFunction: completion.ValidPodsNameArgs(ctx),
    	}
    	cmd.PersistentFlags().StringVarP(&labelPairs, "labels", "l", "",
    		"Check namespace and label pairs injection status, split multiple labels by commas")
    	return cmd
    }
    
    func printCheckInjectorResults(writer io.Writer, was []webhookAnalysis) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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