-
Notifications
You must be signed in to change notification settings - Fork 1.7k
[AMBARI-23006] upgrade admin #471
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[AMBARI-23006] upgrade admin #471
Conversation
…ck end. Includes DashRow and Timeline controls.
…-admin # Conflicts: # ambari-web/app/styles/application.less # ambari-web/app/views.js
…pache/ambari into AMBARI-23006_upgrade-admin
|
Refer to this link for build results (access rights to CI server needed): |
| headerClass: Em.View.extend({ | ||
| templateName: require('templates/main/admin/serviceGroups/upgradeStatusHeader'), | ||
| step: Em.computed.alias('parentView.upgrade.currentStep'), | ||
| isPrerequisitesActive: function () { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For simple properties you can use Em.computed.equal(dependentKey, value).
|
|
||
| return false; | ||
| }.property('step'), | ||
| isPrerequisitesComplete: function () { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here Em.computed.or('isInstallActive', 'isInstallComplete')
|
|
||
| var App = require('app'); | ||
|
|
||
| App.MpackComparison = Ember.View.extend({ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If view doesn't contain any logic you insert template directly:
{{template "templates/your-template"}}
|
@atkach OK, I have addressed your comments. |
|
Refer to this link for build results (access rights to CI server needed): |
What changes were proposed in this pull request?
This is the "Upgrade" part of the admin screen that shows the state of the saved upgrade plan and progress of the upgrade process, including action history log.
How was this patch tested?
All tests passing:
20402 passing (31s)
46 pending