Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 439 for stringVar (0.14 sec)

  1. pilot/cmd/pilot-discovery/app/cmd.go

    		"Discovery service HTTP address")
    	c.PersistentFlags().StringVar(&serverArgs.ServerOptions.HTTPSAddr, "httpsAddr", ":15017",
    		"Injection and validation service HTTPS address")
    	c.PersistentFlags().StringVar(&serverArgs.ServerOptions.GRPCAddr, "grpcAddr", ":15010",
    		"Discovery service gRPC address")
    	c.PersistentFlags().StringVar(&serverArgs.ServerOptions.SecureGRPCAddr, "secureGRPCAddr", ":15012",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. pkg/test/echo/cmd/client/main.go

    	rootCmd.PersistentFlags().StringVar(&uds, "uds", "",
    		"Specify the Unix Domain Socket to connect to")
    	rootCmd.PersistentFlags().StringSliceVarP(&headers, "header", "H", headers,
    		"A list of http headers (use Host for authority) - 'name: value', following curl syntax")
    	rootCmd.PersistentFlags().StringVar(&caFile, "ca", "", "CA root cert file")
    	rootCmd.PersistentFlags().StringVar(&msg, "msg", "HelloWorld",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/options/generic.go

    func AddKubeConfigDirFlag(fs *pflag.FlagSet, kubeConfigDir *string) {
    	fs.StringVar(kubeConfigDir, KubeconfigDir, *kubeConfigDir, "The path where to save the kubeconfig file.")
    }
    
    // AddConfigFlag adds the --config flag to the given flagset
    func AddConfigFlag(fs *pflag.FlagSet, cfgPath *string) {
    	fs.StringVar(cfgPath, CfgPath, *cfgPath, "Path to a kubeadm configuration file.")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. operator/cmd/mesh/operator-dump.go

    	cmd.PersistentFlags().StringVar(&args.common.operatorNamespace, "operatorNamespace", operatorDefaultNamespace, OperatorNamespaceHelpstr)
    	cmd.PersistentFlags().StringVarP(&args.common.manifestsPath, "charts", "", "", ChartsDeprecatedStr)
    	cmd.PersistentFlags().StringVarP(&args.common.manifestsPath, "manifests", "d", "", ManifestsFlagHelpStr)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/config_flags.go

    	if f.KubeConfig != nil {
    		flags.StringVar(f.KubeConfig, "kubeconfig", *f.KubeConfig, "Path to the kubeconfig file to use for CLI requests.")
    	}
    	if f.CacheDir != nil {
    		flags.StringVar(f.CacheDir, flagCacheDir, *f.CacheDir, "Default cache directory")
    	}
    
    	// add config options
    	if f.CertFile != nil {
    		flags.StringVar(f.CertFile, flagCertFile, *f.CertFile, "Path to a client certificate file for TLS")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 11 15:04:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/options/csrsigningcontroller.go

    	if o == nil {
    		return
    	}
    
    	fs.StringVar(&o.ClusterSigningCertFile, "cluster-signing-cert-file", o.ClusterSigningCertFile, "Filename containing a PEM-encoded X509 CA certificate used to issue cluster-scoped certificates.  If specified, no more specific --cluster-signing-* flag may be specified.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 03 06:47:49 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  7. pkg/test/framework/components/istio/flags.go

    )
    
    // init registers the command-line flags that we can exposed for "go test".
    func init() {
    	flag.StringVar(&settingsFromCommandline.SystemNamespace, "istio.test.kube.systemNamespace", settingsFromCommandline.SystemNamespace,
    		"Specifies the namespace where the istiod resides in a typical deployment. Defaults to istio-system")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 31 15:08:52 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. cluster/images/etcd/migrate/options.go

    	flags.StringVar(&opts.ttlKeysDirectory, "ttl-keys-directory", "",
    		"etcd key prefix under which all keys with TTLs are kept. Defaults to <etcd-data-prefix>/events")
    	flags.StringVar(&opts.initialCluster, "initial-cluster", "",
    		"comma separated list of name=endpoint pairs. If unset fallbacks to INITIAL_CLUSTER and if unset defaults to <etcd-name>=https://localhost:<peer-port>.")
    	flags.StringVar(&opts.targetVersion, "target-version", "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 09:59:52 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. docs/debugging/s3-verify/main.go

    	flag.StringVar(&targetEndpoint, "target-endpoint", "https://play.min.io", "S3 endpoint URL")
    	flag.StringVar(&targetAccessKey, "target-access-key", "Q3AM3UQ867SPQQA43P2F", "S3 Access Key")
    	flag.StringVar(&targetSecretKey, "target-secret-key", "zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG", "S3 Secret Key")
    	flag.StringVar(&targetBucket, "target-bucket", "", "Select a specific bucket")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 22 15:12:47 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  10. docs/debugging/s3-check-md5/main.go

    	return hash.Sum(nil)
    }
    
    func main() {
    	flag.StringVar(&endpoint, "endpoint", "https://play.min.io", "S3 endpoint URL")
    	flag.StringVar(&accessKey, "access-key", "Q3AM3UQ867SPQQA43P2F", "S3 Access Key")
    	flag.StringVar(&secretKey, "secret-key", "zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG", "S3 Secret Key")
    	flag.StringVar(&bucket, "bucket", "", "Select a specific bucket")
    	flag.StringVar(&prefix, "prefix", "", "Select a prefix")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 17 01:15:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top