forked from konveyor/tackle2-ui
-
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.
🐛 Add application risk filter of "Unassessed"
Resolves: https://issues.redhat.com/browse/MTA-2816 Application risk options are one of: - High (red) - Medium (yellow) - Low (green) - Unknown (unknown) - Unassessed (unassessed) Added the __Unassessed__ option to the risk filter list on the application table to have a complete set of risk filters. Signed-off-by: Scott J Dickerson <[email protected]>
- Loading branch information
Showing
2 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Assign Risk | ||
description: | | ||
Questionnaire that allows the use to select a risk level directly | ||
sections: | ||
- order: 1 | ||
name: Assign The RISK | ||
questions: | ||
- order: 1 | ||
text: What should be the Risk level of the application? | ||
answers: | ||
- order: 1 | ||
text: Unknown | ||
risk: unknown | ||
- order: 2 | ||
text: Green / Low | ||
risk: green | ||
- order: 3 | ||
text: Yellow / Medium | ||
risk: yellow | ||
- order: 4 | ||
text: Red / High | ||
risk: red | ||
|
||
thresholds: | ||
red: 1 | ||
yellow: 30 | ||
unknown: 15 | ||
|
||
riskMessages: | ||
red: Application requires deep changes in architecture or lifecycle | ||
yellow: Application is Cloud friendly but requires some minor changes | ||
green: Application is Cloud Native | ||
unknown: More information about the application is required |