kubernetesk8s.io/kubernetes/pkg/util/flag Index | Files

package flag

import "k8s.io/kubernetes/pkg/util/flag"

Index

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

func (v *IPPortVar) Set(s string) error

Set sets the flag value

func (*IPPortVar) String

func (v *IPPortVar) String() string

String returns the flag value

func (*IPPortVar) Type

func (v *IPPortVar) Type() string

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

func (v *IPVar) Set(s string) error

Set sets the flag value

func (*IPVar) String

func (v *IPVar) String() string

String returns the flag value

func (*IPVar) Type

func (v *IPVar) Type() string

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

type RegisterWithTaintsVar

type RegisterWithTaintsVar struct {
	Value *[]v1.Taint
}

RegisterWithTaintsVar is used for validating a command line option that represents a register with taints. It implements the pflag.Value interface

func (RegisterWithTaintsVar) Set

Set sets the flag value

func (RegisterWithTaintsVar) String

func (t RegisterWithTaintsVar) String() string

String returns the flag value

func (RegisterWithTaintsVar) Type

func (t RegisterWithTaintsVar) Type() string

Type gets the flag type

type ReservedMemoryVar

type ReservedMemoryVar struct {
	Value *[]kubeletconfig.MemoryReservation
	// contains filtered or unexported fields
}

ReservedMemoryVar is used for validating a command line option that represents a reserved memory. It implements the pflag.Value interface

func (*ReservedMemoryVar) Set

func (v *ReservedMemoryVar) Set(s string) error

Set sets the flag value

func (*ReservedMemoryVar) String

func (v *ReservedMemoryVar) String() string

String returns the flag value

func (*ReservedMemoryVar) Type

func (v *ReservedMemoryVar) Type() string

Type gets the flag type

Source Files

flags.go

Version
v1.33.0 (latest)
Published
Apr 23, 2025
Platform
linux/amd64
Imports
13 packages
Last checked
3 hours ago

Tools for package owners.