You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by ma...@apache.org on 2016/06/21 16:40:28 UTC

aurora git commit: AURORA-1458 Add tier into the UI "show config" summary

Repository: aurora
Updated Branches:
  refs/heads/master ca8372ff7 -> 73dd2a867


AURORA-1458 Add tier into the UI "show config" summary

Reviewed at https://reviews.apache.org/r/48796/


Project: http://git-wip-us.apache.org/repos/asf/aurora/repo
Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/73dd2a86
Tree: http://git-wip-us.apache.org/repos/asf/aurora/tree/73dd2a86
Diff: http://git-wip-us.apache.org/repos/asf/aurora/diff/73dd2a86

Branch: refs/heads/master
Commit: 73dd2a867fc977323164b34b3001452f94750300
Parents: ca8372f
Author: Mehrdad Nurolahzade <me...@nurolahzade.com>
Authored: Tue Jun 21 09:40:15 2016 -0700
Committer: Maxim Khutornenko <ma...@apache.org>
Committed: Tue Jun 21 09:40:15 2016 -0700

----------------------------------------------------------------------
 src/main/resources/scheduler/assets/configSummary.html | 4 ++++
 src/main/resources/scheduler/assets/js/services.js     | 1 +
 2 files changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/aurora/blob/73dd2a86/src/main/resources/scheduler/assets/configSummary.html
----------------------------------------------------------------------
diff --git a/src/main/resources/scheduler/assets/configSummary.html b/src/main/resources/scheduler/assets/configSummary.html
index 86a87ab..c0a545c 100644
--- a/src/main/resources/scheduler/assets/configSummary.html
+++ b/src/main/resources/scheduler/assets/configSummary.html
@@ -47,6 +47,10 @@
     <td colspan="2">{{group.summary.schedulingDetail.production}}</td>
   </tr>
   <tr>
+    <td class="cellLabel">tier</td>
+    <td colspan="2">{{group.summary.schedulingDetail.tier}}</td>
+  </tr>
+  <tr>
     <td class="cellLabel">service</td>
     <td colspan="2">{{group.summary.schedulingDetail.isService}}</td>
   </tr>

http://git-wip-us.apache.org/repos/asf/aurora/blob/73dd2a86/src/main/resources/scheduler/assets/js/services.js
----------------------------------------------------------------------
diff --git a/src/main/resources/scheduler/assets/js/services.js b/src/main/resources/scheduler/assets/js/services.js
index b3a0a99..315fc17 100644
--- a/src/main/resources/scheduler/assets/js/services.js
+++ b/src/main/resources/scheduler/assets/js/services.js
@@ -435,6 +435,7 @@
             resources: task.resources,
             isService: task.isService,
             production: task.production,
+            tier: task.tier,
             contact: task.contactEmail || '',
             constraints: constraints,
             metadata: metadata,