Documentation ¶
Overview ¶
Package deploylog provides a Registry interface for retrieving deployment logs
Index ¶
- func DeploymentToPodLogOptions(opts *appsapi.DeploymentLogOptions) *corev1.PodLogOptions
- func GetFirstPod(client corev1client.PodsGetter, namespace string, selector string, ...) (*corev1.Pod, int, error)
- func WaitForRunningDeployerPod(podClient corev1client.PodsGetter, rc *kapi.ReplicationController, ...) error
- type REST
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DeploymentToPodLogOptions ¶
func DeploymentToPodLogOptions(opts *appsapi.DeploymentLogOptions) *corev1.PodLogOptions
func GetFirstPod ¶
func GetFirstPod(client corev1client.PodsGetter, namespace string, selector string, timeout time.Duration, sortBy func([]*corev1.Pod) sort.Interface) (*corev1.Pod, int, error)
GetFirstPod returns a pod matching the namespace and label selector and the number of all pods that match the label selector.
func WaitForRunningDeployerPod ¶
func WaitForRunningDeployerPod(podClient corev1client.PodsGetter, rc *kapi.ReplicationController, timeout time.Duration) error
WaitForRunningDeployerPod waits a given period of time until the deployer pod for given replication controller is not running.
Types ¶
type REST ¶
type REST struct {
// contains filtered or unexported fields
}
REST is an implementation of RESTStorage for the api server.
func NewREST ¶
func NewREST(dcClient appsclient.DeploymentConfigsGetter, rcClient kcoreclient.ReplicationControllersGetter, podClient corev1client.PodsGetter) *REST
NewREST creates a new REST for DeploymentLogs. It uses three clients: one for configs, one for deployments (replication controllers) and one for pods to get the necessary attributes to assemble the URL to which the request shall be redirected in order to get the deployment logs.