Add content trust reasons (#8674)

This commit is contained in:
Joakim Sørensen 2021-03-22 12:25:59 +01:00 committed by GitHub
parent ce5fb57577
commit 740805356f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -48,6 +48,7 @@ const UNSUPPORTED_REASON_URL = {
os: "/more-info/unsupported/os", os: "/more-info/unsupported/os",
privileged: "/more-info/unsupported/privileged", privileged: "/more-info/unsupported/privileged",
systemd: "/more-info/unsupported/systemd", systemd: "/more-info/unsupported/systemd",
content_trust: "/more-info/unsupported/content_trust",
}; };
const UNHEALTHY_REASON_URL = { const UNHEALTHY_REASON_URL = {
@ -55,6 +56,7 @@ const UNHEALTHY_REASON_URL = {
supervisor: "/more-info/unhealthy/supervisor", supervisor: "/more-info/unhealthy/supervisor",
setup: "/more-info/unhealthy/setup", setup: "/more-info/unhealthy/setup",
docker: "/more-info/unhealthy/docker", docker: "/more-info/unhealthy/docker",
untrusted: "/more-info/unhealthy/untrusted",
}; };
@customElement("hassio-supervisor-info") @customElement("hassio-supervisor-info")

View File

@ -3720,6 +3720,7 @@
"share_diagonstics_description": "Would you want to automatically share crash reports and diagnostic information when the Supervisor encounters unexpected errors? {line_break} This will allow us to fix the problems, the information is only accessible to the Home Assistant Core team and will not be shared with others.{line_break} The data does not include any private/sensitive information and you can disable this in settings at any time you want.", "share_diagonstics_description": "Would you want to automatically share crash reports and diagnostic information when the Supervisor encounters unexpected errors? {line_break} This will allow us to fix the problems, the information is only accessible to the Home Assistant Core team and will not be shared with others.{line_break} The data does not include any private/sensitive information and you can disable this in settings at any time you want.",
"unsupported_reason": { "unsupported_reason": {
"container": "Containers known to cause issues", "container": "Containers known to cause issues",
"content-trust": "Content-trust validation is disabled",
"dbus": "DBUS", "dbus": "DBUS",
"docker_configuration": "Docker Configuration", "docker_configuration": "Docker Configuration",
"docker_version": "Docker Version", "docker_version": "Docker Version",
@ -3734,7 +3735,8 @@
"privileged": "Supervisor is not privileged", "privileged": "Supervisor is not privileged",
"supervisor": "Supervisor was not able to update", "supervisor": "Supervisor was not able to update",
"setup": "Setup of the Supervisor failed", "setup": "Setup of the Supervisor failed",
"docker": "The Docker environment is not working properly" "docker": "The Docker environment is not working properly",
"untrusted": "Detected untrusted content"
} }
}, },
"host": { "host": {