2014-10-06 01:24:19 +00:00
/ *
2015-05-01 16:19:44 +00:00
Copyright 2014 The Kubernetes Authors All rights reserved .
2014-10-06 01:24:19 +00:00
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 (
2015-05-22 21:33:29 +00:00
"bytes"
2014-10-06 01:24:19 +00:00
"fmt"
2014-11-14 19:56:41 +00:00
"io"
2015-02-26 18:50:12 +00:00
"reflect"
2014-11-14 19:56:41 +00:00
"sort"
2014-10-06 01:24:19 +00:00
"strings"
2014-12-16 22:20:51 +00:00
"time"
2014-10-06 01:24:19 +00:00
2015-08-05 22:05:17 +00:00
"github.com/golang/glog"
2015-08-05 22:03:47 +00:00
"k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/api/resource"
2015-10-09 22:04:41 +00:00
"k8s.io/kubernetes/pkg/apis/extensions"
2015-08-13 19:01:50 +00:00
client "k8s.io/kubernetes/pkg/client/unversioned"
2015-08-05 22:03:47 +00:00
"k8s.io/kubernetes/pkg/fieldpath"
"k8s.io/kubernetes/pkg/fields"
2015-09-01 23:35:32 +00:00
qosutil "k8s.io/kubernetes/pkg/kubelet/qos/util"
2015-08-05 22:03:47 +00:00
"k8s.io/kubernetes/pkg/labels"
"k8s.io/kubernetes/pkg/types"
2015-09-18 20:35:56 +00:00
deploymentUtil "k8s.io/kubernetes/pkg/util/deployment"
2015-09-09 17:45:01 +00:00
"k8s.io/kubernetes/pkg/util/sets"
2014-10-06 01:24:19 +00:00
)
2014-10-27 19:56:34 +00:00
// Describer generates output for the named resource or an error
2015-02-26 18:50:12 +00:00
// if the output could not be generated. Implementors typically
// abstract the retrieval of the named object from a remote server.
2014-10-27 19:56:34 +00:00
type Describer interface {
Describe ( namespace , name string ) ( output string , err error )
}
2015-02-26 18:50:12 +00:00
// ObjectDescriber is an interface for displaying arbitrary objects with extra
// information. Use when an object is in hand (on disk, or already retrieved).
// Implementors may ignore the additional information passed on extra, or use it
// by default. ObjectDescribers may return ErrNoDescriber if no suitable describer
// is found.
type ObjectDescriber interface {
DescribeObject ( object interface { } , extra ... interface { } ) ( output string , err error )
}
// ErrNoDescriber is a structured error indicating the provided object or objects
// cannot be described.
type ErrNoDescriber struct {
Types [ ] string
}
// Error implements the error interface.
func ( e ErrNoDescriber ) Error ( ) string {
return fmt . Sprintf ( "no describer has been defined for %v" , e . Types )
}
2015-03-17 17:01:33 +00:00
func describerMap ( c * client . Client ) map [ string ] Describer {
m := map [ string ] Describer {
"Pod" : & PodDescriber { c } ,
"ReplicationController" : & ReplicationControllerDescriber { c } ,
2015-04-28 03:51:20 +00:00
"Secret" : & SecretDescriber { c } ,
2015-03-17 17:01:33 +00:00
"Service" : & ServiceDescriber { c } ,
2015-04-27 22:53:28 +00:00
"ServiceAccount" : & ServiceAccountDescriber { c } ,
2015-03-17 17:01:33 +00:00
"Minion" : & NodeDescriber { c } ,
"Node" : & NodeDescriber { c } ,
"LimitRange" : & LimitRangeDescriber { c } ,
"ResourceQuota" : & ResourceQuotaDescriber { c } ,
"PersistentVolume" : & PersistentVolumeDescriber { c } ,
"PersistentVolumeClaim" : & PersistentVolumeClaimDescriber { c } ,
2015-06-09 19:50:44 +00:00
"Namespace" : & NamespaceDescriber { c } ,
2015-03-17 17:01:33 +00:00
}
return m
}
2015-08-31 16:29:18 +00:00
func expDescriberMap ( c * client . Client ) map [ string ] Describer {
2015-08-26 14:17:18 +00:00
return map [ string ] Describer {
2015-08-31 16:29:18 +00:00
"HorizontalPodAutoscaler" : & HorizontalPodAutoscalerDescriber { c } ,
2015-09-22 16:04:52 +00:00
"DaemonSet" : & DaemonSetDescriber { c } ,
"Job" : & JobDescriber { c } ,
2015-09-18 20:35:56 +00:00
"Deployment" : & DeploymentDescriber { c } ,
2015-08-26 14:17:18 +00:00
}
2015-08-10 20:08:34 +00:00
}
2015-03-17 17:01:33 +00:00
// List of all resource types we can describe
func DescribableResources ( ) [ ] string {
keys := make ( [ ] string , 0 )
for k := range describerMap ( nil ) {
resource := strings . ToLower ( k )
keys = append ( keys , resource )
}
return keys
}
2014-10-27 19:56:34 +00:00
// Describer returns the default describe functions for each of the standard
// Kubernetes types.
2015-08-31 16:29:18 +00:00
func DescriberFor ( group string , kind string , c * client . Client ) ( Describer , bool ) {
2015-08-10 20:08:34 +00:00
var f Describer
var ok bool
2015-08-26 14:17:18 +00:00
2015-08-31 16:29:18 +00:00
switch group {
2015-09-17 05:15:05 +00:00
case "" :
2015-08-10 20:08:34 +00:00
f , ok = describerMap ( c ) [ kind ]
2015-10-09 22:14:03 +00:00
case "extensions" :
2015-08-31 16:29:18 +00:00
f , ok = expDescriberMap ( c ) [ kind ]
2015-08-26 14:17:18 +00:00
}
2015-08-31 16:29:18 +00:00
2015-08-10 20:08:34 +00:00
return f , ok
2014-10-27 19:56:34 +00:00
}
2015-02-26 18:50:12 +00:00
// DefaultObjectDescriber can describe the default Kubernetes objects.
var DefaultObjectDescriber ObjectDescriber
func init ( ) {
d := & Describers { }
err := d . Add (
describeLimitRange ,
describeQuota ,
describePod ,
describeService ,
describeReplicationController ,
2015-09-12 16:46:10 +00:00
describeDaemonSet ,
2015-02-26 18:50:12 +00:00
describeNode ,
2015-06-09 19:50:44 +00:00
describeNamespace ,
2015-02-26 18:50:12 +00:00
)
if err != nil {
glog . Fatalf ( "Cannot register describers: %v" , err )
}
DefaultObjectDescriber = d
}
2015-06-09 19:50:44 +00:00
// NamespaceDescriber generates information about a namespace
type NamespaceDescriber struct {
client . Interface
}
func ( d * NamespaceDescriber ) Describe ( namespace , name string ) ( string , error ) {
ns , err := d . Namespaces ( ) . Get ( name )
if err != nil {
return "" , err
}
2015-10-13 10:11:48 +00:00
resourceQuotaList , err := d . ResourceQuotas ( name ) . List ( labels . Everything ( ) , fields . Everything ( ) )
2015-06-09 19:50:44 +00:00
if err != nil {
return "" , err
}
2015-10-13 10:11:48 +00:00
limitRangeList , err := d . LimitRanges ( name ) . List ( labels . Everything ( ) , fields . Everything ( ) )
2015-06-09 19:50:44 +00:00
if err != nil {
return "" , err
}
return describeNamespace ( ns , resourceQuotaList , limitRangeList )
}
func describeNamespace ( namespace * api . Namespace , resourceQuotaList * api . ResourceQuotaList , limitRangeList * api . LimitRangeList ) ( string , error ) {
return tabbedString ( func ( out io . Writer ) error {
fmt . Fprintf ( out , "Name:\t%s\n" , namespace . Name )
2015-08-16 09:33:35 +00:00
fmt . Fprintf ( out , "Labels:\t%s\n" , labels . FormatLabels ( namespace . Labels ) )
2015-06-09 19:50:44 +00:00
fmt . Fprintf ( out , "Status:\t%s\n" , string ( namespace . Status . Phase ) )
if resourceQuotaList != nil {
fmt . Fprintf ( out , "\n" )
DescribeResourceQuotas ( resourceQuotaList , out )
}
if limitRangeList != nil {
fmt . Fprintf ( out , "\n" )
DescribeLimitRanges ( limitRangeList , out )
}
return nil
} )
}
// DescribeLimitRanges merges a set of limit range items into a single tabular description
func DescribeLimitRanges ( limitRanges * api . LimitRangeList , w io . Writer ) {
if len ( limitRanges . Items ) == 0 {
fmt . Fprint ( w , "No resource limits.\n" )
return
}
2015-08-28 16:26:36 +00:00
fmt . Fprintf ( w , "Resource Limits\n Type\tResource\tMin\tMax\tRequest\tLimit\tLimit/Request\n" )
fmt . Fprintf ( w , " ----\t--------\t---\t---\t-------\t-----\t-------------\n" )
2015-06-09 19:50:44 +00:00
for _ , limitRange := range limitRanges . Items {
for i := range limitRange . Spec . Limits {
item := limitRange . Spec . Limits [ i ]
maxResources := item . Max
minResources := item . Min
2015-08-28 16:26:36 +00:00
defaultLimitResources := item . Default
defaultRequestResources := item . DefaultRequest
ratio := item . MaxLimitRequestRatio
2015-06-09 19:50:44 +00:00
set := map [ api . ResourceName ] bool { }
for k := range maxResources {
set [ k ] = true
}
for k := range minResources {
set [ k ] = true
}
2015-08-28 16:26:36 +00:00
for k := range defaultLimitResources {
set [ k ] = true
}
for k := range defaultRequestResources {
set [ k ] = true
}
for k := range ratio {
2015-06-09 19:50:44 +00:00
set [ k ] = true
}
for k := range set {
// if no value is set, we output -
maxValue := "-"
minValue := "-"
2015-08-28 16:26:36 +00:00
defaultLimitValue := "-"
defaultRequestValue := "-"
ratioValue := "-"
2015-06-09 19:50:44 +00:00
maxQuantity , maxQuantityFound := maxResources [ k ]
if maxQuantityFound {
maxValue = maxQuantity . String ( )
}
minQuantity , minQuantityFound := minResources [ k ]
if minQuantityFound {
minValue = minQuantity . String ( )
}
2015-08-28 16:26:36 +00:00
defaultLimitQuantity , defaultLimitQuantityFound := defaultLimitResources [ k ]
if defaultLimitQuantityFound {
defaultLimitValue = defaultLimitQuantity . String ( )
}
defaultRequestQuantity , defaultRequestQuantityFound := defaultRequestResources [ k ]
if defaultRequestQuantityFound {
defaultRequestValue = defaultRequestQuantity . String ( )
}
ratioQuantity , ratioQuantityFound := ratio [ k ]
if ratioQuantityFound {
ratioValue = ratioQuantity . String ( )
2015-06-09 19:50:44 +00:00
}
2015-08-28 16:26:36 +00:00
msg := " %s\t%v\t%v\t%v\t%v\t%v\t%v\n"
fmt . Fprintf ( w , msg , item . Type , k , minValue , maxValue , defaultRequestValue , defaultLimitValue , ratioValue )
2015-06-09 19:50:44 +00:00
}
}
}
}
// DescribeResourceQuotas merges a set of quota items into a single tabular description of all quotas
func DescribeResourceQuotas ( quotas * api . ResourceQuotaList , w io . Writer ) {
if len ( quotas . Items ) == 0 {
fmt . Fprint ( w , "No resource quota.\n" )
return
}
resources := [ ] api . ResourceName { }
hard := map [ api . ResourceName ] resource . Quantity { }
used := map [ api . ResourceName ] resource . Quantity { }
for _ , q := range quotas . Items {
for resource := range q . Status . Hard {
resources = append ( resources , resource )
hardQuantity := q . Status . Hard [ resource ]
usedQuantity := q . Status . Used [ resource ]
// if for some reason there are multiple quota documents, we take least permissive
prevQuantity , ok := hard [ resource ]
if ok {
if hardQuantity . Value ( ) < prevQuantity . Value ( ) {
hard [ resource ] = hardQuantity
}
} else {
hard [ resource ] = hardQuantity
}
used [ resource ] = usedQuantity
}
}
sort . Sort ( SortableResourceNames ( resources ) )
fmt . Fprint ( w , "Resource Quotas\n Resource\tUsed\tHard\n" )
fmt . Fprint ( w , " ---\t---\t---\n" )
for _ , resource := range resources {
hardQuantity := hard [ resource ]
usedQuantity := used [ resource ]
fmt . Fprintf ( w , " %s\t%s\t%s\n" , string ( resource ) , usedQuantity . String ( ) , hardQuantity . String ( ) )
}
}
2015-01-22 21:52:40 +00:00
// LimitRangeDescriber generates information about a limit range
type LimitRangeDescriber struct {
client . Interface
}
func ( d * LimitRangeDescriber ) Describe ( namespace , name string ) ( string , error ) {
lr := d . LimitRanges ( namespace )
limitRange , err := lr . Get ( name )
if err != nil {
return "" , err
}
2015-02-26 18:50:12 +00:00
return describeLimitRange ( limitRange )
}
2015-01-22 21:52:40 +00:00
2015-02-26 18:50:12 +00:00
func describeLimitRange ( limitRange * api . LimitRange ) ( string , error ) {
2015-01-22 21:52:40 +00:00
return tabbedString ( func ( out io . Writer ) error {
fmt . Fprintf ( out , "Name:\t%s\n" , limitRange . Name )
2015-06-15 09:12:29 +00:00
fmt . Fprintf ( out , "Namespace:\t%s\n" , limitRange . Namespace )
2015-08-28 16:26:36 +00:00
fmt . Fprintf ( out , "Type\tResource\tMin\tMax\tRequest\tLimit\tLimit/Request\n" )
fmt . Fprintf ( out , "----\t--------\t---\t---\t-------\t-----\t-------------\n" )
2015-01-23 04:17:04 +00:00
for i := range limitRange . Spec . Limits {
2015-01-22 21:52:40 +00:00
item := limitRange . Spec . Limits [ i ]
maxResources := item . Max
minResources := item . Min
2015-08-28 16:26:36 +00:00
defaultLimitResources := item . Default
defaultRequestResources := item . DefaultRequest
ratio := item . MaxLimitRequestRatio
2015-01-22 21:52:40 +00:00
set := map [ api . ResourceName ] bool { }
2015-01-23 04:17:04 +00:00
for k := range maxResources {
2015-01-22 21:52:40 +00:00
set [ k ] = true
}
2015-01-23 04:17:04 +00:00
for k := range minResources {
2015-01-22 21:52:40 +00:00
set [ k ] = true
}
2015-08-28 16:26:36 +00:00
for k := range defaultLimitResources {
set [ k ] = true
}
for k := range defaultRequestResources {
set [ k ] = true
}
for k := range ratio {
2015-03-31 14:12:57 +00:00
set [ k ] = true
}
2015-01-22 21:52:40 +00:00
2015-01-23 04:17:04 +00:00
for k := range set {
2015-01-22 21:52:40 +00:00
// if no value is set, we output -
maxValue := "-"
minValue := "-"
2015-08-28 16:26:36 +00:00
defaultLimitValue := "-"
defaultRequestValue := "-"
ratioValue := "-"
2015-01-22 21:52:40 +00:00
maxQuantity , maxQuantityFound := maxResources [ k ]
if maxQuantityFound {
maxValue = maxQuantity . String ( )
}
minQuantity , minQuantityFound := minResources [ k ]
if minQuantityFound {
minValue = minQuantity . String ( )
}
2015-08-28 16:26:36 +00:00
defaultLimitQuantity , defaultLimitQuantityFound := defaultLimitResources [ k ]
if defaultLimitQuantityFound {
defaultLimitValue = defaultLimitQuantity . String ( )
}
defaultRequestQuantity , defaultRequestQuantityFound := defaultRequestResources [ k ]
if defaultRequestQuantityFound {
defaultRequestValue = defaultRequestQuantity . String ( )
}
ratioQuantity , ratioQuantityFound := ratio [ k ]
if ratioQuantityFound {
ratioValue = ratioQuantity . String ( )
2015-03-31 14:12:57 +00:00
}
2015-08-28 16:26:36 +00:00
msg := "%v\t%v\t%v\t%v\t%v\t%v\t%v\n"
fmt . Fprintf ( out , msg , item . Type , k , minValue , maxValue , defaultRequestValue , defaultLimitValue , ratioValue )
2015-01-22 21:52:40 +00:00
}
}
return nil
} )
}
2015-01-23 17:38:30 +00:00
// ResourceQuotaDescriber generates information about a resource quota
type ResourceQuotaDescriber struct {
client . Interface
}
func ( d * ResourceQuotaDescriber ) Describe ( namespace , name string ) ( string , error ) {
rq := d . ResourceQuotas ( namespace )
resourceQuota , err := rq . Get ( name )
if err != nil {
return "" , err
}
2015-02-26 18:50:12 +00:00
return describeQuota ( resourceQuota )
}
func describeQuota ( resourceQuota * api . ResourceQuota ) ( string , error ) {
2015-01-23 17:38:30 +00:00
return tabbedString ( func ( out io . Writer ) error {
fmt . Fprintf ( out , "Name:\t%s\n" , resourceQuota . Name )
2015-06-15 09:12:29 +00:00
fmt . Fprintf ( out , "Namespace:\t%s\n" , resourceQuota . Namespace )
2015-01-23 17:38:30 +00:00
fmt . Fprintf ( out , "Resource\tUsed\tHard\n" )
fmt . Fprintf ( out , "--------\t----\t----\n" )
resources := [ ] api . ResourceName { }
for resource := range resourceQuota . Status . Hard {
resources = append ( resources , resource )
}
sort . Sort ( SortableResourceNames ( resources ) )
msg := "%v\t%v\t%v\n"
for i := range resources {
resource := resources [ i ]
hardQuantity := resourceQuota . Status . Hard [ resource ]
usedQuantity := resourceQuota . Status . Used [ resource ]
fmt . Fprintf ( out , msg , resource , usedQuantity . String ( ) , hardQuantity . String ( ) )
}
return nil
} )
}
2014-10-27 19:56:34 +00:00
// PodDescriber generates information about a pod and the replication controllers that
// create it.
type PodDescriber struct {
2014-11-14 01:42:50 +00:00
client . Interface
2014-10-27 19:56:34 +00:00
}
func ( d * PodDescriber ) Describe ( namespace , name string ) ( string , error ) {
2014-11-14 01:42:50 +00:00
rc := d . ReplicationControllers ( namespace )
pc := d . Pods ( namespace )
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 {
2015-03-17 02:02:22 +00:00
eventsInterface := d . Events ( namespace )
events , err2 := eventsInterface . List (
2014-11-14 19:56:41 +00:00
labels . Everything ( ) ,
2015-03-17 02:02:22 +00:00
eventsInterface . GetFieldSelector ( & name , & namespace , nil , nil ) )
2014-11-14 19:56:41 +00:00
if err2 == nil && len ( events . Items ) > 0 {
return tabbedString ( func ( out io . Writer ) error {
fmt . Fprintf ( out , "Pod '%v': error '%v', but found events.\n" , name , err )
2015-04-21 04:24:12 +00:00
DescribeEvents ( events , out )
2014-11-14 19:56:41 +00:00
return nil
} )
}
2014-10-06 01:24:19 +00:00
return "" , err
}
2014-11-24 23:17:28 +00:00
var events * api . EventList
if ref , err := api . GetReference ( pod ) ; err != nil {
glog . Errorf ( "Unable to construct reference to '%#v': %v" , pod , err )
} else {
2015-03-16 12:20:03 +00:00
ref . Kind = ""
2014-11-24 23:17:28 +00:00
events , _ = d . Events ( namespace ) . Search ( ref )
}
2014-11-14 19:56:41 +00:00
2015-02-26 18:50:12 +00:00
rcs , err := getReplicationControllersForLabels ( rc , labels . Set ( pod . Labels ) )
if err != nil {
return "" , err
}
2015-09-12 16:46:10 +00:00
return describePod ( pod , rcs , events )
2015-02-26 18:50:12 +00:00
}
2015-09-12 16:46:10 +00:00
func describePod ( pod * api . Pod , rcs [ ] api . ReplicationController , events * api . EventList ) ( string , error ) {
2014-11-14 19:56:41 +00:00
return tabbedString ( func ( out io . Writer ) error {
2014-10-22 17:02:02 +00:00
fmt . Fprintf ( out , "Name:\t%s\n" , pod . Name )
2015-06-15 09:12:29 +00:00
fmt . Fprintf ( out , "Namespace:\t%s\n" , pod . Namespace )
2015-02-26 18:50:12 +00:00
fmt . Fprintf ( out , "Image(s):\t%s\n" , makeImageList ( & pod . Spec ) )
2015-05-22 23:40:57 +00:00
fmt . Fprintf ( out , "Node:\t%s\n" , pod . Spec . NodeName + "/" + pod . Status . HostIP )
2015-08-14 00:28:01 +00:00
if pod . Status . StartTime != nil {
fmt . Fprintf ( out , "Start Time:\t%s\n" , pod . Status . StartTime . Time . Format ( time . RFC1123Z ) )
}
2015-08-16 09:33:35 +00:00
fmt . Fprintf ( out , "Labels:\t%s\n" , labels . FormatLabels ( pod . Labels ) )
2015-08-20 01:52:34 +00:00
if pod . DeletionTimestamp != nil {
fmt . Fprintf ( out , "Status:\tTerminating (expires %s)\n" , pod . DeletionTimestamp . Time . Format ( time . RFC1123Z ) )
2015-09-28 14:54:12 +00:00
fmt . Fprintf ( out , "Termination Grace Period:\t%ds\n" , * pod . DeletionGracePeriodSeconds )
2015-08-20 01:52:34 +00:00
} else {
fmt . Fprintf ( out , "Status:\t%s\n" , string ( pod . Status . Phase ) )
}
2015-06-25 05:05:42 +00:00
fmt . Fprintf ( out , "Reason:\t%s\n" , pod . Status . Reason )
fmt . Fprintf ( out , "Message:\t%s\n" , pod . Status . Message )
2015-06-17 20:45:11 +00:00
fmt . Fprintf ( out , "IP:\t%s\n" , pod . Status . PodIP )
2015-09-18 20:35:56 +00:00
var matchingRCs [ ] * api . ReplicationController
for _ , rc := range rcs {
matchingRCs = append ( matchingRCs , & rc )
}
fmt . Fprintf ( out , "Replication Controllers:\t%s\n" , printReplicationControllersByLabels ( matchingRCs ) )
2015-04-02 15:42:19 +00:00
fmt . Fprintf ( out , "Containers:\n" )
2015-06-05 04:49:01 +00:00
describeContainers ( pod , out )
2015-02-10 05:09:32 +00:00
if len ( pod . Status . Conditions ) > 0 {
2015-02-24 05:21:14 +00:00
fmt . Fprint ( out , "Conditions:\n Type\tStatus\n" )
2015-02-10 05:09:32 +00:00
for _ , c := range pod . Status . Conditions {
fmt . Fprintf ( out , " %v \t%v \n" ,
2015-02-24 05:21:14 +00:00
c . Type ,
2015-02-10 05:09:32 +00:00
c . Status )
}
}
2015-08-13 00:14:51 +00:00
describeVolumes ( pod . Spec . Volumes , out )
2014-11-14 19:56:41 +00:00
if events != nil {
2015-04-21 04:24:12 +00:00
DescribeEvents ( events , out )
2014-11-14 19:56:41 +00:00
}
2014-10-06 01:24:19 +00:00
return nil
} )
}
2015-08-13 00:14:51 +00:00
func describeVolumes ( volumes [ ] api . Volume , out io . Writer ) {
if volumes == nil || len ( volumes ) == 0 {
fmt . Fprint ( out , "No volumes.\n" )
return
}
fmt . Fprint ( out , "Volumes:\n" )
for _ , volume := range volumes {
fmt . Fprintf ( out , " %v:\n" , volume . Name )
switch {
case volume . VolumeSource . HostPath != nil :
printHostPathVolumeSource ( volume . VolumeSource . HostPath , out )
case volume . VolumeSource . EmptyDir != nil :
printEmptyDirVolumeSource ( volume . VolumeSource . EmptyDir , out )
case volume . VolumeSource . GCEPersistentDisk != nil :
printGCEPersistentDiskVolumeSource ( volume . VolumeSource . GCEPersistentDisk , out )
case volume . VolumeSource . AWSElasticBlockStore != nil :
printAWSElasticBlockStoreVolumeSource ( volume . VolumeSource . AWSElasticBlockStore , out )
case volume . VolumeSource . GitRepo != nil :
printGitRepoVolumeSource ( volume . VolumeSource . GitRepo , out )
case volume . VolumeSource . Secret != nil :
printSecretVolumeSource ( volume . VolumeSource . Secret , out )
case volume . VolumeSource . NFS != nil :
printNFSVolumeSource ( volume . VolumeSource . NFS , out )
case volume . VolumeSource . ISCSI != nil :
printISCSIVolumeSource ( volume . VolumeSource . ISCSI , out )
case volume . VolumeSource . Glusterfs != nil :
printGlusterfsVolumeSource ( volume . VolumeSource . Glusterfs , out )
case volume . VolumeSource . PersistentVolumeClaim != nil :
printPersistentVolumeClaimVolumeSource ( volume . VolumeSource . PersistentVolumeClaim , out )
case volume . VolumeSource . RBD != nil :
printRBDVolumeSource ( volume . VolumeSource . RBD , out )
default :
fmt . Fprintf ( out , " <Volume Type Not Found>\n" )
}
}
}
func printHostPathVolumeSource ( hostPath * api . HostPathVolumeSource , out io . Writer ) {
fmt . Fprintf ( out , " Type:\tHostPath (bare host directory volume)\n" +
" Path:\t%v\n" , hostPath . Path )
}
func printEmptyDirVolumeSource ( emptyDir * api . EmptyDirVolumeSource , out io . Writer ) {
fmt . Fprintf ( out , " Type:\tEmptyDir (a temporary directory that shares a pod's lifetime)\n" +
" Medium:\t%v\n" , emptyDir . Medium )
}
func printGCEPersistentDiskVolumeSource ( gce * api . GCEPersistentDiskVolumeSource , out io . Writer ) {
fmt . Fprintf ( out , " Type:\tGCEPersistentDisk (a Persistent Disk resource in Google Compute Engine)\n" +
" PDName:\t%v\n" +
" FSType:\t%v\n" +
" Partition:\t%v\n" +
" ReadOnly:\t%v\n" ,
gce . PDName , gce . FSType , gce . Partition , gce . ReadOnly )
}
func printAWSElasticBlockStoreVolumeSource ( aws * api . AWSElasticBlockStoreVolumeSource , out io . Writer ) {
fmt . Fprintf ( out , " Type:\tAWSElasticBlockStore (a Persistent Disk resource in AWS)\n" +
" VolumeID:\t%v\n" +
" FSType:\t%v\n" +
" Partition:\t%v\n" +
" ReadOnly:\t%v\n" ,
aws . VolumeID , aws . FSType , aws . Partition , aws . ReadOnly )
}
func printGitRepoVolumeSource ( git * api . GitRepoVolumeSource , out io . Writer ) {
fmt . Fprintf ( out , " Type:\tGitRepo (a volume that is pulled from git when the pod is created)\n" +
" Repository:\t%v\n" +
" Revision:\t%v\n" ,
git . Repository , git . Revision )
}
func printSecretVolumeSource ( secret * api . SecretVolumeSource , out io . Writer ) {
fmt . Fprintf ( out , " Type:\tSecret (a secret that should populate this volume)\n" +
" SecretName:\t%v\n" , secret . SecretName )
}
func printNFSVolumeSource ( nfs * api . NFSVolumeSource , out io . Writer ) {
fmt . Fprintf ( out , " Type:\tNFS (an NFS mount that lasts the lifetime of a pod)\n" +
" Server:\t%v\n" +
" Path:\t%v\n" +
" ReadOnly:\t%v\n" ,
nfs . Server , nfs . Path , nfs . ReadOnly )
}
func printISCSIVolumeSource ( iscsi * api . ISCSIVolumeSource , out io . Writer ) {
fmt . Fprintf ( out , " Type:\tISCSI (an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod)\n" +
" TargetPortal:\t%v\n" +
" IQN:\t%v\n" +
" Lun:\t%v\n" +
" FSType:\t%v\n" +
" ReadOnly:\t%v\n" ,
iscsi . TargetPortal , iscsi . IQN , iscsi . Lun , iscsi . FSType , iscsi . ReadOnly )
}
func printGlusterfsVolumeSource ( glusterfs * api . GlusterfsVolumeSource , out io . Writer ) {
fmt . Fprintf ( out , " Type:\tGlusterfs (a Glusterfs mount on the host that shares a pod's lifetime)\n" +
" EndpointsName:\t%v\n" +
" Path:\t%v\n" +
" ReadOnly:\t%v\n" ,
glusterfs . EndpointsName , glusterfs . Path , glusterfs . ReadOnly )
}
func printPersistentVolumeClaimVolumeSource ( claim * api . PersistentVolumeClaimVolumeSource , out io . Writer ) {
fmt . Fprintf ( out , " Type:\tPersistentVolumeClaim (a reference to a PersistentVolumeClaim in the same namespace)\n" +
" ClaimName:\t%v\n" +
" ReadOnly:\t%v\n" ,
claim . ClaimName , claim . ReadOnly )
}
func printRBDVolumeSource ( rbd * api . RBDVolumeSource , out io . Writer ) {
fmt . Fprintf ( out , " Type:\tRBD (a Rados Block Device mount on the host that shares a pod's lifetime)\n" +
" CephMonitors:\t%v\n" +
" RBDImage:\t%v\n" +
" FSType:\t%v\n" +
" RBDPool:\t%v\n" +
" RadosUser:\t%v\n" +
" Keyring:\t%v\n" +
" SecretRef:\t%v\n" +
" ReadOnly:\t%v\n" ,
rbd . CephMonitors , rbd . RBDImage , rbd . FSType , rbd . RBDPool , rbd . RadosUser , rbd . Keyring , rbd . SecretRef , rbd . ReadOnly )
}
2015-03-26 19:50:36 +00:00
type PersistentVolumeDescriber struct {
client . Interface
}
func ( d * PersistentVolumeDescriber ) Describe ( namespace , name string ) ( string , error ) {
c := d . PersistentVolumes ( )
pv , err := c . Get ( name )
if err != nil {
return "" , err
}
2015-08-11 03:55:15 +00:00
storage := pv . Spec . Capacity [ api . ResourceStorage ]
2015-03-26 19:50:36 +00:00
return tabbedString ( func ( out io . Writer ) error {
fmt . Fprintf ( out , "Name:\t%s\n" , pv . Name )
2015-08-16 09:33:35 +00:00
fmt . Fprintf ( out , "Labels:\t%s\n" , labels . FormatLabels ( pv . Labels ) )
2015-05-22 12:40:43 +00:00
fmt . Fprintf ( out , "Status:\t%s\n" , pv . Status . Phase )
2015-05-02 10:49:19 +00:00
if pv . Spec . ClaimRef != nil {
2015-05-22 12:40:43 +00:00
fmt . Fprintf ( out , "Claim:\t%s\n" , pv . Spec . ClaimRef . Namespace + "/" + pv . Spec . ClaimRef . Name )
2015-05-02 10:49:19 +00:00
} else {
2015-05-22 12:40:43 +00:00
fmt . Fprintf ( out , "Claim:\t%s\n" , "" )
2015-05-02 10:49:19 +00:00
}
2015-08-08 01:52:23 +00:00
fmt . Fprintf ( out , "Reclaim Policy:\t%v\n" , pv . Spec . PersistentVolumeReclaimPolicy )
2015-07-13 19:10:04 +00:00
fmt . Fprintf ( out , "Access Modes:\t%s\n" , api . GetAccessModesAsString ( pv . Spec . AccessModes ) )
2015-08-11 03:55:15 +00:00
fmt . Fprintf ( out , "Capacity:\t%s\n" , storage . String ( ) )
2015-08-08 01:52:23 +00:00
fmt . Fprintf ( out , "Message:\t%s\n" , pv . Status . Message )
2015-08-14 15:28:16 +00:00
fmt . Fprintf ( out , "Source:\n" )
switch {
case pv . Spec . HostPath != nil :
printHostPathVolumeSource ( pv . Spec . HostPath , out )
case pv . Spec . GCEPersistentDisk != nil :
printGCEPersistentDiskVolumeSource ( pv . Spec . GCEPersistentDisk , out )
case pv . Spec . AWSElasticBlockStore != nil :
printAWSElasticBlockStoreVolumeSource ( pv . Spec . AWSElasticBlockStore , out )
case pv . Spec . NFS != nil :
printNFSVolumeSource ( pv . Spec . NFS , out )
case pv . Spec . ISCSI != nil :
printISCSIVolumeSource ( pv . Spec . ISCSI , out )
case pv . Spec . Glusterfs != nil :
printGlusterfsVolumeSource ( pv . Spec . Glusterfs , out )
case pv . Spec . RBD != nil :
printRBDVolumeSource ( pv . Spec . RBD , out )
}
2015-03-26 19:50:36 +00:00
return nil
} )
}
type PersistentVolumeClaimDescriber struct {
client . Interface
}
func ( d * PersistentVolumeClaimDescriber ) Describe ( namespace , name string ) ( string , error ) {
c := d . PersistentVolumeClaims ( namespace )
2015-05-13 00:44:29 +00:00
pvc , err := c . Get ( name )
2015-03-26 19:50:36 +00:00
if err != nil {
return "" , err
}
2015-08-16 09:33:35 +00:00
labels := labels . FormatLabels ( pvc . Labels )
2015-08-11 03:55:15 +00:00
storage := pvc . Spec . Resources . Requests [ api . ResourceStorage ]
capacity := ""
accessModes := ""
if pvc . Spec . VolumeName != "" {
2015-07-13 19:10:04 +00:00
accessModes = api . GetAccessModesAsString ( pvc . Status . AccessModes )
2015-08-11 03:55:15 +00:00
storage = pvc . Status . Capacity [ api . ResourceStorage ]
capacity = storage . String ( )
}
2015-03-26 19:50:36 +00:00
return tabbedString ( func ( out io . Writer ) error {
2015-05-13 00:44:29 +00:00
fmt . Fprintf ( out , "Name:\t%s\n" , pvc . Name )
2015-06-15 09:12:29 +00:00
fmt . Fprintf ( out , "Namespace:\t%s\n" , pvc . Namespace )
2015-08-08 01:52:23 +00:00
fmt . Fprintf ( out , "Status:\t%v\n" , pvc . Status . Phase )
fmt . Fprintf ( out , "Volume:\t%s\n" , pvc . Spec . VolumeName )
2015-08-11 03:55:15 +00:00
fmt . Fprintf ( out , "Labels:\t%s\n" , labels )
fmt . Fprintf ( out , "Capacity:\t%s\n" , capacity )
fmt . Fprintf ( out , "Access Modes:\t%s\n" , accessModes )
2015-03-26 19:50:36 +00:00
return nil
} )
}
2015-06-05 04:49:01 +00:00
func describeContainers ( pod * api . Pod , out io . Writer ) {
statuses := map [ string ] api . ContainerStatus { }
for _ , status := range pod . Status . ContainerStatuses {
statuses [ status . Name ] = status
}
for _ , container := range pod . Spec . Containers {
status := statuses [ container . Name ]
state := status . State
2015-04-02 15:42:19 +00:00
fmt . Fprintf ( out , " %v:\n" , container . Name )
2015-08-14 00:28:01 +00:00
fmt . Fprintf ( out , " Container ID:\t%s\n" , status . ContainerID )
2015-04-02 15:42:19 +00:00
fmt . Fprintf ( out , " Image:\t%s\n" , container . Image )
2015-08-14 00:28:01 +00:00
fmt . Fprintf ( out , " Image ID:\t%s\n" , status . ImageID )
2015-06-05 04:49:01 +00:00
2015-09-01 23:35:32 +00:00
resourceToQoS := qosutil . GetQoS ( & container )
if len ( resourceToQoS ) > 0 {
fmt . Fprintf ( out , " QoS Tier:\n" )
}
for resource , qos := range resourceToQoS {
fmt . Fprintf ( out , " %s:\t%s\n" , resource , qos )
}
2015-06-05 04:49:01 +00:00
if len ( container . Resources . Limits ) > 0 {
fmt . Fprintf ( out , " Limits:\n" )
}
for name , quantity := range container . Resources . Limits {
fmt . Fprintf ( out , " %s:\t%s\n" , name , quantity . String ( ) )
}
2015-08-14 00:28:01 +00:00
if len ( container . Resources . Requests ) > 0 {
fmt . Fprintf ( out , " Requests:\n" )
}
for name , quantity := range container . Resources . Requests {
fmt . Fprintf ( out , " %s:\t%s\n" , name , quantity . String ( ) )
}
2015-08-07 01:45:20 +00:00
describeStatus ( "State" , state , out )
if status . LastTerminationState . Terminated != nil {
describeStatus ( "Last Termination State" , status . LastTerminationState , out )
2015-04-02 15:42:19 +00:00
}
2015-06-05 04:49:01 +00:00
fmt . Fprintf ( out , " Ready:\t%v\n" , printBool ( status . Ready ) )
fmt . Fprintf ( out , " Restart Count:\t%d\n" , status . RestartCount )
2015-09-02 02:02:07 +00:00
fmt . Fprintf ( out , " Environment Variables:\n" )
2015-07-04 14:31:15 +00:00
for _ , e := range container . Env {
if e . ValueFrom != nil && e . ValueFrom . FieldRef != nil {
valueFrom := envValueFrom ( pod , e )
fmt . Fprintf ( out , " %s:\t%s (%s:%s)\n" , e . Name , valueFrom , e . ValueFrom . FieldRef . APIVersion , e . ValueFrom . FieldRef . FieldPath )
} else {
fmt . Fprintf ( out , " %s:\t%s\n" , e . Name , e . Value )
}
}
2015-04-02 15:42:19 +00:00
}
}
2015-07-04 14:31:15 +00:00
func envValueFrom ( pod * api . Pod , e api . EnvVar ) string {
internalFieldPath , _ , err := api . Scheme . ConvertFieldLabel ( e . ValueFrom . FieldRef . APIVersion , "Pod" , e . ValueFrom . FieldRef . FieldPath , "" )
if err != nil {
return "" // pod validation should catch this on create
}
valueFrom , err := fieldpath . ExtractFieldPathAsString ( pod , internalFieldPath )
if err != nil {
return "" // pod validation should catch this on create
}
return valueFrom
}
2015-08-07 01:45:20 +00:00
func describeStatus ( stateName string , state api . ContainerState , out io . Writer ) {
switch {
case state . Running != nil :
fmt . Fprintf ( out , " %s:\tRunning\n" , stateName )
fmt . Fprintf ( out , " Started:\t%v\n" , state . Running . StartedAt . Time . Format ( time . RFC1123Z ) )
case state . Waiting != nil :
fmt . Fprintf ( out , " %s:\tWaiting\n" , stateName )
if state . Waiting . Reason != "" {
fmt . Fprintf ( out , " Reason:\t%s\n" , state . Waiting . Reason )
}
case state . Terminated != nil :
fmt . Fprintf ( out , " %s:\tTerminated\n" , stateName )
if state . Terminated . Reason != "" {
fmt . Fprintf ( out , " Reason:\t%s\n" , state . Terminated . Reason )
}
if state . Terminated . Message != "" {
fmt . Fprintf ( out , " Message:\t%s\n" , state . Terminated . Message )
}
fmt . Fprintf ( out , " Exit Code:\t%d\n" , state . Terminated . ExitCode )
if state . Terminated . Signal > 0 {
fmt . Fprintf ( out , " Signal:\t%d\n" , state . Terminated . Signal )
}
fmt . Fprintf ( out , " Started:\t%s\n" , state . Terminated . StartedAt . Time . Format ( time . RFC1123Z ) )
fmt . Fprintf ( out , " Finished:\t%s\n" , state . Terminated . FinishedAt . Time . Format ( time . RFC1123Z ) )
default :
fmt . Fprintf ( out , " %s:\tWaiting\n" , stateName )
}
}
2015-04-02 15:42:19 +00:00
func printBool ( value bool ) string {
if value {
return "True"
}
return "False"
}
2014-10-27 19:56:34 +00:00
// ReplicationControllerDescriber generates information about a replication controller
// and the pods it has created.
type ReplicationControllerDescriber struct {
2014-11-14 01:42:50 +00:00
client . Interface
2014-10-27 19:56:34 +00:00
}
func ( d * ReplicationControllerDescriber ) Describe ( namespace , name string ) ( string , error ) {
2014-11-14 01:42:50 +00:00
rc := d . ReplicationControllers ( namespace )
pc := d . Pods ( namespace )
2014-10-06 01:24:19 +00:00
2014-10-27 19:56:34 +00:00
controller , err := rc . Get ( name )
if err != nil {
return "" , err
}
2015-08-27 17:18:16 +00:00
running , waiting , succeeded , failed , err := getPodStatusForController ( pc , controller . Spec . Selector )
2014-10-06 01:24:19 +00:00
if err != nil {
return "" , err
}
2014-11-14 19:56:41 +00:00
events , _ := d . Events ( namespace ) . Search ( controller )
2015-02-26 18:50:12 +00:00
return describeReplicationController ( controller , events , running , waiting , succeeded , failed )
}
func describeReplicationController ( controller * api . ReplicationController , events * api . EventList , running , waiting , succeeded , failed int ) ( string , error ) {
2014-11-14 19:56:41 +00:00
return tabbedString ( func ( out io . Writer ) error {
2014-10-22 17:02:02 +00:00
fmt . Fprintf ( out , "Name:\t%s\n" , controller . Name )
2015-06-15 09:12:29 +00:00
fmt . Fprintf ( out , "Namespace:\t%s\n" , controller . Namespace )
2015-02-26 18:50:12 +00:00
if controller . Spec . Template != nil {
fmt . Fprintf ( out , "Image(s):\t%s\n" , makeImageList ( & controller . Spec . Template . Spec ) )
} else {
fmt . Fprintf ( out , "Image(s):\t%s\n" , "<no template>" )
}
2015-08-16 09:33:35 +00:00
fmt . Fprintf ( out , "Selector:\t%s\n" , labels . FormatLabels ( controller . Spec . Selector ) )
fmt . Fprintf ( out , "Labels:\t%s\n" , labels . FormatLabels ( controller . Labels ) )
2014-11-07 02:09:46 +00:00
fmt . Fprintf ( out , "Replicas:\t%d current / %d desired\n" , controller . Status . Replicas , controller . Spec . Replicas )
2014-11-05 15:22:54 +00:00
fmt . Fprintf ( out , "Pods Status:\t%d Running / %d Waiting / %d Succeeded / %d Failed\n" , running , waiting , succeeded , failed )
2015-08-13 00:14:51 +00:00
if controller . Spec . Template != nil {
describeVolumes ( controller . Spec . Template . Spec . Volumes , out )
}
2014-11-14 19:56:41 +00:00
if events != nil {
2015-04-21 04:24:12 +00:00
DescribeEvents ( events , out )
2014-11-14 19:56:41 +00:00
}
2014-10-06 01:24:19 +00:00
return nil
} )
}
2015-08-21 14:23:12 +00:00
// JobDescriber generates information about a job and the pods it has created.
type JobDescriber struct {
client * client . Client
}
func ( d * JobDescriber ) Describe ( namespace , name string ) ( string , error ) {
2015-10-12 18:18:50 +00:00
job , err := d . client . Extensions ( ) . Jobs ( namespace ) . Get ( name )
2015-08-21 14:23:12 +00:00
if err != nil {
return "" , err
}
events , _ := d . client . Events ( namespace ) . Search ( job )
return describeJob ( job , events )
}
2015-10-09 22:49:10 +00:00
func describeJob ( job * extensions . Job , events * api . EventList ) ( string , error ) {
2015-08-21 14:23:12 +00:00
return tabbedString ( func ( out io . Writer ) error {
fmt . Fprintf ( out , "Name:\t%s\n" , job . Name )
fmt . Fprintf ( out , "Namespace:\t%s\n" , job . Namespace )
2015-09-25 19:07:06 +00:00
fmt . Fprintf ( out , "Image(s):\t%s\n" , makeImageList ( & job . Spec . Template . Spec ) )
2015-08-21 14:23:12 +00:00
fmt . Fprintf ( out , "Selector:\t%s\n" , labels . FormatLabels ( job . Spec . Selector ) )
2015-09-21 20:55:19 +00:00
fmt . Fprintf ( out , "Parallelism:\t%d\n" , * job . Spec . Parallelism )
fmt . Fprintf ( out , "Completions:\t%d\n" , * job . Spec . Completions )
2015-08-21 14:23:12 +00:00
fmt . Fprintf ( out , "Labels:\t%s\n" , labels . FormatLabels ( job . Labels ) )
2015-10-08 17:33:39 +00:00
fmt . Fprintf ( out , "Pods Statuses:\t%d Running / %d Succeeded / %d Failed\n" , job . Status . Active , job . Status . Succeeded , job . Status . Failed )
2015-09-25 19:07:06 +00:00
describeVolumes ( job . Spec . Template . Spec . Volumes , out )
2015-08-21 14:23:12 +00:00
if events != nil {
DescribeEvents ( events , out )
}
return nil
} )
}
2015-09-12 16:46:10 +00:00
// DaemonSetDescriber generates information about a daemon set and the pods it has created.
type DaemonSetDescriber struct {
2015-08-27 17:18:16 +00:00
client . Interface
}
2015-09-12 16:46:10 +00:00
func ( d * DaemonSetDescriber ) Describe ( namespace , name string ) ( string , error ) {
2015-10-12 18:18:50 +00:00
dc := d . Extensions ( ) . DaemonSets ( namespace )
2015-08-27 17:18:16 +00:00
pc := d . Pods ( namespace )
daemon , err := dc . Get ( name )
if err != nil {
return "" , err
}
running , waiting , succeeded , failed , err := getPodStatusForController ( pc , daemon . Spec . Selector )
if err != nil {
return "" , err
}
events , _ := d . Events ( namespace ) . Search ( daemon )
2015-09-12 16:46:10 +00:00
return describeDaemonSet ( daemon , events , running , waiting , succeeded , failed )
2015-08-27 17:18:16 +00:00
}
2015-10-09 22:49:10 +00:00
func describeDaemonSet ( daemon * extensions . DaemonSet , events * api . EventList , running , waiting , succeeded , failed int ) ( string , error ) {
2015-08-27 17:18:16 +00:00
return tabbedString ( func ( out io . Writer ) error {
fmt . Fprintf ( out , "Name:\t%s\n" , daemon . Name )
if daemon . Spec . Template != nil {
fmt . Fprintf ( out , "Image(s):\t%s\n" , makeImageList ( & daemon . Spec . Template . Spec ) )
} else {
fmt . Fprintf ( out , "Image(s):\t%s\n" , "<no template>" )
}
fmt . Fprintf ( out , "Selector:\t%s\n" , labels . FormatLabels ( daemon . Spec . Selector ) )
fmt . Fprintf ( out , "Node-Selector:\t%s\n" , labels . FormatLabels ( daemon . Spec . Template . Spec . NodeSelector ) )
fmt . Fprintf ( out , "Labels:\t%s\n" , labels . FormatLabels ( daemon . Labels ) )
fmt . Fprintf ( out , "Desired Number of Nodes Scheduled: %d\n" , daemon . Status . DesiredNumberScheduled )
fmt . Fprintf ( out , "Current Number of Nodes Scheduled: %d\n" , daemon . Status . CurrentNumberScheduled )
fmt . Fprintf ( out , "Number of Nodes Misscheduled: %d\n" , daemon . Status . NumberMisscheduled )
fmt . Fprintf ( out , "Pods Status:\t%d Running / %d Waiting / %d Succeeded / %d Failed\n" , running , waiting , succeeded , failed )
if events != nil {
DescribeEvents ( events , out )
}
return nil
} )
}
2015-04-28 03:51:20 +00:00
// SecretDescriber generates information about a secret
type SecretDescriber struct {
client . Interface
}
func ( d * SecretDescriber ) Describe ( namespace , name string ) ( string , error ) {
c := d . Secrets ( namespace )
secret , err := c . Get ( name )
if err != nil {
return "" , err
}
return describeSecret ( secret )
}
func describeSecret ( secret * api . Secret ) ( string , error ) {
return tabbedString ( func ( out io . Writer ) error {
fmt . Fprintf ( out , "Name:\t%s\n" , secret . Name )
2015-06-15 09:12:29 +00:00
fmt . Fprintf ( out , "Namespace:\t%s\n" , secret . Namespace )
2015-08-16 09:33:35 +00:00
fmt . Fprintf ( out , "Labels:\t%s\n" , labels . FormatLabels ( secret . Labels ) )
fmt . Fprintf ( out , "Annotations:\t%s\n" , labels . FormatLabels ( secret . Annotations ) )
2015-04-28 03:51:20 +00:00
fmt . Fprintf ( out , "\nType:\t%s\n" , secret . Type )
fmt . Fprintf ( out , "\nData\n====\n" )
for k , v := range secret . Data {
switch {
case k == api . ServiceAccountTokenKey && secret . Type == api . SecretTypeServiceAccountToken :
fmt . Fprintf ( out , "%s:\t%s\n" , k , string ( v ) )
default :
fmt . Fprintf ( out , "%s:\t%d bytes\n" , k , len ( v ) )
}
}
return nil
} )
}
2014-10-27 19:56:34 +00:00
// ServiceDescriber generates information about a service.
type ServiceDescriber struct {
2014-11-14 01:42:50 +00:00
client . Interface
2014-10-27 19:56:34 +00:00
}
func ( d * ServiceDescriber ) Describe ( namespace , name string ) ( string , error ) {
2014-11-14 01:42:50 +00:00
c := d . Services ( namespace )
2014-10-27 19:56:34 +00:00
service , err := c . Get ( name )
2014-10-06 01:24:19 +00:00
if err != nil {
return "" , err
}
2015-02-26 18:50:12 +00:00
endpoints , _ := d . Endpoints ( namespace ) . Get ( name )
2014-11-14 19:56:41 +00:00
events , _ := d . Events ( namespace ) . Search ( service )
2015-02-26 18:50:12 +00:00
return describeService ( service , endpoints , events )
}
2015-05-22 21:33:29 +00:00
func buildIngressString ( ingress [ ] api . LoadBalancerIngress ) string {
var buffer bytes . Buffer
for i := range ingress {
if i != 0 {
buffer . WriteString ( ", " )
}
if ingress [ i ] . IP != "" {
buffer . WriteString ( ingress [ i ] . IP )
} else {
buffer . WriteString ( ingress [ i ] . Hostname )
}
}
return buffer . String ( )
}
2015-02-26 18:50:12 +00:00
func describeService ( service * api . Service , endpoints * api . Endpoints , events * api . EventList ) ( string , error ) {
if endpoints == nil {
endpoints = & api . Endpoints { }
}
2014-11-14 19:56:41 +00:00
return tabbedString ( func ( out io . Writer ) error {
2014-10-22 17:02:02 +00:00
fmt . Fprintf ( out , "Name:\t%s\n" , service . Name )
2015-06-15 09:12:29 +00:00
fmt . Fprintf ( out , "Namespace:\t%s\n" , service . Namespace )
2015-08-16 09:33:35 +00:00
fmt . Fprintf ( out , "Labels:\t%s\n" , labels . FormatLabels ( service . Labels ) )
fmt . Fprintf ( out , "Selector:\t%s\n" , labels . FormatLabels ( service . Spec . Selector ) )
2015-05-22 21:49:26 +00:00
fmt . Fprintf ( out , "Type:\t%s\n" , service . Spec . Type )
2015-05-23 20:41:11 +00:00
fmt . Fprintf ( out , "IP:\t%s\n" , service . Spec . ClusterIP )
2015-05-22 21:33:29 +00:00
if len ( service . Status . LoadBalancer . Ingress ) > 0 {
list := buildIngressString ( service . Status . LoadBalancer . Ingress )
2015-05-22 22:58:39 +00:00
fmt . Fprintf ( out , "LoadBalancer Ingress:\t%s\n" , list )
2015-02-21 23:13:28 +00:00
}
2015-03-13 15:16:41 +00:00
for i := range service . Spec . Ports {
sp := & service . Spec . Ports [ i ]
name := sp . Name
if name == "" {
name = "<unnamed>"
}
2015-03-31 16:30:56 +00:00
fmt . Fprintf ( out , "Port:\t%s\t%d/%s\n" , name , sp . Port , sp . Protocol )
2015-05-22 22:58:39 +00:00
if sp . NodePort != 0 {
2015-05-28 19:09:31 +00:00
fmt . Fprintf ( out , "NodePort:\t%s\t%d/%s\n" , name , sp . NodePort , sp . Protocol )
2015-05-22 22:58:39 +00:00
}
2015-09-09 17:45:01 +00:00
fmt . Fprintf ( out , "Endpoints:\t%s\n" , formatEndpoints ( endpoints , sets . NewString ( sp . Name ) ) )
2015-03-13 15:16:41 +00:00
}
2015-02-21 23:13:28 +00:00
fmt . Fprintf ( out , "Session Affinity:\t%s\n" , service . Spec . SessionAffinity )
2014-11-14 19:56:41 +00:00
if events != nil {
2015-04-21 04:24:12 +00:00
DescribeEvents ( events , out )
2014-11-14 19:56:41 +00:00
}
2014-10-06 01:24:19 +00:00
return nil
} )
}
2015-04-27 22:53:28 +00:00
// ServiceAccountDescriber generates information about a service.
type ServiceAccountDescriber struct {
client . Interface
}
func ( d * ServiceAccountDescriber ) Describe ( namespace , name string ) ( string , error ) {
c := d . ServiceAccounts ( namespace )
serviceAccount , err := c . Get ( name )
if err != nil {
return "" , err
}
tokens := [ ] api . Secret { }
tokenSelector := fields . SelectorFromSet ( map [ string ] string { client . SecretType : string ( api . SecretTypeServiceAccountToken ) } )
secrets , err := d . Secrets ( namespace ) . List ( labels . Everything ( ) , tokenSelector )
if err == nil {
for _ , s := range secrets . Items {
name , _ := s . Annotations [ api . ServiceAccountNameKey ]
uid , _ := s . Annotations [ api . ServiceAccountUIDKey ]
if name == serviceAccount . Name && uid == string ( serviceAccount . UID ) {
tokens = append ( tokens , s )
}
}
}
return describeServiceAccount ( serviceAccount , tokens )
}
func describeServiceAccount ( serviceAccount * api . ServiceAccount , tokens [ ] api . Secret ) ( string , error ) {
return tabbedString ( func ( out io . Writer ) error {
fmt . Fprintf ( out , "Name:\t%s\n" , serviceAccount . Name )
2015-06-15 09:12:29 +00:00
fmt . Fprintf ( out , "Namespace:\t%s\n" , serviceAccount . Namespace )
2015-08-16 09:33:35 +00:00
fmt . Fprintf ( out , "Labels:\t%s\n" , labels . FormatLabels ( serviceAccount . Labels ) )
2015-07-01 17:58:29 +00:00
fmt . Fprintln ( out )
2015-04-27 22:53:28 +00:00
2015-07-01 17:58:29 +00:00
var (
emptyHeader = " "
pullHeader = "Image pull secrets:"
mountHeader = "Mountable secrets: "
tokenHeader = "Tokens: "
pullSecretNames = [ ] string { }
mountSecretNames = [ ] string { }
tokenSecretNames = [ ] string { }
)
for _ , s := range serviceAccount . ImagePullSecrets {
pullSecretNames = append ( pullSecretNames , s . Name )
}
for _ , s := range serviceAccount . Secrets {
mountSecretNames = append ( mountSecretNames , s . Name )
}
for _ , s := range tokens {
tokenSecretNames = append ( tokenSecretNames , s . Name )
2015-04-27 22:53:28 +00:00
}
2015-07-01 17:58:29 +00:00
types := map [ string ] [ ] string {
pullHeader : pullSecretNames ,
mountHeader : mountSecretNames ,
tokenHeader : tokenSecretNames ,
}
for header , names := range types {
if len ( names ) == 0 {
fmt . Fprintf ( out , "%s\t<none>\n" , header )
} else {
prefix := header
for _ , name := range names {
fmt . Fprintf ( out , "%s\t%s\n" , prefix , name )
prefix = emptyHeader
}
2015-04-27 22:53:28 +00:00
}
fmt . Fprintln ( out )
}
return nil
} )
}
2015-03-06 18:04:52 +00:00
// NodeDescriber generates information about a node.
type NodeDescriber struct {
2014-11-14 01:42:50 +00:00
client . Interface
2014-10-27 19:56:34 +00:00
}
2015-03-06 18:04:52 +00:00
func ( d * NodeDescriber ) Describe ( namespace , name string ) ( string , error ) {
2014-12-08 05:56:43 +00:00
mc := d . Nodes ( )
2015-03-06 18:04:52 +00:00
node , err := mc . Get ( name )
2014-10-06 01:24:19 +00:00
if err != nil {
return "" , err
}
2015-04-20 18:20:53 +00:00
var pods [ ] * api . Pod
2015-04-20 18:53:06 +00:00
allPods , err := d . Pods ( namespace ) . List ( labels . Everything ( ) , fields . Everything ( ) )
2015-02-21 17:07:09 +00:00
if err != nil {
return "" , err
}
2015-04-20 18:20:53 +00:00
for i := range allPods . Items {
pod := & allPods . Items [ i ]
2015-05-22 23:40:57 +00:00
if pod . Spec . NodeName != name {
2015-02-21 17:07:09 +00:00
continue
}
pods = append ( pods , pod )
}
2015-03-26 23:32:08 +00:00
var events * api . EventList
if ref , err := api . GetReference ( node ) ; err != nil {
glog . Errorf ( "Unable to construct reference to '%#v': %v" , node , err )
} else {
// TODO: We haven't decided the namespace for Node object yet.
ref . UID = types . UID ( ref . Name )
events , _ = d . Events ( "" ) . Search ( ref )
}
2014-11-14 19:56:41 +00:00
2015-02-26 18:50:12 +00:00
return describeNode ( node , pods , events )
}
2015-04-20 18:20:53 +00:00
func describeNode ( node * api . Node , pods [ ] * api . Pod , events * api . EventList ) ( string , error ) {
2014-11-14 19:56:41 +00:00
return tabbedString ( func ( out io . Writer ) error {
2015-03-06 18:04:52 +00:00
fmt . Fprintf ( out , "Name:\t%s\n" , node . Name )
2015-08-16 09:33:35 +00:00
fmt . Fprintf ( out , "Labels:\t%s\n" , labels . FormatLabels ( node . Labels ) )
2015-03-23 16:14:18 +00:00
fmt . Fprintf ( out , "CreationTimestamp:\t%s\n" , node . CreationTimestamp . Time . Format ( time . RFC1123Z ) )
2015-08-14 00:28:01 +00:00
fmt . Fprintf ( out , "Phase:\t%v\n" , node . Status . Phase )
2015-03-06 18:04:52 +00:00
if len ( node . Status . Conditions ) > 0 {
2015-03-27 14:09:51 +00:00
fmt . Fprint ( out , "Conditions:\n Type\tStatus\tLastHeartbeatTime\tLastTransitionTime\tReason\tMessage\n" )
2015-08-14 00:28:01 +00:00
fmt . Fprint ( out , " ────\t──────\t─────────────────\t──────────────────\t──────\t───────\n" )
2015-03-06 18:04:52 +00:00
for _ , c := range node . Status . Conditions {
2015-02-10 05:09:32 +00:00
fmt . Fprintf ( out , " %v \t%v \t%s \t%s \t%v \t%v\n" ,
2015-02-24 05:21:14 +00:00
c . Type ,
2015-02-10 05:09:32 +00:00
c . Status ,
2015-03-27 14:09:51 +00:00
c . LastHeartbeatTime . Time . Format ( time . RFC1123Z ) ,
2015-02-10 05:09:32 +00:00
c . LastTransitionTime . Time . Format ( time . RFC1123Z ) ,
c . Reason ,
c . Message )
}
}
2015-03-06 18:04:52 +00:00
var addresses [ ] string
for _ , address := range node . Status . Addresses {
addresses = append ( addresses , address . Address )
}
fmt . Fprintf ( out , "Addresses:\t%s\n" , strings . Join ( addresses , "," ) )
2015-03-25 13:44:40 +00:00
if len ( node . Status . Capacity ) > 0 {
2015-03-02 19:51:30 +00:00
fmt . Fprintf ( out , "Capacity:\n" )
2015-03-25 13:44:40 +00:00
for resource , value := range node . Status . Capacity {
2015-03-02 19:51:30 +00:00
fmt . Fprintf ( out , " %s:\t%s\n" , resource , value . String ( ) )
}
}
2015-03-31 07:36:06 +00:00
2015-08-14 00:28:01 +00:00
fmt . Fprintf ( out , "System Info:\n" )
fmt . Fprintf ( out , " Machine ID:\t%s\n" , node . Status . NodeInfo . MachineID )
fmt . Fprintf ( out , " System UUID:\t%s\n" , node . Status . NodeInfo . SystemUUID )
fmt . Fprintf ( out , " Boot ID:\t%s\n" , node . Status . NodeInfo . BootID )
2015-03-31 07:36:06 +00:00
fmt . Fprintf ( out , " Kernel Version:\t%s\n" , node . Status . NodeInfo . KernelVersion )
fmt . Fprintf ( out , " OS Image:\t%s\n" , node . Status . NodeInfo . OsImage )
fmt . Fprintf ( out , " Container Runtime Version:\t%s\n" , node . Status . NodeInfo . ContainerRuntimeVersion )
fmt . Fprintf ( out , " Kubelet Version:\t%s\n" , node . Status . NodeInfo . KubeletVersion )
fmt . Fprintf ( out , " Kube-Proxy Version:\t%s\n" , node . Status . NodeInfo . KubeProxyVersion )
2015-03-06 18:04:52 +00:00
if len ( node . Spec . PodCIDR ) > 0 {
fmt . Fprintf ( out , "PodCIDR:\t%s\n" , node . Spec . PodCIDR )
}
if len ( node . Spec . ExternalID ) > 0 {
fmt . Fprintf ( out , "ExternalID:\t%s\n" , node . Spec . ExternalID )
}
2015-09-10 00:20:31 +00:00
if err := describeNodeResource ( pods , node , out ) ; err != nil {
return err
}
2015-08-14 00:28:01 +00:00
2014-11-14 19:56:41 +00:00
if events != nil {
2015-04-21 04:24:12 +00:00
DescribeEvents ( events , out )
2014-11-14 19:56:41 +00:00
}
2014-10-06 01:24:19 +00:00
return nil
} )
}
2015-08-26 14:17:18 +00:00
// HorizontalPodAutoscalerDescriber generates information about a horizontal pod autoscaler.
type HorizontalPodAutoscalerDescriber struct {
2015-08-31 16:29:18 +00:00
client * client . Client
2015-08-26 14:17:18 +00:00
}
func ( d * HorizontalPodAutoscalerDescriber ) Describe ( namespace , name string ) ( string , error ) {
2015-10-12 18:18:50 +00:00
hpa , err := d . client . Extensions ( ) . HorizontalPodAutoscalers ( namespace ) . Get ( name )
2015-08-26 14:17:18 +00:00
if err != nil {
return "" , err
}
return tabbedString ( func ( out io . Writer ) error {
fmt . Fprintf ( out , "Name:\t%s\n" , hpa . Name )
fmt . Fprintf ( out , "Namespace:\t%s\n" , hpa . Namespace )
fmt . Fprintf ( out , "Labels:\t%s\n" , labels . FormatLabels ( hpa . Labels ) )
fmt . Fprintf ( out , "CreationTimestamp:\t%s\n" , hpa . CreationTimestamp . Time . Format ( time . RFC1123Z ) )
fmt . Fprintf ( out , "Reference:\t%s/%s/%s/%s\n" ,
hpa . Spec . ScaleRef . Kind ,
hpa . Spec . ScaleRef . Namespace ,
hpa . Spec . ScaleRef . Name ,
hpa . Spec . ScaleRef . Subresource )
fmt . Fprintf ( out , "Target resource consumption:\t%s %s\n" ,
hpa . Spec . Target . Quantity . String ( ) ,
hpa . Spec . Target . Resource )
fmt . Fprintf ( out , "Current resource consumption:\t" )
2015-09-29 12:25:46 +00:00
if hpa . Status . CurrentConsumption != nil {
2015-08-26 14:17:18 +00:00
fmt . Fprintf ( out , "%s %s\n" ,
hpa . Status . CurrentConsumption . Quantity . String ( ) ,
hpa . Status . CurrentConsumption . Resource )
} else {
fmt . Fprintf ( out , "<not available>\n" )
}
2015-09-17 12:08:39 +00:00
fmt . Fprintf ( out , "Min pods:\t%d\n" , hpa . Spec . MinReplicas )
fmt . Fprintf ( out , "Max pods:\t%d\n" , hpa . Spec . MaxReplicas )
2015-08-26 14:17:18 +00:00
// TODO: switch to scale subresource once the required code is submitted.
if strings . ToLower ( hpa . Spec . ScaleRef . Kind ) == "replicationcontroller" {
fmt . Fprintf ( out , "ReplicationController pods:\t" )
rc , err := d . client . ReplicationControllers ( hpa . Spec . ScaleRef . Namespace ) . Get ( hpa . Spec . ScaleRef . Name )
if err == nil {
fmt . Fprintf ( out , "%d current / %d desired\n" , rc . Status . Replicas , rc . Spec . Replicas )
} else {
fmt . Fprintf ( out , "failed to check Replication Controller\n" )
}
}
return nil
} )
}
2015-09-10 00:20:31 +00:00
func describeNodeResource ( pods [ ] * api . Pod , node * api . Node , out io . Writer ) error {
2015-08-14 00:28:01 +00:00
nonTerminatedPods := filterTerminatedPods ( pods )
fmt . Fprintf ( out , "Non-terminated Pods:\t(%d in total)\n" , len ( nonTerminatedPods ) )
2015-09-01 23:35:32 +00:00
fmt . Fprint ( out , " Namespace\tName\t\tCPU Requests\tCPU Limits\tMemory Requests\tMemory Limits\n" )
fmt . Fprint ( out , " ─────────\t────\t\t────────────\t──────────\t───────────────\t─────────────\n" )
2015-09-10 00:20:31 +00:00
for _ , pod := range nonTerminatedPods {
req , limit , err := getSinglePodTotalRequestsAndLimits ( pod )
if err != nil {
return err
2015-08-14 00:28:01 +00:00
}
2015-09-10 00:20:31 +00:00
cpuReq , cpuLimit , memoryReq , memoryLimit := req [ api . ResourceCPU ] , limit [ api . ResourceCPU ] , req [ api . ResourceMemory ] , limit [ api . ResourceMemory ]
fractionCpuReq := float64 ( cpuReq . MilliValue ( ) ) / float64 ( node . Status . Capacity . Cpu ( ) . MilliValue ( ) ) * 100
fractionCpuLimit := float64 ( cpuLimit . MilliValue ( ) ) / float64 ( node . Status . Capacity . Cpu ( ) . MilliValue ( ) ) * 100
fractionMemoryReq := float64 ( memoryReq . MilliValue ( ) ) / float64 ( node . Status . Capacity . Memory ( ) . MilliValue ( ) ) * 100
fractionMemoryLimit := float64 ( memoryLimit . MilliValue ( ) ) / float64 ( node . Status . Capacity . Memory ( ) . MilliValue ( ) ) * 100
fmt . Fprintf ( out , " %s\t%s\t\t%s (%d%%)\t%s (%d%%)\t%s (%d%%)\t%s (%d%%)\n" , pod . Namespace , pod . Name ,
cpuReq . String ( ) , int64 ( fractionCpuReq ) , cpuLimit . String ( ) , int64 ( fractionCpuLimit ) ,
memoryReq . String ( ) , int64 ( fractionMemoryReq ) , memoryLimit . String ( ) , int64 ( fractionMemoryLimit ) )
2015-08-14 00:28:01 +00:00
}
2015-09-10 00:20:31 +00:00
2015-09-10 23:25:48 +00:00
fmt . Fprint ( out , "Allocated resources:\n (Total limits may be over 100%, i.e., overcommitted. More info: http://releases.k8s.io/HEAD/docs/user-guide/compute-resources.md)\n CPU Requests\tCPU Limits\tMemory Requests\tMemory Limits\n" )
2015-09-01 23:35:32 +00:00
fmt . Fprint ( out , " ────────────\t──────────\t───────────────\t─────────────\n" )
2015-09-10 00:20:31 +00:00
reqs , limits , err := getPodsTotalRequestsAndLimits ( nonTerminatedPods )
if err != nil {
return err
}
cpuReqs , cpuLimits , memoryReqs , memoryLimits := reqs [ api . ResourceCPU ] , limits [ api . ResourceCPU ] , reqs [ api . ResourceMemory ] , limits [ api . ResourceMemory ]
fractionCpuReqs := float64 ( cpuReqs . MilliValue ( ) ) / float64 ( node . Status . Capacity . Cpu ( ) . MilliValue ( ) ) * 100
2015-09-10 23:25:48 +00:00
fractionCpuLimits := float64 ( cpuLimits . MilliValue ( ) ) / float64 ( node . Status . Capacity . Cpu ( ) . MilliValue ( ) ) * 100
2015-09-10 00:20:31 +00:00
fractionMemoryReqs := float64 ( memoryReqs . MilliValue ( ) ) / float64 ( node . Status . Capacity . Memory ( ) . MilliValue ( ) ) * 100
2015-09-10 23:25:48 +00:00
fractionMemoryLimits := float64 ( memoryLimits . MilliValue ( ) ) / float64 ( node . Status . Capacity . Memory ( ) . MilliValue ( ) ) * 100
fmt . Fprintf ( out , " %s (%d%%)\t%s (%d%%)\t%s (%d%%)\t%s (%d%%)\n" ,
cpuReqs . String ( ) , int64 ( fractionCpuReqs ) , cpuLimits . String ( ) , int64 ( fractionCpuLimits ) ,
memoryReqs . String ( ) , int64 ( fractionMemoryReqs ) , memoryLimits . String ( ) , int64 ( fractionMemoryLimits ) )
2015-09-10 00:20:31 +00:00
return nil
2015-08-14 00:28:01 +00:00
}
func filterTerminatedPods ( pods [ ] * api . Pod ) [ ] * api . Pod {
2015-07-30 02:19:17 +00:00
if len ( pods ) == 0 {
return pods
}
result := [ ] * api . Pod { }
for _ , pod := range pods {
if pod . Status . Phase == api . PodSucceeded || pod . Status . Phase == api . PodFailed {
continue
}
result = append ( result , pod )
}
return result
}
2015-09-10 00:20:31 +00:00
func getPodsTotalRequestsAndLimits ( pods [ ] * api . Pod ) ( reqs map [ api . ResourceName ] resource . Quantity , limits map [ api . ResourceName ] resource . Quantity , err error ) {
reqs , limits = map [ api . ResourceName ] resource . Quantity { } , map [ api . ResourceName ] resource . Quantity { }
2015-07-30 02:19:17 +00:00
for _ , pod := range pods {
2015-09-10 00:20:31 +00:00
podReqs , podLimits , err := getSinglePodTotalRequestsAndLimits ( pod )
2015-07-30 02:19:17 +00:00
if err != nil {
2015-09-10 00:20:31 +00:00
return nil , nil , err
2015-07-30 02:19:17 +00:00
}
for podReqName , podReqValue := range podReqs {
if value , ok := reqs [ podReqName ] ; ! ok {
2015-09-10 00:20:31 +00:00
reqs [ podReqName ] = * podReqValue . Copy ( )
2015-07-30 02:19:17 +00:00
} else if err = value . Add ( podReqValue ) ; err != nil {
2015-09-10 00:20:31 +00:00
return nil , nil , err
}
}
for podLimitName , podLimitValue := range podLimits {
if value , ok := limits [ podLimitName ] ; ! ok {
limits [ podLimitName ] = * podLimitValue . Copy ( )
} else if err = value . Add ( podLimitValue ) ; err != nil {
return nil , nil , err
2015-07-30 02:19:17 +00:00
}
}
}
2015-09-10 00:20:31 +00:00
return
2015-07-30 02:19:17 +00:00
}
2015-09-10 00:20:31 +00:00
func getSinglePodTotalRequestsAndLimits ( pod * api . Pod ) ( reqs map [ api . ResourceName ] resource . Quantity , limits map [ api . ResourceName ] resource . Quantity , err error ) {
reqs , limits = map [ api . ResourceName ] resource . Quantity { } , map [ api . ResourceName ] resource . Quantity { }
2015-07-30 02:19:17 +00:00
for _ , container := range pod . Spec . Containers {
for name , quantity := range container . Resources . Requests {
if value , ok := reqs [ name ] ; ! ok {
2015-09-10 00:20:31 +00:00
reqs [ name ] = * quantity . Copy ( )
} else if err = value . Add ( quantity ) ; err != nil {
return nil , nil , err
}
}
for name , quantity := range container . Resources . Limits {
if value , ok := limits [ name ] ; ! ok {
limits [ name ] = * quantity . Copy ( )
} else if err = value . Add ( quantity ) ; err != nil {
return nil , nil , err
2015-07-30 02:19:17 +00:00
}
}
}
2015-09-10 00:20:31 +00:00
return
2015-07-30 02:19:17 +00:00
}
2015-04-21 04:24:12 +00:00
func DescribeEvents ( el * api . EventList , w io . Writer ) {
2014-11-14 19:56:41 +00:00
if len ( el . Items ) == 0 {
fmt . Fprint ( w , "No events." )
return
}
2014-12-16 22:20:51 +00:00
sort . Sort ( SortableEvents ( el . Items ) )
2015-02-21 17:07:09 +00:00
fmt . Fprint ( w , "Events:\n FirstSeen\tLastSeen\tCount\tFrom\tSubobjectPath\tReason\tMessage\n" )
2015-08-14 00:28:01 +00:00
fmt . Fprint ( w , " ─────────\t────────\t─────\t────\t─────────────\t──────\t───────\n" )
2014-11-14 19:56:41 +00:00
for _ , e := range el . Items {
2015-02-21 17:07:09 +00:00
fmt . Fprintf ( w , " %s\t%s\t%d\t%v\t%v\t%v\t%v\n" ,
2015-08-10 07:00:24 +00:00
translateTimestamp ( e . FirstTimestamp ) ,
translateTimestamp ( e . LastTimestamp ) ,
2015-02-11 00:49:32 +00:00
e . Count ,
2014-12-16 22:20:51 +00:00
e . Source ,
e . InvolvedObject . FieldPath ,
e . Reason ,
e . Message )
2014-11-14 19:56:41 +00:00
}
}
2015-09-18 20:35:56 +00:00
// DeploymentDescriber generates information about a deployment.
type DeploymentDescriber struct {
client . Interface
}
func ( dd * DeploymentDescriber ) Describe ( namespace , name string ) ( string , error ) {
2015-10-12 18:18:50 +00:00
d , err := dd . Extensions ( ) . Deployments ( namespace ) . Get ( name )
2015-09-18 20:35:56 +00:00
if err != nil {
return "" , err
}
return tabbedString ( func ( out io . Writer ) error {
fmt . Fprintf ( out , "Name:\t%s\n" , d . ObjectMeta . Name )
fmt . Fprintf ( out , "Namespace:\t%s\n" , d . ObjectMeta . Namespace )
fmt . Fprintf ( out , "CreationTimestamp:\t%s\n" , d . CreationTimestamp . Time . Format ( time . RFC1123Z ) )
fmt . Fprintf ( out , "Labels:\t%s\n" , labels . FormatLabels ( d . Labels ) )
fmt . Fprintf ( out , "Selector:\t%s\n" , labels . FormatLabels ( d . Spec . Selector ) )
fmt . Fprintf ( out , "Replicas:\t%d updated / %d total\n" , d . Status . UpdatedReplicas , d . Spec . Replicas )
fmt . Fprintf ( out , "StrategyType:\t%s\n" , d . Spec . Strategy . Type )
if d . Spec . Strategy . RollingUpdate != nil {
ru := d . Spec . Strategy . RollingUpdate
fmt . Fprintf ( out , "RollingUpdateStrategy:\t%s max unavailable, %s max surge, %d min ready seconds\n" , ru . MaxUnavailable . String ( ) , ru . MaxSurge . String ( ) , ru . MinReadySeconds )
}
oldRCs , err := deploymentUtil . GetOldRCs ( * d , dd )
if err == nil {
fmt . Fprintf ( out , "OldReplicationControllers:\t%s\n" , printReplicationControllersByLabels ( oldRCs ) )
}
newRC , err := deploymentUtil . GetNewRC ( * d , dd )
if err == nil {
var newRCs [ ] * api . ReplicationController
if newRC != nil {
newRCs = append ( newRCs , newRC )
}
fmt . Fprintf ( out , "NewReplicationController:\t%s\n" , printReplicationControllersByLabels ( newRCs ) )
}
2015-09-29 23:55:06 +00:00
events , err := dd . Events ( namespace ) . Search ( d )
if err == nil && events != nil {
DescribeEvents ( events , out )
}
2015-09-18 20:35:56 +00:00
return nil
} )
}
2015-09-12 16:46:10 +00:00
// Get all daemon set whose selectors would match a given set of labels.
2015-08-27 17:18:16 +00:00
// TODO: Move this to pkg/client and ideally implement it server-side (instead
2015-09-12 16:46:10 +00:00
// of getting all DS's and searching through them manually).
2015-08-27 17:18:16 +00:00
// TODO: write an interface for controllers and fuse getReplicationControllersForLabels
2015-09-12 16:46:10 +00:00
// and getDaemonSetsForLabels.
2015-10-09 22:49:10 +00:00
func getDaemonSetsForLabels ( c client . DaemonSetInterface , labelsToMatch labels . Labels ) ( [ ] extensions . DaemonSet , error ) {
2015-09-12 16:46:10 +00:00
// Get all daemon sets
// TODO: this needs a namespace scope as argument
2015-10-13 10:11:48 +00:00
dss , err := c . List ( labels . Everything ( ) , fields . Everything ( ) )
2015-08-27 17:18:16 +00:00
if err != nil {
2015-09-12 16:46:10 +00:00
return nil , fmt . Errorf ( "error getting daemon set: %v" , err )
2015-08-27 17:18:16 +00:00
}
// Find the ones that match labelsToMatch.
2015-10-09 22:49:10 +00:00
var matchingDaemonSets [ ] extensions . DaemonSet
2015-09-12 16:46:10 +00:00
for _ , ds := range dss . Items {
selector := labels . SelectorFromSet ( ds . Spec . Selector )
2015-08-27 17:18:16 +00:00
if selector . Matches ( labelsToMatch ) {
2015-09-12 16:46:10 +00:00
matchingDaemonSets = append ( matchingDaemonSets , ds )
2015-08-27 17:18:16 +00:00
}
}
2015-09-12 16:46:10 +00:00
return matchingDaemonSets , nil
2015-08-27 17:18:16 +00:00
}
2014-10-06 01:24:19 +00:00
// 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).
2015-02-26 18:50:12 +00:00
func getReplicationControllersForLabels ( c client . ReplicationControllerInterface , labelsToMatch labels . Labels ) ( [ ] api . ReplicationController , error ) {
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
2015-10-13 10:11:48 +00:00
rcs , err := c . List ( labels . Everything ( ) , fields . Everything ( ) )
2014-10-06 01:24:19 +00:00
if err != nil {
2015-02-26 18:50:12 +00:00
return nil , fmt . Errorf ( "error getting replication controllers: %v" , err )
2014-10-06 01:24:19 +00:00
}
// Find the ones that match labelsToMatch.
var matchingRCs [ ] api . ReplicationController
2014-10-22 17:02:02 +00:00
for _ , controller := range rcs . Items {
2014-11-07 02:09:46 +00:00
selector := labels . SelectorFromSet ( controller . Spec . Selector )
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
}
}
2015-02-26 18:50:12 +00:00
return matchingRCs , nil
}
2014-10-06 01:24:19 +00:00
2015-09-18 20:35:56 +00:00
func printReplicationControllersByLabels ( matchingRCs [ ] * api . ReplicationController ) string {
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 {
2014-11-07 02:09:46 +00:00
rcStrings = append ( rcStrings , fmt . Sprintf ( "%s (%d/%d replicas created)" , controller . Name , controller . Status . Replicas , controller . Spec . Replicas ) )
2014-10-06 01:24:19 +00:00
}
list := strings . Join ( rcStrings , ", " )
if list == "" {
return "<none>"
}
return list
}
2015-08-27 17:18:16 +00:00
func getPodStatusForController ( c client . PodInterface , selector map [ string ] string ) ( running , waiting , succeeded , failed int , err error ) {
rcPods , err := c . List ( labels . SelectorFromSet ( selector ) , fields . Everything ( ) )
2014-10-06 01:24:19 +00:00
if err != nil {
return
}
for _ , pod := range rcPods . Items {
2014-11-21 19:04:32 +00:00
switch pod . Status . Phase {
2014-11-07 07:11:21 +00:00
case api . PodRunning :
2014-10-06 01:24:19 +00:00
running ++
2014-11-07 07:11:21 +00:00
case api . PodPending :
2014-10-06 01:24:19 +00:00
waiting ++
2014-11-07 07:11:21 +00:00
case api . PodSucceeded :
2014-11-05 15:22:54 +00:00
succeeded ++
2014-11-07 07:11:21 +00:00
case api . PodFailed :
2014-11-05 15:22:54 +00:00
failed ++
2014-10-06 01:24:19 +00:00
}
}
return
}
2015-02-26 18:50:12 +00:00
// newErrNoDescriber creates a new ErrNoDescriber with the names of the provided types.
func newErrNoDescriber ( types ... reflect . Type ) error {
names := [ ] string { }
for _ , t := range types {
names = append ( names , t . String ( ) )
}
return ErrNoDescriber { Types : names }
}
// Describers implements ObjectDescriber against functions registered via Add. Those functions can
// be strongly typed. Types are exactly matched (no conversion or assignable checks).
type Describers struct {
searchFns map [ reflect . Type ] [ ] typeFunc
}
// DescribeObject implements ObjectDescriber and will attempt to print the provided object to a string,
// if at least one describer function has been registered with the exact types passed, or if any
// describer can print the exact object in its first argument (the remainder will be provided empty
// values). If no function registered with Add can satisfy the passed objects, an ErrNoDescriber will
// be returned
// TODO: reorder and partial match extra.
func ( d * Describers ) DescribeObject ( exact interface { } , extra ... interface { } ) ( string , error ) {
exactType := reflect . TypeOf ( exact )
fns , ok := d . searchFns [ exactType ]
if ! ok {
return "" , newErrNoDescriber ( exactType )
}
if len ( extra ) == 0 {
for _ , typeFn := range fns {
if len ( typeFn . Extra ) == 0 {
return typeFn . Describe ( exact , extra ... )
}
}
typeFn := fns [ 0 ]
for _ , t := range typeFn . Extra {
v := reflect . New ( t ) . Elem ( )
extra = append ( extra , v . Interface ( ) )
}
return fns [ 0 ] . Describe ( exact , extra ... )
}
types := [ ] reflect . Type { }
for _ , obj := range extra {
types = append ( types , reflect . TypeOf ( obj ) )
}
for _ , typeFn := range fns {
if typeFn . Matches ( types ) {
return typeFn . Describe ( exact , extra ... )
}
}
return "" , newErrNoDescriber ( append ( [ ] reflect . Type { exactType } , types ... ) ... )
}
// Add adds one or more describer functions to the Describer. The passed function must
// match the signature:
//
// func(...) (string, error)
//
// Any number of arguments may be provided.
func ( d * Describers ) Add ( fns ... interface { } ) error {
for _ , fn := range fns {
fv := reflect . ValueOf ( fn )
ft := fv . Type ( )
if ft . Kind ( ) != reflect . Func {
return fmt . Errorf ( "expected func, got: %v" , ft )
}
if ft . NumIn ( ) == 0 {
return fmt . Errorf ( "expected at least one 'in' params, got: %v" , ft )
}
if ft . NumOut ( ) != 2 {
return fmt . Errorf ( "expected two 'out' params - (string, error), got: %v" , ft )
}
types := [ ] reflect . Type { }
for i := 0 ; i < ft . NumIn ( ) ; i ++ {
types = append ( types , ft . In ( i ) )
}
if ft . Out ( 0 ) != reflect . TypeOf ( string ( "" ) ) {
return fmt . Errorf ( "expected string return, got: %v" , ft )
}
var forErrorType error
// This convolution is necessary, otherwise TypeOf picks up on the fact
// that forErrorType is nil.
errorType := reflect . TypeOf ( & forErrorType ) . Elem ( )
if ft . Out ( 1 ) != errorType {
return fmt . Errorf ( "expected error return, got: %v" , ft )
}
exact := types [ 0 ]
extra := types [ 1 : ]
if d . searchFns == nil {
d . searchFns = make ( map [ reflect . Type ] [ ] typeFunc )
}
fns := d . searchFns [ exact ]
fn := typeFunc { Extra : extra , Fn : fv }
fns = append ( fns , fn )
d . searchFns [ exact ] = fns
}
return nil
}
// typeFunc holds information about a describer function and the types it accepts
type typeFunc struct {
Extra [ ] reflect . Type
Fn reflect . Value
}
// Matches returns true when the passed types exactly match the Extra list.
// TODO: allow unordered types to be matched and reorderd.
func ( fn typeFunc ) Matches ( types [ ] reflect . Type ) bool {
if len ( fn . Extra ) != len ( types ) {
return false
}
for i := range types {
if fn . Extra [ i ] != types [ i ] {
return false
}
}
return true
}
// Describe invokes the nested function with the exact number of arguments.
func ( fn typeFunc ) Describe ( exact interface { } , extra ... interface { } ) ( string , error ) {
values := [ ] reflect . Value { reflect . ValueOf ( exact ) }
for _ , obj := range extra {
values = append ( values , reflect . ValueOf ( obj ) )
}
out := fn . Fn . Call ( values )
s := out [ 0 ] . Interface ( ) . ( string )
var err error
if ! out [ 1 ] . IsNil ( ) {
err = out [ 1 ] . Interface ( ) . ( error )
}
return s , err
}