forked from openshift/origin-web-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeployments.html
226 lines (226 loc) · 12 KB
/
deployments.html
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
<div class="middle">
<div class="middle-header header-toolbar">
<div class="container-fluid">
<div class="page-header page-header-bleed-right page-header-bleed-left">
<h1>
Deployments
<span class="page-header-link">
<a ng-href="{{'deployments' | helpLink}}" target="_blank">
Learn More <i class="fa fa-external-link" aria-hidden="true"></i>
</a>
</span>
</h1>
</div>
<div ng-if="!showEmptyState || filterWithZeroResults" class="data-toolbar">
<div class="data-toolbar-filter">
<project-filter></project-filter>
</div>
</div>
</div>
</div><!-- /middle-header-->
<div class="middle-content">
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<p ng-if="!deploymentConfigsLoaded">
Loading...
</p>
<div ng-if="(showEmptyState || filterWithZeroResults) && deploymentConfigsLoaded">
<div class="empty-state-message text-center">
<div ng-if="showEmptyState">
<h2>No deployments.</h2>
<p>No deployments have been added to project {{projectName}}.</p>
</div>
<div ng-if="filterWithZeroResults">
<h2>The filter is hiding all deployments. <a href="" ng-click="clearFilter()" role="button" class="nowrap">Clear Filter</a></h2>
</div>
</div>
</div>
<div ng-if="!filterWithZeroResults">
<h3 ng-if="showDeploymentConfigTable() && ((deployments | size) || (replicaSets | size) || (replicationControllersByDC[''] | size))">Deployment Configurations</h3>
<table ng-if="showDeploymentConfigTable() && !showEmptyState" class="table table-bordered table-mobile table-layout-fixed">
<colgroup>
<col class="col-sm-3">
<col class="col-sm-2">
<col class="col-sm-3">
<col class="col-sm-2">
<col class="col-sm-2">
</colgroup>
<thead>
<tr>
<th>Name</th>
<th>Last Version</th>
<th>Status</th>
<th>Created</th>
<th>Trigger</th>
</tr>
</thead>
<tbody>
<tr ng-repeat-start="(dcName, replicationControllersForDC) in replicationControllersByDC" ng-if="dcName && (deploymentConfigs[dcName] || !unfilteredDeploymentConfigs[dcName])" style="display: none;"></tr>
<!-- Deployment config with no replication controllers -->
<tr ng-if="(replicationControllersForDC | hashSize) == 0 && dcName">
<td data-title="Name">
<a ng-if="deploymentConfigs[dcName]" href="{{dcName | navigateResourceURL : 'DeploymentConfig' : projectName}}">{{dcName}}</a>
<span ng-if="deploymentConfigs[dcName].status.details.message" class="pficon pficon-warning-triangle-o" style="cursor: help;" data-toggle="popover" data-trigger="hover" dynamic-content="{{deploymentConfigs[dcName].status.details.message}}"></span>
</td>
<td data-title="Last Version"><em>No deployments</em></td>
<td class="hidden-xs"> </td>
<td class="hidden-xs"> </td>
<td class="hidden-xs"> </td>
</tr>
<!-- Deployment config with replication controllers, or replication controllers from a deployment config which has since been deleted -->
<tr ng-repeat="replicationController in replicationControllersForDC | orderObjectsByDate : true | limitTo : 1" ng-if="dcName">
<td data-title="Name">
<a ng-href="{{replicationController | configURLForResource}}">{{dcName}}</a>
<!-- <span ng-if="deploymentConfigs[dcName].status.details.message" class="pficon pficon-warning-triangle-o" style="cursor: help;" data-toggle="popover" data-trigger="hover" dynamic-content="{{deploymentConfigs[dcName].status.details.message}}"></span> -->
<span ng-if="deploymentConfigs && !deploymentConfigs[dcName]" class="pficon pficon-warning-triangle-o" data-toggle="tooltip" title="This deployment config no longer exists" style="cursor: help;"></span>
</td>
<td data-title="Last Version">
<!-- Deployment number and link -->
<span ng-if="replicationController | annotation : 'deploymentVersion'">
<a ng-href="{{replicationController | navigateResourceURL}}">#{{replicationController | annotation : 'deploymentVersion'}}</a>
</span>
<span ng-if="!(replicationController | annotation : 'deploymentVersion')">
<a ng-href="{{replicationController | navigateResourceURL}}">{{replicationController.metadata.name}}</a>
</span>
</td>
<td data-title="Status">
<div row class="status">
<status-icon status="replicationController | deploymentStatus" disable-animation></status-icon>
<span flex>
{{replicationController | deploymentStatus}}<span ng-if="(replicationController | deploymentStatus) == 'Active' || (replicationController | deploymentStatus) == 'Running'">,
<span ng-if="replicationController.spec.replicas !== replicationController.status.replicas">{{replicationController.status.replicas}}/</span>{{replicationController.spec.replicas}} replica<span ng-if="replicationController.spec.replicas != 1">s</span></span>
</span>
</div>
<!-- TODO would be nice to have the deploymentStatusReason in a popup, when there is one -->
</td>
<td data-title="Created">
<span am-time-ago="replicationController.metadata.creationTimestamp"></span>
</td>
<td data-title="Trigger">
<span ng-if="!replicationController.causes.length">Unknown</span>
<span ng-if="replicationController.causes.length">
<span ng-repeat="cause in replicationController.causes">
<span ng-switch="cause.type">
<span ng-switch-when="ImageChange">
<span ng-if="cause.imageTrigger.from">
<abbr title="{{cause.imageTrigger.from | imageObjectRef : null : true}}">Image</abbr> change
</span>
</span>
<span ng-switch-when="ConfigChange">Config change</span>
<span ng-switch-default>{{cause.type}}</span>
</span>
</span>
</span>
</td>
</tr>
<tr ng-repeat-end style="display: none;"></tr>
</tbody>
</table>
<div ng-if="(deployments | size)">
<h3>Deployments</h3>
<table class="table table-bordered table-mobile table-layout-fixed">
<colgroup>
<col class="col-sm-4">
<col class="col-sm-2">
<col class="col-sm-2">
<col class="col-sm-2">
<col class="col-sm-2">
</colgroup>
<thead>
<tr>
<th>Name</th>
<th>Last Version</th>
<th>Replicas</th>
<th>Created</th>
<th>Strategy</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="deployment in deployments | orderObjectsByDate : true">
<td data-title="Name">
<a ng-href="{{deployment | navigateResourceURL}}">{{deployment.metadata.name}}</a>
</td>
<td data-title="Last Version">
<span ng-if="latestReplicaSetByDeploymentUID[deployment.metadata.uid]">
<a ng-href="{{latestReplicaSetByDeploymentUID[deployment.metadata.uid] | navigateResourceURL}}">{{deployment | lastDeploymentRevision}}</a>
</span>
<span ng-if="!latestReplicaSetByDeploymentUID[deployment.metadata.uid]">
{{deployment | lastDeploymentRevision}}
</span>
</td>
<td data-title="Replicas">
<span ng-if="!(deployment.status.replicas | isNil) && deployment.status.replicas !== deployment.spec.replicas">{{deployment.status.replicas}}/</span>{{deployment.spec.replicas}} replica<span ng-if="deployment.spec.replicas != 1">s</span>
</td>
<td data-title="Created">
<span am-time-ago="deployment.metadata.creationTimestamp"></span>
</td>
<td data-title="Strategy">
{{deployment.spec.strategy.type | sentenceCase}}
</td>
</tr>
</tbody>
</table>
</div>
<div ng-if="(replicaSets | size)" id="replica-sets">
<h3>Replica Sets</h3>
<table class="table table-bordered table-mobile table-layout-fixed">
<colgroup>
<col class="col-sm-4">
</colgroup>
<thead>
<tr>
<th>Name</th>
<th>Replicas</th>
<th>Created</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="replicaSet in replicaSets | orderObjectsByDate : true">
<td data-title="Name">
<a ng-href="{{replicaSet | navigateResourceURL}}">{{replicaSet.metadata.name}}</a>
</td>
<td data-title="Replicas">
<span ng-if="replicaSet.status.replicas !== replicaSet.spec.replicas">{{replicaSet.status.replicas}}/</span>{{replicaSet.spec.replicas}} replica<span ng-if="replicaSet.spec.replicas != 1">s</span>
</td>
<td data-title="Created">
<span am-time-ago="replicaSet.metadata.creationTimestamp"></span>
</td>
</tr>
</tbody>
</table>
</div>
<div ng-if="(replicationControllersByDC[''] | size)" id="replica-controllers">
<h3>Other Replication Controllers</h3>
<table class="table table-bordered table-mobile table-layout-fixed">
<colgroup>
<col class="col-sm-5">
</colgroup>
<thead>
<tr>
<th>Name</th>
<th>Replicas</th>
<th>Created</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="deployment in replicationControllersByDC[''] | orderObjectsByDate : true">
<td data-title="Name">
<a ng-href="{{deployment | navigateResourceURL}}">{{deployment.metadata.name}}</a>
</td>
<td data-title="Replicas">
<span ng-if="deployment.status.replicas !== deployment.spec.replicas">{{deployment.status.replicas}}/</span>{{deployment.spec.replicas}} replica<span ng-if="deployment.spec.replicas != 1">s</span>
</td>
<td data-title="Created">
<span am-time-ago="deployment.metadata.creationTimestamp"></span>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div><!-- /col-* -->
</div>
</div>
</div><!-- /middle-content -->
</div>