mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +00:00
feat: Enable workspace debug logging (#6838)
* feat: Enable workspace debug logging * Fix * Fix * Fix * fix * fix * Enable RBAC * unit tests * Fix * fix * fix * fix * more tests * fix: workspacebuild_test use roles * fix: swagger comment * fix: ctx.Done * fix: address PR comments * break loop
This commit is contained in:
20
coderd/apidoc/docs.go
generated
20
coderd/apidoc/docs.go
generated
@ -6519,6 +6519,17 @@ const docTemplate = `{
|
||||
"dry_run": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"log_level": {
|
||||
"description": "Log level changes the default logging verbosity of a provider (\"info\" if empty).",
|
||||
"enum": [
|
||||
"debug"
|
||||
],
|
||||
"allOf": [
|
||||
{
|
||||
"$ref": "#/definitions/codersdk.ProvisionerLogLevel"
|
||||
}
|
||||
]
|
||||
},
|
||||
"orphan": {
|
||||
"description": "Orphan may be set for the Destroy transition.",
|
||||
"type": "boolean"
|
||||
@ -7776,6 +7787,15 @@ const docTemplate = `{
|
||||
"ProvisionerJobFailed"
|
||||
]
|
||||
},
|
||||
"codersdk.ProvisionerLogLevel": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"debug"
|
||||
],
|
||||
"x-enum-varnames": [
|
||||
"ProvisionerLogLevelDebug"
|
||||
]
|
||||
},
|
||||
"codersdk.ProvisionerStorageMethod": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
|
Reference in New Issue
Block a user