Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

webadmin: add missing non operational messages #701

Merged
merged 1 commit into from
Oct 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ public interface LocalizedEnums extends ConstantsWithLookup {

String NonOperationalReason___KUBEVIRT_NOT_SCHEDULABLE();

String NonOperationalReason___LIBVIRT_SECRETS_REGISTRATION_FAILURE();

String NonOperationalReason___HE_HOST_IN_NON_HE_CLUSTER();

String NonOperationalReason___FIPS_INCOMPATIBLE_WITH_CLUSTER();

String UsbPolicy___ENABLED_NATIVE();

String UsbPolicy___DISABLED();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -646,6 +646,9 @@ NonOperationalReason___UNTRUSTED=Host is untrusted.
NonOperationalReason___VDS_CANNOT_CONNECT_TO_GLUSTERFS=Host cannot connect to Glusterfs. Verify that glusterfs-cli package is installed on the host.
NonOperationalReason___VERSION_INCOMPATIBLE_WITH_CLUSTER=Host's Compatibility Version doesn't match the Cluster's Compatibility Version.
NonOperationalReason___VM_NETWORK_IS_BRIDGELESS=One of the host's networks is configured as a non-VM network while its Logical Network definition specifies it is a VM network. Sync network.
NonOperationalReason___LIBVIRT_SECRETS_REGISTRATION_FAILURE=Libvirt secrets registration failed.
NonOperationalReason___HE_HOST_IN_NON_HE_CLUSTER=Hosted Engine host is in a different cluster than the Hosted Engine.
NonOperationalReason___FIPS_INCOMPATIBLE_WITH_CLUSTER=Host's FIPS mode is not compatible with Cluster FIPS Mode settings.
NumaTuneMode___INTERLEAVE=Interleave
NumaTuneMode___PREFERRED=Preferred
NumaTuneMode___STRICT=Strict
Expand Down