bufio | Package bufio implements buffered I/O. It wraps an io.Reader or io.Writer object, creating another object (Reader or Writer) that also implements the interface but provides buffering and some help for textual I/O. |
bytes | Package bytes implements functions for the manipulation of byte slices. |
encoding/json | Package json implements encoding and decoding of JSON as defined in RFC 7159. |
errors | Package errors implements functions to manipulate errors. |
fmt | Package fmt implements formatted I/O with functions analogous to C's printf and scanf. |
github.com/ghodss/yaml | |
github.com/golang/glog | Package glog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. |
github.com/spf13/cobra | Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. |
io | Package io provides basic interfaces to I/O primitives. |
io/ioutil | Package ioutil implements some I/O utility functions. |
k8s.io/kubernetes/pkg/api | |
k8s.io/kubernetes/pkg/api/errors | |
k8s.io/kubernetes/pkg/api/meta | |
k8s.io/kubernetes/pkg/api/resource | |
k8s.io/kubernetes/pkg/api/unversioned | |
k8s.io/kubernetes/pkg/api/v1 | |
k8s.io/kubernetes/pkg/apis/extensions | |
k8s.io/kubernetes/pkg/client/unversioned | |
k8s.io/kubernetes/pkg/conversion | |
k8s.io/kubernetes/pkg/fieldpath | Package fieldpath supplies methods for extracting fields from objects given a path to a field. |
k8s.io/kubernetes/pkg/fields | |
k8s.io/kubernetes/pkg/kubectl/resource | |
k8s.io/kubernetes/pkg/kubelet/qos/util | |
k8s.io/kubernetes/pkg/labels | |
k8s.io/kubernetes/pkg/runtime | |
k8s.io/kubernetes/pkg/types | |
k8s.io/kubernetes/pkg/util | |
k8s.io/kubernetes/pkg/util/deployment | |
k8s.io/kubernetes/pkg/util/errors | |
k8s.io/kubernetes/pkg/util/jsonpath | |
k8s.io/kubernetes/pkg/util/sets | |
k8s.io/kubernetes/pkg/util/validation | |
k8s.io/kubernetes/pkg/util/wait | |
k8s.io/kubernetes/pkg/version | |
k8s.io/kubernetes/pkg/watch | |
math | Package math provides basic constants and mathematical functions. |
net | Package net provides a portable interface for network I/O, including TCP/IP, UDP, domain name resolution, and Unix domain sockets. |
net/http | Package http provides HTTP client and server implementations. |
net/http/httputil | Package httputil provides HTTP utility functions, complementing the more common ones in the net/http package. |
net/url | Package url parses URLs and implements query escaping. |
os | Package os provides a platform-independent interface to operating system functionality. |
os/signal | Package signal implements access to incoming signals. |
reflect | Package reflect implements run-time reflection, allowing a program to manipulate objects with arbitrary types. |
regexp | Package regexp implements regular expression search. |
sort | Package sort provides primitives for sorting slices and user-defined collections. |
strconv | Package strconv implements conversions to and from string representations of basic data types. |
strings | Package strings implements simple functions to manipulate UTF-8 encoded strings. |
text/tabwriter | Package tabwriter implements a write filter (tabwriter.Writer) that translates tabbed columns in input into properly aligned text. |
text/template | Package template implements data-driven templates for generating textual output. |
time | Package time provides functionality for measuring and displaying time. |