-
Notifications
You must be signed in to change notification settings - Fork 0
/
list.go
156 lines (129 loc) · 5.92 KB
/
list.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
// Copyright 2017 The Kubernetes Authors.
//
// 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 deployment
import (
"log"
"github.com/kubernetes/dashboard/src/app/backend/api"
"github.com/kubernetes/dashboard/src/app/backend/errors"
metricapi "github.com/kubernetes/dashboard/src/app/backend/integration/metric/api"
"github.com/kubernetes/dashboard/src/app/backend/resource/common"
"github.com/kubernetes/dashboard/src/app/backend/resource/dataselect"
"github.com/kubernetes/dashboard/src/app/backend/resource/event"
apps "k8s.io/api/apps/v1beta2"
"k8s.io/api/core/v1"
client "k8s.io/client-go/kubernetes"
)
// DeploymentList contains a list of Deployments in the cluster.
type DeploymentList struct {
ListMeta api.ListMeta `json:"listMeta"`
CumulativeMetrics []metricapi.Metric `json:"cumulativeMetrics"`
// Basic information about resources status on the list.
Status common.ResourceStatus `json:"status"`
// Unordered list of Deployments.
Deployments []Deployment `json:"deployments"`
// List of non-critical errors, that occurred during resource retrieval.
Errors []error `json:"errors"`
}
// Deployment is a presentation layer view of Kubernetes Deployment resource. This means
// it is Deployment plus additional augmented data we can get from other sources
// (like services that target the same pods).
type Deployment struct {
ObjectMeta api.ObjectMeta `json:"objectMeta"`
TypeMeta api.TypeMeta `json:"typeMeta"`
// Aggregate information about pods belonging to this Deployment.
Pods common.PodInfo `json:"pods"`
// Container images of the Deployment.
ContainerImages []string `json:"containerImages"`
// Init Container images of the Deployment.
InitContainerImages []string `json:"initContainerImages"`
}
// GetDeploymentList returns a list of all Deployments in the cluster.
func GetDeploymentList(client client.Interface, nsQuery *common.NamespaceQuery, dsQuery *dataselect.DataSelectQuery,
metricClient metricapi.MetricClient) (*DeploymentList, error) {
log.Print("Getting list of all deployments in the cluster")
channels := &common.ResourceChannels{
DeploymentList: common.GetDeploymentListChannel(client, nsQuery, 1),
PodList: common.GetPodListChannel(client, nsQuery, 1),
EventList: common.GetEventListChannel(client, nsQuery, 1),
ReplicaSetList: common.GetReplicaSetListChannel(client, nsQuery, 1),
}
return GetDeploymentListFromChannels(channels, dsQuery, metricClient)
}
// GetDeploymentList returns a list of all Deployments in the cluster
// reading required resource list once from the channels.
func GetDeploymentListFromChannels(channels *common.ResourceChannels, dsQuery *dataselect.DataSelectQuery,
metricClient metricapi.MetricClient) (*DeploymentList, error) {
deployments := <-channels.DeploymentList.List
err := <-channels.DeploymentList.Error
nonCriticalErrors, criticalError := errors.HandleError(err)
if criticalError != nil {
return nil, criticalError
}
pods := <-channels.PodList.List
err = <-channels.PodList.Error
nonCriticalErrors, criticalError = errors.AppendError(err, nonCriticalErrors)
if criticalError != nil {
return nil, criticalError
}
events := <-channels.EventList.List
err = <-channels.EventList.Error
nonCriticalErrors, criticalError = errors.AppendError(err, nonCriticalErrors)
if criticalError != nil {
return nil, criticalError
}
rs := <-channels.ReplicaSetList.List
err = <-channels.ReplicaSetList.Error
nonCriticalErrors, criticalError = errors.AppendError(err, nonCriticalErrors)
if criticalError != nil {
return nil, criticalError
}
deploymentList := toDeploymentList(deployments.Items, pods.Items, events.Items, rs.Items, nonCriticalErrors,
dsQuery, metricClient)
deploymentList.Status = getStatus(deployments, rs.Items, pods.Items, events.Items)
return deploymentList, nil
}
func toDeploymentList(deployments []apps.Deployment, pods []v1.Pod, events []v1.Event, rs []apps.ReplicaSet,
nonCriticalErrors []error, dsQuery *dataselect.DataSelectQuery, metricClient metricapi.MetricClient) *DeploymentList {
deploymentList := &DeploymentList{
Deployments: make([]Deployment, 0),
ListMeta: api.ListMeta{TotalItems: len(deployments)},
Errors: nonCriticalErrors,
}
cachedResources := &metricapi.CachedResources{
Pods: pods,
}
deploymentCells, metricPromises, filteredTotal := dataselect.GenericDataSelectWithFilterAndMetrics(
toCells(deployments), dsQuery, cachedResources, metricClient)
deployments = fromCells(deploymentCells)
deploymentList.ListMeta = api.ListMeta{TotalItems: filteredTotal}
for _, deployment := range deployments {
matchingPods := common.FilterDeploymentPodsByOwnerReference(deployment, rs, pods)
podInfo := common.GetPodInfo(deployment.Status.Replicas, deployment.Spec.Replicas, matchingPods)
podInfo.Warnings = event.GetPodsEventWarnings(events, matchingPods)
deploymentList.Deployments = append(deploymentList.Deployments,
Deployment{
ObjectMeta: api.NewObjectMeta(deployment.ObjectMeta),
TypeMeta: api.NewTypeMeta(api.ResourceKindDeployment),
ContainerImages: common.GetContainerImages(&deployment.Spec.Template.Spec),
InitContainerImages: common.GetInitContainerImages(&deployment.Spec.Template.Spec),
Pods: podInfo,
})
}
cumulativeMetrics, err := metricPromises.GetMetrics()
deploymentList.CumulativeMetrics = cumulativeMetrics
if err != nil {
deploymentList.CumulativeMetrics = make([]metricapi.Metric, 0)
}
return deploymentList
}