Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 203 for stringTab (0.2 sec)

  1. cmd/kubeadm/app/phases/kubelet/flags.go

    	flagOpts := kubeletFlagsOpts{
    		nodeRegOpts:              nodeReg,
    		pauseImage:               images.GetPauseImage(cfg),
    		registerTaintsUsingFlags: registerTaintsUsingFlags,
    	}
    	stringMap := buildKubeletArgs(flagOpts)
    	argList := kubeadmutil.ArgumentsToCommand(stringMap, nodeReg.KubeletExtraArgs)
    	envFileContent := fmt.Sprintf("%s=%q\n", constants.KubeletEnvFileVariableName, strings.Join(argList, " "))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. cluster/images/etcd-version-monitor/etcd-version-monitor.go

    func registerFlags(fs *pflag.FlagSet) {
    	fs.StringVar(&listenAddress, "listen-address", "localhost:9101", "Address to listen on for serving prometheus metrics")
    	fs.StringVar(&metricsPath, "metrics-path", "/metrics", "Path under which prometheus metrics are to be served")
    	fs.StringVar(&etcdVersionScrapeURI, "etcd-version-scrape-uri", "http://localhost:2379/version", "URI to scrape etcd version info")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 16 06:50:02 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. docs/debugging/xattr/main.go

    	data := make([]byte, 8)
    	binary.LittleEndian.PutUint64(data, value)
    	return xattr.LSet(path, name, data)
    }
    
    func main() {
    	flag.StringVar(&path, "path", "", "path name where the attribute shall be applied")
    	flag.StringVar(&name, "name", "", "attribute name or it can be a wildcard if '.' is specified")
    	flag.Uint64Var(&value, "value", 0, "attribute value expects the value to be uint64")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 29 23:52:41 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/upgrade/diff.go

    	options.AddConfigFlag(cmd.Flags(), &flags.cfgPath)
    	cmd.Flags().StringVar(&flags.apiServerManifestPath, "api-server-manifest", defaultAPIServerManifestPath, "path to API server manifest")
    	cmd.Flags().StringVar(&flags.controllerManagerManifestPath, "controller-manager-manifest", defaultControllerManagerManifestPath, "path to controller manifest")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/kubeconfig.go

    		Args: cobra.NoArgs,
    	}
    
    	options.AddConfigFlag(cmd.Flags(), &cfgPath)
    
    	// Add command specific flags
    	cmd.Flags().StringVar(&token, options.TokenStr, token, "The token that should be used as the authentication mechanism for this kubeconfig, instead of client certificates")
    	cmd.Flags().StringVar(&clientName, "client-name", clientName, "The name of user. It will be used as the CN if client certificates are created")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/init.go

    		&cfg.LocalAPIEndpoint.BindPort, options.APIServerBindPort, cfg.LocalAPIEndpoint.BindPort,
    		"Port for the API Server to bind to.",
    	)
    	flagSet.StringVar(
    		&cfg.NodeRegistration.Name, options.NodeName, cfg.NodeRegistration.Name,
    		`Specify the node name.`,
    	)
    	flagSet.StringVar(
    		&cfg.CertificateKey, options.CertificateKey, "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 03:37:05 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/options/token.go

    	*bootstraptokenv1.BootstrapToken
    	TokenStr string `datapolicy:"token"`
    }
    
    // AddTokenFlag adds the --token flag to the given flagset
    func (bto *BootstrapTokenOptions) AddTokenFlag(fs *pflag.FlagSet) {
    	fs.StringVar(
    		&bto.TokenStr, TokenStr, "",
    		"The token to use for establishing bidirectional trust between nodes and control-plane nodes. The format is [a-z0-9]{6}\\.[a-z0-9]{16} - e.g. abcdef.0123456789abcdef",
    	)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 10:34:21 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modindex/read.go

    )
    
    func (sf *sourceFile) error() string {
    	return sf.d.stringAt(sf.pos + sourceFileError)
    }
    func (sf *sourceFile) parseError() string {
    	return sf.d.stringAt(sf.pos + sourceFileParseError)
    }
    func (sf *sourceFile) synopsis() string {
    	return sf.d.stringAt(sf.pos + sourceFileSynopsis)
    }
    func (sf *sourceFile) name() string {
    	return sf.d.stringAt(sf.pos + sourceFileName)
    }
    func (sf *sourceFile) pkgName() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  9. cmd/kube-scheduler/app/options/deprecated.go

    	fs.StringVar(&o.Kubeconfig, "kubeconfig", "", "DEPRECATED: path to kubeconfig file with authorization and master location information. This parameter is ignored if a config file is specified in --config.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 23 13:24:38 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. cmd/kubelet/app/options/osflags_windows.go

    	// to maintain backwards compatibility.
    	// Source: https://docs.microsoft.com/en-us/windows/win32/procthread/scheduling-priorities
    	fs.StringVar(&f.WindowsPriorityClass, "windows-priorityclass", "NORMAL_PRIORITY_CLASS",
    		"Set the PriorityClass associated with kubelet process, the default ones are available at "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.3K bytes
    - Viewed (0)
Back to top