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

Bug 1993920: Improve sysprep helper text #9806

Merged
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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,7 +11,9 @@ 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"
Expand Down
Expand Up @@ -11,7 +11,8 @@ 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"
Expand Down