Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 439 for stringVar (0.15 sec)

  1. tools/bug-report/pkg/bugreport/flags.go

    func addFlags(cmd *cobra.Command, args *config2.BugReportConfig) {
    	// k8s client config
    	cmd.PersistentFlags().StringVarP(&args.KubeConfigPath, "kubeconfig", "c", "",
    		"Path to kube config.")
    	cmd.PersistentFlags().StringVar(&args.Context, "context", "",
    		"Name of the kubeconfig Context to use.")
    
    	// input config
    	cmd.PersistentFlags().StringVarP(&configFile, "filename", "f", "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. pkg/kubelet/config/flags.go

    func (s *ContainerRuntimeOptions) AddFlags(fs *pflag.FlagSet) {
    	// General settings.
    	fs.StringVar(&s.RuntimeCgroups, "runtime-cgroups", s.RuntimeCgroups, "Optional absolute name of cgroups to create and run the runtime in.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 03:14:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. docs/sts/ldap.go

    	// Bucket to list
    	bucketToList string
    
    	// Session policy file
    	sessionPolicyFile string
    )
    
    func init() {
    	flag.StringVar(&stsEndpoint, "sts-ep", "http://localhost:9000", "STS endpoint")
    	flag.StringVar(&ldapUsername, "u", "", "AD/LDAP Username")
    	flag.StringVar(&ldapPassword, "p", "", "AD/LDAP Password")
    	flag.BoolVar(&displayCreds, "d", false, "Only show generated credentials")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 4K bytes
    - Viewed (0)
  4. istioctl/pkg/clioptions/central.go

    func (o *CentralControlPlaneOptions) AttachControlPlaneFlags(cmd *cobra.Command) {
    	cmd.PersistentFlags().StringVar(&o.Xds, "xds-address", viper.GetString("XDS-ADDRESS"),
    		"XDS Endpoint")
    	cmd.PersistentFlags().StringVar(&o.CertDir, "cert-dir", viper.GetString("CERT-DIR"),
    		"XDS Endpoint certificate directory")
    	cmd.PersistentFlags().StringVar(&o.XdsPodLabel, "xds-label", "",
    		"Istiod pod label selector")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 06 03:39:27 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  5. pkg/test/echo/cmd/server/main.go

    	rootCmd.PersistentFlags().StringVar(&uds, "uds", "", "HTTP server on unix domain socket")
    	rootCmd.PersistentFlags().StringVar(&version, "version", "", "Version string")
    	rootCmd.PersistentFlags().StringVar(&cluster, "cluster", "", "Cluster where this server is deployed")
    	rootCmd.PersistentFlags().StringVar(&crt, "crt", "", "gRPC TLS server-side certificate")
    	rootCmd.PersistentFlags().StringVar(&key, "key", "", "gRPC TLS server-side key")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/kube/flags.go

    package kube
    
    import "flag"
    
    var (
    	serviceTemplateFile      = "service.yaml"
    	deploymentTemplateFile   = "deployment.yaml"
    	vmDeploymentTemplateFile = "vm_deployment.yaml"
    )
    
    func init() {
    	flag.StringVar(&serviceTemplateFile, "istio.test.echo.kube.template.service", serviceTemplateFile,
    		"Specifies the default template file to be used when generating the Kubernetes Service for an instance of the echo application. "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 16:45:53 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  7. docs/sts/custom-token-identity.go

    	expiryDuration time.Duration
    
    	// Bucket to list
    	bucketToList string
    )
    
    func init() {
    	flag.StringVar(&stsEndpoint, "sts-ep", "http://localhost:9000", "STS endpoint")
    	flag.StringVar(&token, "t", "", "Token to use with AssumeRoleWithCustomToken STS API (required)")
    	flag.StringVar(&roleArn, "r", "", "RoleARN to use with the request (required)")
    	flag.BoolVar(&displayCreds, "d", false, "Only show generated credentials")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  8. docs/sts/client-grants.go

    	clientID     string
    	clientSecret string
    )
    
    func init() {
    	flag.StringVar(&stsEndpoint, "sts-ep", "http://localhost:9000", "STS endpoint")
    	flag.StringVar(&idpEndpoint, "idp-ep", "http://localhost:8080/auth/realms/minio/protocol/openid-connect/token", "IDP token endpoint")
    	flag.StringVar(&clientID, "cid", "", "Client ID")
    	flag.StringVar(&clientSecret, "csec", "", "Client secret")
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 19 01:35:22 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  9. cmd/kube-proxy/app/init_windows.go

    	fs.BoolVar(&o.WindowsService, "windows-service", o.WindowsService, "Enable Windows Service Control Manager API integration")
    	fs.StringVar(&o.config.Winkernel.SourceVip, "source-vip", o.config.Winkernel.SourceVip, "The IP address of the source VIP for non-DSR.")
    	fs.StringVar(&o.config.Winkernel.NetworkName, "network-name", o.config.Winkernel.NetworkName, "The name of the cluster network.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:41:55 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. pkg/log/options.go

    	o.AttachFlags(
    		cmd.PersistentFlags().StringArrayVar,
    		cmd.PersistentFlags().StringVar,
    		cmd.PersistentFlags().IntVar,
    		cmd.PersistentFlags().BoolVar)
    }
    
    // AttachFlags allows attaching of flags through a set of lambda functions.
    func (o *Options) AttachFlags(
    	stringArrayVar func(p *[]string, name string, value []string, usage string),
    	stringVar func(p *string, name string, value string, usage string),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top