Documentation ¶
Index ¶
- func BindFlags(flags *pflag.FlagSet) clientcmd.ClientConfig
- func GenIsoImage(isoPath string, volumeID string, srcDir string) error
- func GetBoolFromString(str string) bool
- func GetK8sClientConfig(host string) (*rest.Config, error)
- func GetK8sClientset(config *rest.Config) (*kubernetes.Clientset, error)
- func MapToJSON(m map[string]interface{}) string
- func MapToJSONUnindented(m map[string]interface{}) string
- func Merge(base, override interface{}) interface{}
- func NewUUID() string
- func NewUUID5(nsUUID, s string) string
- func ReadJSON(filename string, v interface{}) error
- func WaitForProcess(procFile string) (int, error)
- func WaitLoop(test func() (bool, error), retryPeriod time.Duration, timeout time.Duration, ...) error
- func WriteFiles(targetDir string, content map[string][]byte) error
- func WriteJSON(filename string, v interface{}, perm os.FileMode) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func BindFlags ¶ added in v1.1.0
func BindFlags(flags *pflag.FlagSet) clientcmd.ClientConfig
BindFlags applies standard Go flags and the flags used by kubeclient to the specified FlagSet.
func GenIsoImage ¶
GenIsoImage generates an ISO 9660 filesystem image containing files from srcDir. It uses specified volumeID as the volume id.
func GetBoolFromString ¶ added in v0.9.0
GetBoolFromString returns false if str is an empty string or is equal to one of: "0", "f" or "false". Case doesnt't matter anythging else is true
func GetK8sClientConfig ¶ added in v0.9.0
GetK8sClientConfig returns config that is needed to access k8s
func GetK8sClientset ¶ added in v0.9.0
func GetK8sClientset(config *rest.Config) (*kubernetes.Clientset, error)
GetK8sClientset returns clientset for standard k8s APIs
func MapToJSON ¶ added in v1.0.0
MapToJSON converts the specified map object to indented JSON. It panics in case if the map connot be converted.
func MapToJSONUnindented ¶ added in v1.0.0
MapToJSONUnindented converts the specified map object to unindented JSON. It panics in case if the map connot be converted.
func Merge ¶ added in v0.9.0
func Merge(base, override interface{}) interface{}
Merge will take two data sets and merge them together - returning a new data set
func ReadJSON ¶ added in v1.0.0
ReadJSON converts data from file specified by `filename` to provided as `v` interface.
func WaitForProcess ¶ added in v0.9.0
WaitForProcess waits for the following conditions to be true at the same time:
- the specified procFile is readable and contains two numeric values separated by space, PID and start time in jiffies (field 22 in /proc/PID/stat, starting from 1)
- the process with the PID read from procFile exists and has start time equal to the start time read from procFile
This avoids possible problems with stale procFile that could happen if only PID was stored there. The command can be used in shell script to generate the "procfile" for the current shell: /bin/sh -c 'echo "$$ `cut -d" " -f22 /proc/$$/stat`"'
func WaitLoop ¶
func WaitLoop(test func() (bool, error), retryPeriod time.Duration, timeout time.Duration, clock clockwork.Clock) error
WaitLoop executes test func in loop until it returns error, true, or the timeout elapses. clock argument denotes a clock object to use for waiting. When clock is nil, WaitLoop uses clockwork.NewRealClock()
func WriteFiles ¶
WriteFiles writes the files specified as a map under `targetDir`. The keys of the map are subpaths and values are file contents. WriteFiles automatically creates any non-existing directories mentioned in subpaths.
Types ¶
This section is empty.