client-gok8s.io/client-go/1.4/pkg/util Index | Files | Directories

package util

import "k8s.io/client-go/1.4/pkg/util"

Package util implements various utility functions used in both testing and implementation of Kubernetes. Package util may not depend on any other package in the Kubernetes package tree.

Index

Functions

func AllPtrFieldsNil

func AllPtrFieldsNil(obj interface{}) bool

Tests whether all pointer fields in a struct are nil. This is useful when, for example, an API struct is handled by plugins which need to distinguish "no plugin accepted this spec" from "this spec is empty".

This function is only valid for structs and pointers to structs. Any other type will cause a panic. Passing a typed nil pointer will return true.

func CompileRegexps

func CompileRegexps(regexpStrings []string) ([]*regexp.Regexp, error)

Takes a list of strings and compiles them into a list of regular expressions

func ExecuteTemplate

func ExecuteTemplate(w io.Writer, templateText string, data interface{}) error

ExecuteTemplate executes templateText with data and output written to w.

func ExecuteTemplateToString

func ExecuteTemplateToString(templateText string, data interface{}) (string, error)

func FileExists

func FileExists(filename string) (bool, error)

func Int32Ptr

func Int32Ptr(i int32) *int32

Int32Ptr returns a pointer to an int32

func Int32PtrDerefOr

func Int32PtrDerefOr(ptr *int32, def int32) int32

Int32PtrDerefOr dereference the int32 ptr and returns it i not nil, else returns def.

func IntPtr

func IntPtr(i int) *int

IntPtr returns a pointer to an int

func IntPtrDerefOr

func IntPtrDerefOr(ptr *int, def int) int

IntPtrDerefOr dereference the int ptr and returns it i not nil, else returns def.

func ReadDirNoExit

func ReadDirNoExit(dirname string) ([]os.FileInfo, []error, error)

borrowed from ioutil.ReadDir ReadDir reads the directory named by dirname and returns a list of directory entries, minus those with lstat errors

func Umask

func Umask(mask int) (old int, err error)

func UsingSystemdInitSystem

func UsingSystemdInitSystem() bool

Detects if using systemd as the init system Please note that simply reading /proc/1/cmdline can be misleading because some installation of various init programs can automatically make /sbin/init a symlink or even a renamed version of their main program. TODO(dchen1107): realiably detects the init system using on the system: systemd, upstart, initd, etc.

Types

type StringFlag

type StringFlag struct {
	// contains filtered or unexported fields
}

StringFlag is a string flag compatible with flags and pflags that keeps track of whether it had a value supplied or not.

func NewStringFlag

func NewStringFlag(defaultVal string) StringFlag

func (*StringFlag) Default

func (f *StringFlag) Default(value string)

func (StringFlag) Provided

func (f StringFlag) Provided() bool

func (*StringFlag) Set

func (f *StringFlag) Set(value string) error

func (StringFlag) String

func (f StringFlag) String() string

func (*StringFlag) Type

func (f *StringFlag) Type() string

func (StringFlag) Value

func (f StringFlag) Value() string

type Trace

type Trace struct {
	// contains filtered or unexported fields
}

func NewTrace

func NewTrace(name string) *Trace

func (*Trace) Log

func (t *Trace) Log()

func (*Trace) LogIfLong

func (t *Trace) LogIfLong(threshold time.Duration)

func (*Trace) Step

func (t *Trace) Step(msg string)

func (*Trace) TotalTime

func (t *Trace) TotalTime() time.Duration

Source Files

doc.go string_flag.go template.go trace.go umask.go util.go

Directories

PathSynopsis
1.4/pkg/util/clock
1.4/pkg/util/configPackage config provides utility objects for decoupling sources of configuration and the actual configuration state.
1.4/pkg/util/crypto
1.4/pkg/util/diff
1.4/pkg/util/errorsPackage errors implements various utility functions and types around errors.
1.4/pkg/util/flowcontrol
1.4/pkg/util/framerPackage framer implements simple frame decoding techniques for an io.ReadCloser
1.4/pkg/util/hash
1.4/pkg/util/homedir
1.4/pkg/util/httpstreamPackage httpstream adds multiplexed streaming support to HTTP requests and responses via connection upgrades.
1.4/pkg/util/integer
1.4/pkg/util/intstrPackage intstr is a generated protocol buffer package.
1.4/pkg/util/json
1.4/pkg/util/labelsPackage labels provides utilities to work with Kubernetes labels.
1.4/pkg/util/net
1.4/pkg/util/net/sets
1.4/pkg/util/parsers
1.4/pkg/util/randPackage rand provides utilities related to randomization.
1.4/pkg/util/runtime
1.4/pkg/util/setsPackage sets has auto-generated set types.
1.4/pkg/util/strategicpatch
1.4/pkg/util/testing
1.4/pkg/util/uuid
1.4/pkg/util/validation
1.4/pkg/util/validation/field
1.4/pkg/util/waitPackage wait provides tools for polling or listening for changes to a condition.
1.4/pkg/util/yaml
Version
v1.4.0
Published
Oct 17, 2016
Platform
js/wasm
Imports
12 packages
Last checked
2 minutes ago

Tools for package owners.