forked from kubernetes/kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Update back buttons - Ignore duplicated README.md - Rename /minions to /nodes - Deactivate more buttons - Updates to list selection and node detail page
- Loading branch information
1 parent
75d062b
commit 4c4e7b2
Showing
40 changed files
with
478 additions
and
532 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<div dashboard-header></div> | ||
<div class="dashboard"> | ||
<div ng-controller="ListMinionsCtrl" style="padding:25px;" class="list-pods"> | ||
<md-table headers="headers" content="content" sortable="sortable" filters="search" custom-class="custom" thumbs="thumbs" count="count"></md-table> | ||
<md-table headers="headers" content="content" sortable="sortable" filters="search" custom-class="custom" thumbs="thumbs" count="count" on-select="go(data)"></md-table> | ||
</div> | ||
</div> | ||
<div dashboard-footer></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<div dashboard-header></div> | ||
<div class="dashboard"> | ||
<div ng-controller="ListPodsCtrl" style="padding:25px;" class="list-pods"> | ||
<md-table headers="headers" content="content" sortable="sortable" filters="search" custom-class="custom" thumbs="thumbs" count="count"></md-table> | ||
<md-table headers="headers" content="content" sortable="sortable" filters="search" custom-class="custom" thumbs="thumbs" count="count" on-select="go(data)"></md-table> | ||
</div> | ||
</div> | ||
<div dashboard-footer></div> |
2 changes: 1 addition & 1 deletion
2
www/app/components/dashboard/views/listReplicationControllers.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<div dashboard-header></div> | ||
<div class="dashboard"> | ||
<div ng-controller="ListReplicationControllersCtrl" style="padding:25px;" class="list-pods"> | ||
<md-table headers="headers" content="content" sortable="sortable" filters="search" custom-class="custom" thumbs="thumbs" count="count"></md-table> | ||
<md-table headers="headers" content="content" sortable="sortable" filters="search" custom-class="custom" thumbs="thumbs" count="count" on-select="go(data)"></md-table> | ||
</div> | ||
</div> | ||
<div dashboard-footer></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<div dashboard-header></div> | ||
<div class="dashboard"> | ||
<div ng-controller="ListServicesCtrl" style="padding:25px;" class="list-pods"> | ||
<md-table headers="headers" content="content" sortable="sortable" filters="search" custom-class="custom" thumbs="thumbs" count="count"></md-table> | ||
<md-table headers="headers" content="content" sortable="sortable" filters="search" custom-class="custom" thumbs="thumbs" count="count" on-select="go(data)"></md-table> | ||
</div> | ||
</div> | ||
<div dashboard-footer></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
<div dashboard-header></div> | ||
<div class="dashboard"> | ||
<div ng-controller="NodeCtrl" layout="column" class="body-wrapper node"> | ||
<div class="detail"> | ||
|
||
<div class="back"> | ||
<md-button class="md-default-theme" ng-click="doTheBack()">‹ BACK</md-button> | ||
</div> | ||
|
||
|
||
<div class="heading"> | ||
<span class="label">Name:</span> | ||
<span>{{node.id}}</span> | ||
</div> | ||
|
||
|
||
<table> | ||
<tbody> | ||
<tr> | ||
<td class="name">Labels</td> | ||
<td class="value"> | ||
<div ng-repeat="(label, value) in node.labels"> | ||
{{label}}: {{value}} | ||
</div> | ||
</td> | ||
</tr> | ||
|
||
<tr> | ||
<td class="name">Created</td> | ||
<td class="value"> | ||
{{node.creationTimestamp | date:'medium'}} | ||
</td> | ||
</tr> | ||
|
||
<tr> | ||
<td class="name">Host IP</td> | ||
<td class="value"> | ||
{{node.hostIP}} | ||
</td> | ||
</tr> | ||
|
||
<tr> | ||
<td class="name">System Info</td> | ||
<td class="value"> | ||
<div ng-repeat="(label, value) in node.status.nodeInfo"> | ||
{{label}}: {{value}} | ||
</div> | ||
</td> | ||
</tr> | ||
|
||
|
||
</tbody> | ||
</table> | ||
|
||
|
||
|
||
</div> | ||
</div> | ||
</div> | ||
<div dashboard-footer></div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.