Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 439 for stringVar (0.32 sec)

  1. cmd/kube-controller-manager/app/options/persistentvolumebindercontroller.go

    	if o == nil {
    		return
    	}
    
    	fs.DurationVar(&o.PVClaimBinderSyncPeriod.Duration, "pvclaimbinder-sync-period", o.PVClaimBinderSyncPeriod.Duration, "The period for syncing persistent volumes and persistent volume claims")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. cmd/kubemark/app/hollow_node.go

    var knownMorphs = sets.NewString("kubelet", "proxy")
    
    func (c *hollowNodeConfig) addFlags(fs *pflag.FlagSet) {
    	fs.StringVar(&c.KubeconfigPath, "kubeconfig", "/kubeconfig/kubeconfig", "Path to kubeconfig file.")
    	fs.StringVar(&c.BootstrapKubeconfigPath, "bootstrap-kubeconfig", "", "Path to bootstrap kubeconfig file.")
    	fs.StringVar(&c.CertDirectory, "cert-dir", "/etc/srv/", "Path to cert directory for bootstraping.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/options/serviceaccountcontroller.go

    }
    
    // AddFlags adds flags related to ServiceAccountController for controller manager to the specified FlagSet
    func (o *SAControllerOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    		return
    	}
    
    	fs.StringVar(&o.ServiceAccountKeyFile, "service-account-private-key-file", o.ServiceAccountKeyFile, "Filename containing a PEM-encoded private RSA or ECDSA key used to sign service account tokens.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  4. tools/docker-builder/main.go

    	rootCmd.Flags().StringVar(&globalArgs.BaseVersion, "base-version", globalArgs.BaseVersion, "base version to use")
    	rootCmd.Flags().StringVar(&globalArgs.BaseImageRegistry, "image-base-registry", globalArgs.BaseImageRegistry, "base image registry to use")
    	rootCmd.Flags().StringVar(&globalArgs.ProxyVersion, "proxy-version", globalArgs.ProxyVersion, "proxy version to use")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. docs/sts/web-identity.go

    }
    
    func init() {
    	flag.StringVar(&stsEndpoint, "sts-ep", "http://localhost:9000", "STS endpoint")
    	flag.StringVar(&configEndpoint, "config-ep",
    		"http://localhost:8080/auth/realms/minio/.well-known/openid-configuration",
    		"OpenID discovery document endpoint")
    	flag.StringVar(&clientID, "cid", "", "Client ID")
    	flag.StringVar(&clientSec, "csec", "", "Client Secret")
    	flag.StringVar(&clientScopes, "cscopes", "openid", "Client Scopes")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 19 09:13:33 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  6. pkg/kubeapiserver/options/authentication.go

    	}
    
    	if o.ClientCert != nil {
    		o.ClientCert.AddFlags(fs)
    	}
    
    	if o.OIDC != nil {
    		fs.StringVar(&o.OIDC.IssuerURL, oidcIssuerURLFlag, o.OIDC.IssuerURL, ""+
    			"The URL of the OpenID issuer, only HTTPS scheme will be accepted. "+
    			"If set, it will be used to verify the OIDC JSON Web Token (JWT).")
    
    		fs.StringVar(&o.OIDC.ClientID, oidcClientIDFlag, o.OIDC.ClientID,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  7. pkg/controlplane/apiserver/options/options.go

    	fs.StringVar(&s.ProxyClientKeyFile, "proxy-client-key-file", s.ProxyClientKeyFile, ""+
    		"Private key for the client certificate used to prove the identity of the aggregator or kube-apiserver "+
    		"when it must call out during a request. This includes proxying requests to a user "+
    		"api-server and calling out to webhook admission plugins.")
    
    	fs.StringVar(&s.PeerCAFile, "peer-ca-file", s.PeerCAFile,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. pkg/env/var.go

    	Deprecated bool
    
    	// The type of the variable's value
    	Type VarType
    
    	// The underlying Go type of the variable
    	GoType string
    }
    
    // StringVar represents a single string environment variable.
    type StringVar struct {
    	Var
    }
    
    // BoolVar represents a single boolean environment variable.
    type BoolVar struct {
    	Var
    }
    
    // IntVar represents a single integer environment variable.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  9. docs/iam/access-manager-plugin.go

    	"bytes"
    	"encoding/json"
    	"flag"
    	"fmt"
    	"io"
    	"log"
    	"net/http"
    	"strings"
    )
    
    var (
    	keyFile  string
    	certFile string
    )
    
    func init() {
    	flag.StringVar(&keyFile, "key-file", "", "Path to TLS cert key file")
    	flag.StringVar(&certFile, "cert-file", "", "Path to TLS cert file")
    }
    
    func writeErrorResponse(w http.ResponseWriter, err error) {
    	w.WriteHeader(http.StatusBadRequest)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 08 17:15:20 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. pkg/kubeapiserver/options/cloudprovider.go

    func (s *CloudProviderOptions) AddFlags(fs *pflag.FlagSet) {
    	fs.StringVar(&s.CloudProvider, "cloud-provider", s.CloudProvider,
    		"The provider for cloud services. Empty string for no provider.")
    	fs.MarkDeprecated("cloud-provider", "will be removed in a future version") // nolint: errcheck
    	fs.StringVar(&s.CloudConfigFile, "cloud-config", s.CloudConfigFile,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 15:50:25 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top