Documentation ¶
Index ¶
- Variables
- func GVR() schema.GroupVersionResource
- func Group() string
- func Resource() string
- func Version() string
- type Container
- type Handler
- func (h *Handler) Apply(obj interface{}) (*corev1.Pod, error)
- func (h *Handler) ApplyFromBytes(data []byte) (pod *corev1.Pod, err error)
- func (h *Handler) ApplyFromFile(filename string) (pod *corev1.Pod, err error)
- func (h *Handler) ApplyFromMap(u map[string]interface{}) (*corev1.Pod, error)
- func (h *Handler) ApplyFromObject(obj runtime.Object) (*corev1.Pod, error)
- func (h *Handler) ApplyFromUnstructured(u *unstructured.Unstructured) (*corev1.Pod, error)
- func (h *Handler) Clientset() *kubernetes.Clientset
- func (h *Handler) Create(obj interface{}) (*corev1.Pod, error)
- func (h *Handler) CreateFromBytes(data []byte) (*corev1.Pod, error)
- func (h *Handler) CreateFromFile(filename string) (*corev1.Pod, error)
- func (h *Handler) CreateFromMap(u map[string]interface{}) (*corev1.Pod, error)
- func (h *Handler) CreateFromObject(obj runtime.Object) (*corev1.Pod, error)
- func (h *Handler) CreateFromUnstructured(u *unstructured.Unstructured) (*corev1.Pod, error)
- func (in *Handler) DeepCopy() *Handler
- func (h *Handler) Delete(obj interface{}) error
- func (h *Handler) DeleteByName(name string) error
- func (h *Handler) DeleteFromBytes(data []byte) error
- func (h *Handler) DeleteFromFile(filename string) error
- func (h *Handler) DeleteFromMap(u map[string]interface{}) error
- func (h *Handler) DeleteFromObject(obj runtime.Object) error
- func (h *Handler) DeleteFromUnstructured(u *unstructured.Unstructured) error
- func (h *Handler) DiscoveryClient() *discovery.DiscoveryClient
- func (h *Handler) DynamicClient() dynamic.Interface
- func (h *Handler) Execute(podName, containerName string, command []string, pty PtyHandler) error
- func (h *Handler) Get(obj interface{}) (*corev1.Pod, error)
- func (h *Handler) GetAge(object interface{}) (time.Duration, error)
- func (h *Handler) GetByName(name string) (*corev1.Pod, error)
- func (h *Handler) GetContainers(object interface{}) ([]Container, error)
- func (h *Handler) GetController(object interface{}) (*PodController, error)
- func (h *Handler) GetFromBytes(data []byte) (*corev1.Pod, error)
- func (h *Handler) GetFromFile(filename string) (*corev1.Pod, error)
- func (h *Handler) GetFromMap(u map[string]interface{}) (*corev1.Pod, error)
- func (h *Handler) GetFromObject(obj runtime.Object) (*corev1.Pod, error)
- func (h *Handler) GetFromUnstructured(u *unstructured.Unstructured) (*corev1.Pod, error)
- func (h *Handler) GetIP(object interface{}) (string, error)
- func (h *Handler) GetInitContainers(object interface{}) ([]Container, error)
- func (h *Handler) GetNodeIP(object interface{}) (string, error)
- func (h *Handler) GetNodeName(object interface{}) (string, error)
- func (h *Handler) GetPV(object interface{}) ([]string, error)
- func (h *Handler) GetPVC(object interface{}) ([]string, error)
- func (h *Handler) GetQosClass(object interface{}) (string, error)
- func (h *Handler) GetReadyContainers(object interface{}) ([]Container, error)
- func (h *Handler) GetStatus(object interface{}) (string, error)
- func (h *Handler) GetUID(object interface{}) (string, error)
- func (h *Handler) Informer() cache.SharedIndexInformer
- func (h *Handler) InformerFactory() informers.SharedInformerFactory
- func (h *Handler) IsReady(name string) bool
- func (h *Handler) List(labels string) (*corev1.PodList, error)
- func (h *Handler) ListAll() (*corev1.PodList, error)
- func (h *Handler) ListByLabel(labels string) (*corev1.PodList, error)
- func (h *Handler) ListByNamespace(namespace string) (*corev1.PodList, error)
- func (h *Handler) ListByNode(name string) (*corev1.PodList, error)
- func (h *Handler) Lister() listerscore.PodLister
- func (h *Handler) Log(obj interface{}, logOptions *LogOptions) error
- func (h *Handler) LogByName(name string, logOption *LogOptions) error
- func (h *Handler) LogFromBytes(data []byte, logOptions *LogOptions) error
- func (h *Handler) LogFromFile(filename string, logOptions *LogOptions) error
- func (h *Handler) LogFromMap(u map[string]interface{}, logOptions *LogOptions) error
- func (h *Handler) LogFromObject(obj runtime.Object, logOptions *LogOptions) error
- func (h *Handler) LogFromUnstructured(u *unstructured.Unstructured, logOptions *LogOptions) error
- func (h *Handler) PodInformer() informerscore.PodInformer
- func (h *Handler) RESTClient() *rest.RESTClient
- func (h *Handler) RESTConfig() *rest.Config
- func (h *Handler) RunInformer(addFunc func(obj interface{}), updateFunc func(oldObj, newObj interface{}), ...)
- func (p *Handler) SetForceDelete(force bool)
- func (h *Handler) SetInformerResyncPeriod(resyncPeriod time.Duration)
- func (p *Handler) SetLimit(limit int64)
- func (p *Handler) SetTimeout(timeout int64)
- func (h *Handler) TestInformer(stopCh chan struct{})
- func (h *Handler) Update(obj interface{}) (*corev1.Pod, error)
- func (h *Handler) UpdateFromBytes(data []byte) (*corev1.Pod, error)
- func (h *Handler) UpdateFromFile(filename string) (*corev1.Pod, error)
- func (h *Handler) UpdateFromMap(u map[string]interface{}) (*corev1.Pod, error)
- func (h *Handler) UpdateFromObject(obj runtime.Object) (*corev1.Pod, error)
- func (h *Handler) UpdateFromUnstructured(u *unstructured.Unstructured) (*corev1.Pod, error)
- func (h *Handler) WaitReady(name string) error
- func (h *Handler) Watch(name string, addFunc, modifyFunc, deleteFunc func(x interface{}), ...) (err error)
- func (h *Handler) WatchByLabel(labelSelector string, addFunc, modifyFunc, deleteFunc func(x interface{}), ...) (err error)
- func (h *Handler) WatchByName(name string, addFunc, modifyFunc, deleteFunc func(x interface{}), ...) (err error)
- func (p *Handler) WithDryRun() *Handler
- func (p *Handler) WithNamespace(namespace string) *Handler
- type LogOptions
- type PodController
- type PtyHandler
Constants ¶
This section is empty.
Variables ¶
var ( ERR_TYPE_TOOLS = fmt.Errorf("type must be string *corev1.Pod, or corev1.Pod") ERR_TYPE_CREATE = fmt.Errorf("type must be string, []byte, *corev1.Pod, corev1.Pod, runtime.Object, *unstructured.Unstructured, unstructured.Unstructured or map[string]interface{}") ERR_TYPE_UPDATE = ERR_TYPE_CREATE ERR_TYPE_APPLY = ERR_TYPE_CREATE ERR_TYPE_DELETE = ERR_TYPE_CREATE ERR_TYPE_GET = ERR_TYPE_CREATE )
var DefaultLogOptions = &LogOptions{ PodLogOptions: corev1.PodLogOptions{}, Writer: os.Stdout, NewLine: true, }
var ERR_TYPE = fmt.Errorf("type must be *corev1.Pod, corev1.Pod or string")
Functions ¶
func GVR ¶ added in v0.5.0
func GVR() schema.GroupVersionResource
GVR returns the name of Group, Version, Resource of pod resource.
Types ¶
type Handler ¶
type Handler struct { Options *types.HandlerOptions // contains filtered or unexported fields }
func NewOrDie ¶ added in v0.3.0
NewOrDie simply call New() to get a pod handler. panic if there is any error occurs.
func (*Handler) Apply ¶
Apply applies pod from type string, []byte, *corev1.pod, corev1.pod, runtime.Object, *unstructured.Unstructured, unstructured.Unstructured or map[string]interface{}.
func (*Handler) ApplyFromBytes ¶
ApplyFromBytes applies pod from bytes.
func (*Handler) ApplyFromFile ¶
ApplyFromFile applies pod from yaml file.
func (*Handler) ApplyFromMap ¶ added in v0.5.0
ApplyFromMap applies pod from map[string]interface{}.
func (*Handler) ApplyFromObject ¶ added in v0.3.0
ApplyFromObject applies deployment from runtime.Object.
func (*Handler) ApplyFromUnstructured ¶ added in v0.3.0
func (h *Handler) ApplyFromUnstructured(u *unstructured.Unstructured) (*corev1.Pod, error)
ApplyFromUnstructured applies pod from *unstructured.Unstructured.
func (*Handler) Clientset ¶ added in v0.2.0
func (h *Handler) Clientset() *kubernetes.Clientset
Clientset returns underlying clientset.
func (*Handler) Create ¶
Create creates pod from type string, []byte, *corev1.pod, corev1.pod, runtime.Object, *unstructured.Unstructured, unstructured.Unstructured or map[string]interface{}.
func (*Handler) CreateFromBytes ¶
CreateFromBytes creates pod from bytes.
func (*Handler) CreateFromFile ¶
CreateFromFile creates pod from yaml file.
func (*Handler) CreateFromMap ¶ added in v0.5.0
CreateFromMap creates pod from map[string]interface{}.
func (*Handler) CreateFromObject ¶ added in v0.3.0
CreateFromObject creates pod from runtime.Object.
func (*Handler) CreateFromUnstructured ¶ added in v0.3.0
func (h *Handler) CreateFromUnstructured(u *unstructured.Unstructured) (*corev1.Pod, error)
CreateFromUnstructured creates pod from *unstructured.Unstructured.
func (*Handler) Delete ¶
If passed parameter type is string, it will simply call DeleteByName instead of DeleteFromFile. You should always explicitly call DeleteFromFile to delete a pod from file path.
func (*Handler) DeleteByName ¶
DeleteByName deletes pod by name.
func (*Handler) DeleteFromBytes ¶
DeleteFromBytes deletes pod from bytes.
func (*Handler) DeleteFromFile ¶
DeleteFromFile deletes pod from yaml file.
func (*Handler) DeleteFromMap ¶ added in v0.5.0
DeleteFromMap deletes pod from map[string]interface{}.
func (*Handler) DeleteFromObject ¶ added in v0.3.0
DeleteFromObject deletes pod from runtime.Object.
func (*Handler) DeleteFromUnstructured ¶ added in v0.3.0
func (h *Handler) DeleteFromUnstructured(u *unstructured.Unstructured) error
DeleteFromUnstructured deletes pod from *unstructured.Unstructured.
func (*Handler) DiscoveryClient ¶ added in v0.2.0
func (h *Handler) DiscoveryClient() *discovery.DiscoveryClient
DiscoveryClient returns underlying discovery client.
func (*Handler) DynamicClient ¶ added in v0.2.0
DynamicClient returns underlying dynamic client.
func (*Handler) Execute ¶
func (h *Handler) Execute(podName, containerName string, command []string, pty PtyHandler) error
Execute will executing remote processes in a container of the pod. If no container name is specified, Execute will executing a process in the first container of the pod by default. It will returns error, If the pod not ready. It's your responsibility to ensure the pod Is running and ready.
func (*Handler) Get ¶
If passed parameter type is string, it will simply call GetByName instead of GetFromFile. You should always explicitly call GetFromFile to get a pod from file path.
func (*Handler) GetContainers ¶
GetContainers get all containers of the pod.
func (*Handler) GetController ¶
func (h *Handler) GetController(object interface{}) (*PodController, error)
GetController get the owner of the pod. Controller maybe deployment, statefulset, daemonset, job, replicaset, rc.
func (*Handler) GetFromBytes ¶
GetFromBytes gets pod from bytes.
func (*Handler) GetFromFile ¶
GetFromFile gets pod from yaml file.
func (*Handler) GetFromMap ¶ added in v0.5.0
GetFromMap gets pod from map[string]interface{}.
func (*Handler) GetFromObject ¶ added in v0.3.0
GetFromObject gets pod from runtime.Object.
func (*Handler) GetFromUnstructured ¶ added in v0.3.0
func (h *Handler) GetFromUnstructured(u *unstructured.Unstructured) (*corev1.Pod, error)
GetFromUnstructured gets pod from *unstructured.Unstructured.
func (*Handler) GetInitContainers ¶
GetInitContainers get all init containers of the pod.
func (*Handler) GetNodeName ¶
GetNodeName get the name of the node where pod is located.
func (*Handler) GetQosClass ¶
GetQosClass get the "Quality of Service" of the pod. PodQOSGuaranteed is the Guaranteed qos class. PodQOSBurstable is the Burstable qos class. PodQOSBestEffort is the BestEffort qos class.
func (*Handler) GetReadyContainers ¶
GetReadyContainers get all ready containers of the pod.
func (*Handler) GetStatus ¶
GetStatus get the status of the pod. There are the valid statuses of the pod Pending: pod has been accepted by the system, but one or more of the
containers has not been started.
Running: pod is running and all of the containers have been started. Succeeded: all containers in the pod have voluntarily terminated. Failed: all containers in the pod have terminated, and at least one
container hasterminated in a failure (exited with a non-zero exit code or was stopped by the system).
Unknown: for some reason the state of the pod could not be obtained,
typically due to an error in communicating with the host of the pod.
func (*Handler) Informer ¶ added in v0.2.0
func (h *Handler) Informer() cache.SharedIndexInformer
Informer returns underlying SharedIndexInformer which provides add and Indexers ability based on SharedInformer.
func (*Handler) InformerFactory ¶ added in v0.4.5
func (h *Handler) InformerFactory() informers.SharedInformerFactory
InformerFactory returns underlying SharedInformerFactory which provides shared informer for resources in all known API group version.
func (*Handler) ListByLabel ¶
ListByLabel list pods by labels.
func (*Handler) ListByNamespace ¶
ListByNamespace list all pods in the specified namespace
func (*Handler) ListByNode ¶
ListByNode list all pods in k8s node where the pod is running.
func (*Handler) Lister ¶ added in v0.2.0
func (h *Handler) Lister() listerscore.PodLister
Lister returns underlying PodLister which helps list pods.
func (*Handler) Log ¶ added in v0.4.1
func (h *Handler) Log(obj interface{}, logOptions *LogOptions) error
If passed parameter type is string, it will simply call LogByName instead of LogFromFile. You should always explicitly call LogFromFile to get pod logs from file path.
func (*Handler) LogByName ¶ added in v0.4.1
func (h *Handler) LogByName(name string, logOption *LogOptions) error
LogByName gets pod by name.
func (*Handler) LogFromBytes ¶ added in v0.4.1
func (h *Handler) LogFromBytes(data []byte, logOptions *LogOptions) error
LogFromBytes get pod logs from bytes.
func (*Handler) LogFromFile ¶ added in v0.4.1
func (h *Handler) LogFromFile(filename string, logOptions *LogOptions) error
LogFromFile get pod logs from yaml file.
func (*Handler) LogFromMap ¶ added in v0.5.0
func (h *Handler) LogFromMap(u map[string]interface{}, logOptions *LogOptions) error
LogFromMap get logs from map[string]interface{}.
func (*Handler) LogFromObject ¶ added in v0.4.1
func (h *Handler) LogFromObject(obj runtime.Object, logOptions *LogOptions) error
LogFromObject get logs from runtime.Object.
func (*Handler) LogFromUnstructured ¶ added in v0.4.1
func (h *Handler) LogFromUnstructured(u *unstructured.Unstructured, logOptions *LogOptions) error
LogFromUnstructured get logs from *unstructured.Unstructured.
func (*Handler) PodInformer ¶ added in v0.4.5
func (h *Handler) PodInformer() informerscore.PodInformer
PodInformer returns underlying PodInformer which provides access to a shared informer and lister for pod.
func (*Handler) RESTClient ¶ added in v0.2.0
func (h *Handler) RESTClient() *rest.RESTClient
RESTClient returns underlying rest client.
func (*Handler) RESTConfig ¶ added in v0.3.0
RESTConfig returns underlying rest config.
func (*Handler) RunInformer ¶
func (h *Handler) RunInformer( addFunc func(obj interface{}), updateFunc func(oldObj, newObj interface{}), deleteFunc func(obj interface{}), stopCh chan struct{})
RunInformer addFunc, updateFunc, stopChan 分别是 informer 的三个回调函数 addFunc, updateFunc, deleteFunc 管道用来存放回调函数处理的 k8s 资源对象
func (*Handler) SetForceDelete ¶
func (*Handler) SetInformerResyncPeriod ¶ added in v0.4.5
SetInformerResyncPeriod will set informer resync period.
func (*Handler) SetTimeout ¶
func (*Handler) Update ¶
Update updates pod from type string, []byte, *corev1.pod, corev1.pod, runtime.Object, *unstructured.Unstructured, unstructured.Unstructured or map[string]interface{}.
func (*Handler) UpdateFromBytes ¶
UpdateFromBytes updates pod from bytes.
func (*Handler) UpdateFromFile ¶
UpdateFromFile updates pod from yaml file.
func (*Handler) UpdateFromMap ¶ added in v0.5.0
UpdateFromMap updates pod from map[string]interface{}.
func (*Handler) UpdateFromObject ¶ added in v0.3.0
UpdateFromObject updates pod from runtime.Object.
func (*Handler) UpdateFromUnstructured ¶ added in v0.3.0
func (h *Handler) UpdateFromUnstructured(u *unstructured.Unstructured) (*corev1.Pod, error)
UpdateFromUnstructured updates pod from *unstructured.Unstructured.
func (*Handler) Watch ¶
func (h *Handler) Watch(name string, addFunc, modifyFunc, deleteFunc func(x interface{}), x interface{}) (err error)
Watch watch pods by name, alias to "WatchByName".
func (*Handler) WatchByLabel ¶
func (h *Handler) WatchByLabel(labelSelector string, addFunc, modifyFunc, deleteFunc func(x interface{}), x interface{}) (err error)
WatchByLabel watch pods by label.
func (*Handler) WatchByName ¶
func (h *Handler) WatchByName(name string, addFunc, modifyFunc, deleteFunc func(x interface{}), x interface{}) (err error)
WatchByName watch pods by name.
func (*Handler) WithDryRun ¶
func (*Handler) WithNamespace ¶
type LogOptions ¶ added in v0.4.1
type LogOptions struct { // add '\n' after the string that will be written to "io.Writer" NewLine bool corev1.PodLogOptions io.Writer }
type PodController ¶
type PodController struct {
metav1.OwnerReference
}
type PtyHandler ¶ added in v0.2.1
type PtyHandler interface { io.Reader io.Writer remotecommand.TerminalSizeQueue }