mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[ML] Fix vCPU usage message in the Start deployment dialog (#218557)
## Summary Fixes the info callout message in the “Start model deployment” dialog by replacing the ELSER name with a generic model reference. ### Checklist - [x] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/main/src/platform/packages/shared/kbn-i18n/README.md) - [ ] [Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html) was added for features that require explanation or tutorials - [x] The PR description includes the appropriate Release Notes section, and the correct `release_note:*` label is applied per the [guidelines](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process)
This commit is contained in:
parent
822aef361c
commit
b1958da5d1
1 changed files with 3 additions and 3 deletions
|
@ -243,7 +243,7 @@ export const DeploymentSetup: FC<DeploymentSetupProps> = ({
|
|||
'xpack.ml.trainedModels.modelsList.startDeployment.cloudAutoscaling.lowCpuAdaptiveHelp',
|
||||
{
|
||||
defaultMessage:
|
||||
'This level limits resources to the minimum required for ELSER to run if supported by your Cloud console selection. It may not be sufficient for a production application.',
|
||||
'This level limits resources to the minimum required for the model to run if supported by your Cloud console selection. It may not be sufficient for a production application.',
|
||||
}
|
||||
);
|
||||
case 'medium':
|
||||
|
@ -274,7 +274,7 @@ export const DeploymentSetup: FC<DeploymentSetupProps> = ({
|
|||
'xpack.ml.trainedModels.modelsList.startDeployment.cloudAutoscaling.lowCpuStaticHelp',
|
||||
{
|
||||
defaultMessage:
|
||||
'This level sets resources to the minimum required for ELSER to run if supported by your Cloud console selection. It may not be sufficient for a production application.',
|
||||
'This level sets resources to the minimum required for the model to run if supported by your Cloud console selection. It may not be sufficient for a production application.',
|
||||
}
|
||||
);
|
||||
case 'medium':
|
||||
|
@ -341,7 +341,7 @@ export const DeploymentSetup: FC<DeploymentSetupProps> = ({
|
|||
'xpack.ml.trainedModels.modelsList.startDeployment.hardwareLimits.lowCpuStaticHelp',
|
||||
{
|
||||
defaultMessage:
|
||||
'This level sets resources to the minimum required for ELSER to run. It may not be sufficient for a production application.',
|
||||
'This level sets resources to the minimum required for the model to run. It may not be sufficient for a production application.',
|
||||
}
|
||||
);
|
||||
case 'medium':
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue