client: CloudInitSchemaValidationError in error overlay

This commit is contained in:
Chris Peterson 2024-04-02 13:04:15 -07:00
parent 8a31c7e72f
commit 1b2c6befbb
1 changed files with 6 additions and 0 deletions

View File

@ -426,6 +426,7 @@ class ErrorReportListStretchy(Stretchy):
nonreportable_titles: dict[str, str] = { nonreportable_titles: dict[str, str] = {
"AutoinstallError": _("an Autoinstall error"), "AutoinstallError": _("an Autoinstall error"),
"AutoinstallValidationError": _("an Autoinstall validation error"), "AutoinstallValidationError": _("an Autoinstall validation error"),
"CloudInitSchemaValidationError": _("a cloud-init schema validation error"),
} }
nonreportable_footers: dict[str, str] = { nonreportable_footers: dict[str, str] = {
@ -437,6 +438,11 @@ nonreportable_footers: dict[str, str] = {
"The installer has detected an issue with the provided Autoinstall " "The installer has detected an issue with the provided Autoinstall "
"file. Please modify it and try again." "file. Please modify it and try again."
), ),
"CloudInitSchemaValidationError": _(
"The installer has detected a cloud-init schema validation error "
"that will likely cause the installation to not proceed as intended. "
"Please address the validation errors and try again."
),
} }