-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SLA Config: Add new config that does not enforce SLA
- Loading branch information
Showing
2 changed files
with
37 additions
and
1 deletion.
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,36 @@ | ||
[ | ||
{ | ||
"model": "dojo.sla_configuration", | ||
"pk": 1, | ||
"fields": { | ||
"name": "Default", | ||
"description": "The Default SLA Configuration. Products not using an explicit SLA Configuration will use this one.", | ||
"critical": 7, | ||
"enforce_critical": true, | ||
"high": 30, | ||
"enforce_high": true, | ||
"medium": 90, | ||
"enforce_medium": true, | ||
"low": 120, | ||
"enforce_low": true, | ||
"async_updating": false | ||
} | ||
}, | ||
{ | ||
"model": "dojo.sla_configuration", | ||
"pk": 100, | ||
"fields": { | ||
"name": "No SLA Enforced", | ||
"description": "No SLA is enforced for a product which uses this SLA configuration.", | ||
"critical": 7, | ||
"enforce_critical": false, | ||
"high": 30, | ||
"enforce_high": false, | ||
"medium": 90, | ||
"enforce_medium": false, | ||
"low": 120, | ||
"enforce_low": false, | ||
"async_updating": false | ||
} | ||
} | ||
] |