package flag
import "k8s.io/kubernetes/pkg/util/flag"
Index ¶
- func PrintFlags(flags *pflag.FlagSet)
- type IPPortVar
- func (v IPPortVar) Set(s string) error
- func (v IPPortVar) String() string
- func (v IPPortVar) Type() string
- type IPVar
- type PortRangeVar
Functions ¶
func PrintFlags ¶
PrintFlags logs the flags in the flagset
Types ¶
type IPPortVar ¶
type IPPortVar struct { Val *string }
IPPortVar is used for validating a command line option that represents an IP and a port. It implements the pflag.Value interface
func (IPPortVar) Set ¶
Set sets the flag value
func (IPPortVar) String ¶
String returns the flag value
func (IPPortVar) Type ¶
Type gets the flag type
type IPVar ¶
type IPVar struct { Val *string }
IPVar is used for validating a command line option that represents an IP. It implements the pflag.Value interface
func (IPVar) Set ¶
Set sets the flag value
func (IPVar) String ¶
String returns the flag value
func (IPVar) Type ¶
Type gets the flag type
type PortRangeVar ¶
type PortRangeVar struct { Val *string }
PortRangeVar is used for validating a command line option that represents a port range. It implements the pflag.Value interface
func (PortRangeVar) Set ¶
func (v PortRangeVar) Set(s string) error
Set sets the flag value
func (PortRangeVar) String ¶
func (v PortRangeVar) String() string
String returns the flag value
func (PortRangeVar) Type ¶
func (v PortRangeVar) Type() string
Type gets the flag type
Source Files ¶
flags.go
- Version
- v1.14.6
- Published
- Aug 16, 2019
- Platform
- js/wasm
- Imports
- 6 packages
- Last checked
- 51 seconds ago –
Tools for package owners.