Skip to content

Commit

Permalink
Improve sysprep helper text
Browse files Browse the repository at this point in the history
Signed-off-by: Matan Schatzman <mschatzm@redhat.com>
  • Loading branch information
metalice committed Aug 16, 2021
1 parent 0a20908 commit f864122
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
Expand Up @@ -185,11 +185,11 @@
"The guest OS needs to have the Cloudinit service running.": "The guest OS needs to have the Cloudinit service running.",
"Cloudinit is already configured in cloud images of Fedora and RHEL": "Cloudinit is already configured in cloud images of Fedora and RHEL",
"Autounattend.xml answer file": "Autounattend.xml answer file",
"<0>Autounattend.xml</0><1>The answer file can be provided in a ConfigMap or a Secret with the key autounattend.xml</1><2></2>": "<0>Autounattend.xml</0><1>The answer file can be provided in a ConfigMap or a Secret with the key autounattend.xml</1><2></2>",
"<0>Autounattend.xml</0><1>Autounattend will be picked up automatically during windows installation. it can be used with destructive actions such as disk formatting. Autounattend will only be used once during installation.</1><2></2>": "<0>Autounattend.xml</0><1>Autounattend will be picked up automatically during windows installation. it can be used with destructive actions such as disk formatting. Autounattend will only be used once during installation.</1><2></2>",
"Unattend.xml answer file": "Unattend.xml answer file",
"<0>Unattend.xml</0><1>The answer file can be used to modify Windows settings in your images during Setup</1><2></2>": "<0>Unattend.xml</0><1>The answer file can be used to modify Windows settings in your images during Setup</1><2></2>",
"<0>Unattend.xml</0><1>Unattend can be used to configure windows setup and can be picked up several times during windows setup/configuration.</1><2></2>": "<0>Unattend.xml</0><1>Unattend can be used to configure windows setup and can be picked up several times during windows setup/configuration.</1><2></2>",
"XML structure is not valid": "XML structure is not valid",
"Sysprep is an automation tool for Windows that automates Windows installation, setup, and custom software provisioning.": "Sysprep is an automation tool for Windows that automates Windows installation, setup, and custom software provisioning.",
"Sysprep is an automation tool for Windows that automates Windows installation, setup, and custom software provisioning. An answer file is an XML-based file that contains setting definitions and values to use during Windows Setup": "Sysprep is an automation tool for Windows that automates Windows installation, setup, and custom software provisioning. An answer file is an XML-based file that contains setting definitions and values to use during Windows Setup",
"Maximum allowed size is 10 MiB": "Maximum allowed size is 10 MiB",
"Read failed": "Read failed",
"Obtaining the CA certificate": "Obtaining the CA certificate",
Expand Down
Expand Up @@ -9,7 +9,7 @@ const SysprepInfo: React.FC = () => {
<div data-test="sysprep-info">
<Text component={TextVariants.p} className="kv-sysprep-info">
{t(
'kubevirt-plugin~Sysprep is an automation tool for Windows that automates Windows installation, setup, and custom software provisioning.',
'kubevirt-plugin~Sysprep is an automation tool for Windows that automates Windows installation, setup, and custom software provisioning. An answer file is an XML-based file that contains setting definitions and values to use during Windows Setup',
)}{' '}
<ExternalLink
href="https://kubevirt.io/user-guide/virtual_machines/startup_scripts/#sysprep"
Expand Down
Expand Up @@ -11,10 +11,12 @@ const SysprepAutounattendHelperPopup: React.FC = () => {
<Trans t={t} ns="kubevirt-plugin">
<Text component={TextVariants.h6}>Autounattend.xml</Text>
<Text component={TextVariants.p}>
The answer file can be provided in a ConfigMap or a Secret with the key autounattend.xml
Autounattend will be picked up automatically during windows installation. it can be used
with destructive actions such as disk formatting. Autounattend will only be used once
during installation.
</Text>
<ExternalLink
href="https://kubevirt.io/user-guide/virtual_machines/startup_scripts/#sysprep"
href="https://docs.microsoft.com/en-us/windows-hardware/customize/desktop/wsim/answer-files-overview"
text={t('kubevirt-plugin~Learn more')}
/>
</Trans>
Expand Down
Expand Up @@ -11,10 +11,11 @@ const SysprepUnattendHelperPopup: React.FC = () => {
<Trans t={t} ns="kubevirt-plugin">
<Text component={TextVariants.h6}>Unattend.xml</Text>
<Text component={TextVariants.p}>
The answer file can be used to modify Windows settings in your images during Setup
Unattend can be used to configure windows setup and can be picked up several times
during windows setup/configuration.
</Text>
<ExternalLink
href="https://kubevirt.io/user-guide/virtual_machines/startup_scripts/#sysprep"
href="https://docs.microsoft.com/en-us/windows-hardware/customize/desktop/wsim/answer-files-overview"
text={t('kubevirt-plugin~Learn more')}
/>
</Trans>
Expand Down

0 comments on commit f864122

Please sign in to comment.