Force security options endpoint (#860)

This commit is contained in:
Pascal Vizeli 2021-03-24 14:36:38 +01:00 committed by GitHub
parent f2493e1cd5
commit 3a402d86a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2182,6 +2182,7 @@ Returns information about the supervisor
| update_available | boolean | `true` if an update is available |
| arch | string | The architecture of the host (armhf, aarch64, i386, amd64) |
| content_trust | bool | If content-trust is enabled or disabled on the backend |
| force_security | bool | If force-security is enabled or disabled on the backend |
| channel | string | The active channel (stable, beta, dev) |
| timezone | string | The current timezone |
| healthy | bool | The supervisor is in a healthy state |
@ -2205,6 +2206,7 @@ Returns information about the supervisor
"arch": "amd64",
"channel": "dev",
"content_trust": true,
"force_security": false,
"timezone": "TIMEZONE",
"healthy": true,
"supported": false,
@ -2256,6 +2258,7 @@ You need to call `/supervisor/reload` after updating the options.
| logging | string | Set logging level |
| addons_repositories | list | Set a list of URL's as strings for add-on repositories |
| content_trust | bool | Disable/Enable content-trust |
| force_security | bool | Disable/Enable force-security |
</ApiEndpoint>