Documentation
¶
Overview ¶
Package container provides container and orchestration commands (docker, kubectl, psql).
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type K8sContainerStatus ¶
type K8sMetadata ¶
type K8sPod ¶
type K8sPod struct {
Metadata K8sMetadata `json:"metadata"`
Status K8sPodStatus `json:"status"`
}
type K8sPodList ¶
type K8sPodList struct {
Items []K8sPod `json:"items"`
}
JSON structures for kubectl
type K8sPodStatus ¶
type K8sPodStatus struct {
Phase string `json:"phase"`
ContainerStatuses []K8sContainerStatus `json:"containerStatuses"`
}
type K8sService ¶
type K8sService struct {
Metadata K8sMetadata `json:"metadata"`
Spec K8sServiceSpec `json:"spec"`
}
type K8sServiceList ¶
type K8sServiceList struct {
Items []K8sService `json:"items"`
}
type K8sServicePort ¶
type K8sServiceSpec ¶
type K8sServiceSpec struct {
Type string `json:"type"`
Ports []K8sServicePort `json:"ports"`
}
Click to show internal directories.
Click to hide internal directories.