Skip to content

Commit

Permalink
Merge pull request #776 from sgratch/fix-url-text-in-details-section-…
Browse files Browse the repository at this point in the history
…for-rhv-vsphere

Fix the URL help text in provider details section for both oVirt and vSphere
  • Loading branch information
yaacov authored Nov 8, 2023
2 parents 22ade32 + ae7ae33 commit 7f0df89
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,6 @@
"Reveal values": "Reveal values",
"RH Virtualization engine REST API password credentials.": "RH Virtualization engine REST API password credentials.",
"RH Virtualization engine REST API user name.": "RH Virtualization engine REST API user name.",
"RHV Manager host name or IP address. If a certificate for FQDN is specified, the value of this field needs to match the FQDN in the certificate.": "RHV Manager host name or IP address. If a certificate for FQDN is specified, the value of this field needs to match the FQDN in the certificate.",
"Run the migration plan.": "Run the migration plan.",
"Running - performing incremental data copies": "Running - performing incremental data copies",
"Running - preparing for cutover": "Running - preparing for cutover",
Expand Down Expand Up @@ -389,16 +388,17 @@
"Updated": "Updated",
"URL": "URL",
"URL must start with https:// or http:// and contain valid hostname and path": "URL must start with https:// or http:// and contain valid hostname and path",
"URL of the API endpoint of the Red Hat Virtualization Manager (RHVM) on which the source VM is mounted. Ensure that the URL includes the path leading to the RHVM API server, usually /ovirt-engine/api. For example, https://rhv-host-example.com/ovirt-engine/api.": "URL of the API endpoint of the Red Hat Virtualization Manager (RHVM) on which the source VM is mounted. Ensure that the URL includes the path leading to the RHVM API server, usually /ovirt-engine/api. For example, https://rhv-host-example.com/ovirt-engine/api.",
"URL of the provider": "URL of the provider",
"URL of the provider, leave empty to use this providers URL": "URL of the provider, leave empty to use this providers URL",
"URL of the Red Hat Virtualization Manager (RHVM) API endpoint. Ensure the URL includes the \"/ovirt-engine/api\" path. For example: https://rhv-host-example.com/ovirt-engine/api": "URL of the Red Hat Virtualization Manager (RHVM) API endpoint. Ensure the URL includes the \"/ovirt-engine/api\" path. For example: https://rhv-host-example.com/ovirt-engine/api",
"URL of the SDK endpoint of the vCenter on which the source VM is mounted. Ensure that the URL includes the sdk path, usually /sdk. For example, https://vCenter-host-example.com/sdk. If a certificate for FQDN is specified, the value of this field needs to match the FQDN in the certificate.": "URL of the SDK endpoint of the vCenter on which the source VM is mounted. Ensure that the URL includes the sdk path, usually /sdk. For example, https://vCenter-host-example.com/sdk. If a certificate for FQDN is specified, the value of this field needs to match the FQDN in the certificate.",
"URL of the vCenter SDK endpoint.": "URL of the vCenter SDK endpoint.",
"URL of the vCenter SDK endpoint. Ensure the URL includes the \"/sdk\" path. For example: https://vCenter-host-example.com/sdk": "URL of the vCenter SDK endpoint. Ensure the URL includes the \"/sdk\" path. For example: https://vCenter-host-example.com/sdk",
"User ID": "User ID",
"User or service account bearer token for service accounts or user authentication.": "User or service account bearer token for service accounts or user authentication.",
"Username": "Username",
"Validation Failed": "Validation Failed",
"vCenter host name or IP address - if a certificate for FQDN is specified, the value of this field needs to match the FQDN in the certificate.": "vCenter host name or IP address - if a certificate for FQDN is specified, the value of this field needs to match the FQDN in the certificate.",
"VDDK container image. It is strongly recommended to specify a VDDK image to accelerate migrations.": "VDDK container image. It is strongly recommended to specify a VDDK image to accelerate migrations.",
"VDDK init image": "VDDK init image",
"VDDK init image must be a valid container image, for example quay.io/kubev2v/example:latest": "VDDK init image must be a valid container image, for example quay.io/kubev2v/example:latest",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export const OvirtDetailsSection: React.FC<DetailsSectionProps> = ({ data }) =>
helpContent={
<Text>
{t(
`RHV Manager host name or IP address. If a certificate for FQDN is specified, the value of this field needs to match the FQDN in the certificate.`,
`URL of the API endpoint of the Red Hat Virtualization Manager (RHVM) on which the source VM is mounted. Ensure that the URL includes the path leading to the RHVM API server, usually /ovirt-engine/api. For example, https://rhv-host-example.com/ovirt-engine/api.`,
)}
</Text>
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export const VSphereDetailsSection: React.FC<DetailsSectionProps> = ({ data }) =
helpContent={
<Text>
{t(
`vCenter host name or IP address - if a certificate for FQDN is specified, the value of this field needs to match the FQDN in the certificate.`,
`URL of the SDK endpoint of the vCenter on which the source VM is mounted. Ensure that the URL includes the sdk path, usually /sdk. For example, https://vCenter-host-example.com/sdk. If a certificate for FQDN is specified, the value of this field needs to match the FQDN in the certificate.`,
)}
</Text>
}
Expand Down

0 comments on commit 7f0df89

Please sign in to comment.