2014-10-06 01:24:19 +00:00
|
|
|
/*
|
|
|
|
Copyright 2014 Google Inc. All rights reserved.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package kubectl
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
"text/tabwriter"
|
|
|
|
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/client"
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/labels"
|
|
|
|
"github.com/golang/glog"
|
|
|
|
)
|
|
|
|
|
2014-10-27 19:56:34 +00:00
|
|
|
// Describer generates output for the named resource or an error
|
|
|
|
// if the output could not be generated.
|
|
|
|
type Describer interface {
|
|
|
|
Describe(namespace, name string) (output string, err error)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Describer returns the default describe functions for each of the standard
|
|
|
|
// Kubernetes types.
|
|
|
|
func DescriberFor(kind string, c *client.Client) (Describer, bool) {
|
|
|
|
switch kind {
|
|
|
|
case "Pod":
|
|
|
|
return &PodDescriber{
|
|
|
|
PodClient: func(namespace string) (client.PodInterface, error) {
|
|
|
|
return c.Pods(namespace), nil
|
|
|
|
},
|
|
|
|
ReplicationControllerClient: func(namespace string) (client.ReplicationControllerInterface, error) {
|
|
|
|
return c.ReplicationControllers(namespace), nil
|
|
|
|
},
|
|
|
|
}, true
|
|
|
|
case "ReplicationController":
|
|
|
|
return &ReplicationControllerDescriber{
|
|
|
|
PodClient: func(namespace string) (client.PodInterface, error) {
|
|
|
|
return c.Pods(namespace), nil
|
|
|
|
},
|
|
|
|
ReplicationControllerClient: func(namespace string) (client.ReplicationControllerInterface, error) {
|
|
|
|
return c.ReplicationControllers(namespace), nil
|
|
|
|
},
|
|
|
|
}, true
|
|
|
|
case "Service":
|
|
|
|
return &ServiceDescriber{
|
|
|
|
ServiceClient: func(namespace string) (client.ServiceInterface, error) {
|
|
|
|
return c.Services(namespace), nil
|
|
|
|
},
|
|
|
|
}, true
|
|
|
|
}
|
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
|
|
|
|
// PodDescriber generates information about a pod and the replication controllers that
|
|
|
|
// create it.
|
|
|
|
type PodDescriber struct {
|
|
|
|
PodClient func(namespace string) (client.PodInterface, error)
|
|
|
|
ReplicationControllerClient func(namespace string) (client.ReplicationControllerInterface, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *PodDescriber) Describe(namespace, name string) (string, error) {
|
|
|
|
rc, err := d.ReplicationControllerClient(namespace)
|
2014-10-06 01:24:19 +00:00
|
|
|
if err != nil {
|
2014-10-27 19:56:34 +00:00
|
|
|
return "", err
|
2014-10-06 01:24:19 +00:00
|
|
|
}
|
2014-10-27 19:56:34 +00:00
|
|
|
pc, err := d.PodClient(namespace)
|
2014-10-06 01:24:19 +00:00
|
|
|
if err != nil {
|
2014-10-27 19:56:34 +00:00
|
|
|
return "", err
|
2014-10-06 01:24:19 +00:00
|
|
|
}
|
|
|
|
|
2014-10-27 19:56:34 +00:00
|
|
|
pod, err := pc.Get(name)
|
2014-10-06 01:24:19 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return tabbedString(func(out *tabwriter.Writer) error {
|
2014-10-22 17:02:02 +00:00
|
|
|
fmt.Fprintf(out, "Name:\t%s\n", pod.Name)
|
2014-10-06 01:24:19 +00:00
|
|
|
fmt.Fprintf(out, "Image(s):\t%s\n", makeImageList(pod.DesiredState.Manifest))
|
|
|
|
fmt.Fprintf(out, "Host:\t%s\n", pod.CurrentState.Host+"/"+pod.CurrentState.HostIP)
|
|
|
|
fmt.Fprintf(out, "Labels:\t%s\n", formatLabels(pod.Labels))
|
|
|
|
fmt.Fprintf(out, "Status:\t%s\n", string(pod.CurrentState.Status))
|
2014-10-27 19:56:34 +00:00
|
|
|
fmt.Fprintf(out, "Replication Controllers:\t%s\n", getReplicationControllersForLabels(rc, labels.Set(pod.Labels)))
|
2014-10-06 01:24:19 +00:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-10-27 19:56:34 +00:00
|
|
|
// ReplicationControllerDescriber generates information about a replication controller
|
|
|
|
// and the pods it has created.
|
|
|
|
type ReplicationControllerDescriber struct {
|
|
|
|
ReplicationControllerClient func(namespace string) (client.ReplicationControllerInterface, error)
|
|
|
|
PodClient func(namespace string) (client.PodInterface, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *ReplicationControllerDescriber) Describe(namespace, name string) (string, error) {
|
|
|
|
rc, err := d.ReplicationControllerClient(namespace)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
pc, err := d.PodClient(namespace)
|
2014-10-06 01:24:19 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
2014-10-27 19:56:34 +00:00
|
|
|
controller, err := rc.Get(name)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
running, waiting, terminated, err := getPodStatusForReplicationController(pc, controller)
|
2014-10-06 01:24:19 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return tabbedString(func(out *tabwriter.Writer) error {
|
2014-10-22 17:02:02 +00:00
|
|
|
fmt.Fprintf(out, "Name:\t%s\n", controller.Name)
|
|
|
|
fmt.Fprintf(out, "Image(s):\t%s\n", makeImageList(controller.DesiredState.PodTemplate.DesiredState.Manifest))
|
|
|
|
fmt.Fprintf(out, "Selector:\t%s\n", formatLabels(controller.DesiredState.ReplicaSelector))
|
|
|
|
fmt.Fprintf(out, "Labels:\t%s\n", formatLabels(controller.Labels))
|
|
|
|
fmt.Fprintf(out, "Replicas:\t%d current / %d desired\n", controller.CurrentState.Replicas, controller.DesiredState.Replicas)
|
2014-10-06 01:24:19 +00:00
|
|
|
fmt.Fprintf(out, "Pods Status:\t%d Running / %d Waiting / %d Terminated\n", running, waiting, terminated)
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-10-27 19:56:34 +00:00
|
|
|
// ServiceDescriber generates information about a service.
|
|
|
|
type ServiceDescriber struct {
|
|
|
|
ServiceClient func(namespace string) (client.ServiceInterface, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *ServiceDescriber) Describe(namespace, name string) (string, error) {
|
|
|
|
c, err := d.ServiceClient(namespace)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
service, err := c.Get(name)
|
2014-10-06 01:24:19 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return tabbedString(func(out *tabwriter.Writer) error {
|
2014-10-22 17:02:02 +00:00
|
|
|
fmt.Fprintf(out, "Name:\t%s\n", service.Name)
|
|
|
|
fmt.Fprintf(out, "Labels:\t%s\n", formatLabels(service.Labels))
|
2014-10-30 13:29:11 +00:00
|
|
|
fmt.Fprintf(out, "Selector:\t%s\n", formatLabels(service.Spec.Selector))
|
|
|
|
fmt.Fprintf(out, "Port:\t%d\n", service.Spec.Port)
|
2014-10-06 01:24:19 +00:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-10-27 19:56:34 +00:00
|
|
|
// MinionDescriber generates information about a minion.
|
|
|
|
type MinionDescriber struct {
|
|
|
|
MinionClient func() (client.MinionInterface, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *MinionDescriber) Describe(namespace, name string) (string, error) {
|
|
|
|
mc, err := d.MinionClient()
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
minion, err := mc.Get(name)
|
2014-10-06 01:24:19 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return tabbedString(func(out *tabwriter.Writer) error {
|
2014-10-22 17:02:02 +00:00
|
|
|
fmt.Fprintf(out, "Name:\t%s\n", minion.Name)
|
2014-10-06 01:24:19 +00:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get all replication controllers whose selectors would match a given set of
|
|
|
|
// labels.
|
|
|
|
// TODO Move this to pkg/client and ideally implement it server-side (instead
|
|
|
|
// of getting all RC's and searching through them manually).
|
2014-10-27 19:56:34 +00:00
|
|
|
func getReplicationControllersForLabels(c client.ReplicationControllerInterface, labelsToMatch labels.Labels) string {
|
2014-10-06 01:24:19 +00:00
|
|
|
// Get all replication controllers.
|
2014-10-21 21:14:35 +00:00
|
|
|
// TODO this needs a namespace scope as argument
|
2014-10-27 19:56:34 +00:00
|
|
|
rcs, err := c.List(labels.Everything())
|
2014-10-06 01:24:19 +00:00
|
|
|
if err != nil {
|
|
|
|
glog.Fatalf("Error getting replication controllers: %v\n", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find the ones that match labelsToMatch.
|
|
|
|
var matchingRCs []api.ReplicationController
|
2014-10-22 17:02:02 +00:00
|
|
|
for _, controller := range rcs.Items {
|
|
|
|
selector := labels.SelectorFromSet(controller.DesiredState.ReplicaSelector)
|
2014-10-06 01:24:19 +00:00
|
|
|
if selector.Matches(labelsToMatch) {
|
2014-10-22 17:02:02 +00:00
|
|
|
matchingRCs = append(matchingRCs, controller)
|
2014-10-06 01:24:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Format the matching RC's into strings.
|
|
|
|
var rcStrings []string
|
2014-10-22 17:02:02 +00:00
|
|
|
for _, controller := range matchingRCs {
|
|
|
|
rcStrings = append(rcStrings, fmt.Sprintf("%s (%d/%d replicas created)", controller.Name, controller.CurrentState.Replicas, controller.DesiredState.Replicas))
|
2014-10-06 01:24:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
list := strings.Join(rcStrings, ", ")
|
|
|
|
if list == "" {
|
|
|
|
return "<none>"
|
|
|
|
}
|
|
|
|
return list
|
|
|
|
}
|
|
|
|
|
2014-10-27 19:56:34 +00:00
|
|
|
func getPodStatusForReplicationController(c client.PodInterface, controller *api.ReplicationController) (running, waiting, terminated int, err error) {
|
|
|
|
rcPods, err := c.List(labels.SelectorFromSet(controller.DesiredState.ReplicaSelector))
|
2014-10-06 01:24:19 +00:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
for _, pod := range rcPods.Items {
|
|
|
|
if pod.CurrentState.Status == api.PodRunning {
|
|
|
|
running++
|
|
|
|
} else if pod.CurrentState.Status == api.PodWaiting {
|
|
|
|
waiting++
|
|
|
|
} else if pod.CurrentState.Status == api.PodTerminated {
|
|
|
|
terminated++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|