CreateImageWizard: Disable vmware and installer images
These images need either user customization or a default user.
This commit is contained in:
parent
34dc6e0ca4
commit
8e4b4ff6d5
2 changed files with 11 additions and 9 deletions
|
|
@ -72,7 +72,8 @@ const TargetEnvironment = ({ label, isRequired, ...props }) => {
|
|||
isDisplayLarge />
|
||||
</div>
|
||||
</FormGroup>
|
||||
<FormGroup label={ <Text component={ TextVariants.small }>Private cloud</Text> } data-testid="target-private">
|
||||
{ /* Disabled until default user or user customization is present */
|
||||
/* <FormGroup label={ <Text component={ TextVariants.small }>Private cloud</Text> } data-testid="target-private">
|
||||
<Checkbox
|
||||
label="VMWare"
|
||||
isChecked={ environment.vsphere }
|
||||
|
|
@ -81,7 +82,7 @@ const TargetEnvironment = ({ label, isRequired, ...props }) => {
|
|||
id="checkbox-vmware"
|
||||
name="VMWare"
|
||||
data-testid="checkbox-vmware" />
|
||||
</FormGroup>
|
||||
</FormGroup> */ }
|
||||
<FormGroup label={ <Text component={ TextVariants.small }>Other</Text> } data-testid="target-other">
|
||||
<Checkbox
|
||||
label="Virtualization - Guest image"
|
||||
|
|
@ -91,14 +92,15 @@ const TargetEnvironment = ({ label, isRequired, ...props }) => {
|
|||
id="checkbox-guest-image"
|
||||
name="Virtualization guest image"
|
||||
data-testid="checkbox-guest-image" />
|
||||
<Checkbox
|
||||
{ /* Disabled until default user or user customization is present */
|
||||
/* <Checkbox
|
||||
label="Bare metal - Installer"
|
||||
isChecked={ environment['image-installer'] }
|
||||
onChange={ () => handleSetEnvironment('image-installer') }
|
||||
aria-label="Bare metal installer checkbox"
|
||||
id="checkbox-image-installer"
|
||||
name="Bare metal installer"
|
||||
data-testid="checkbox-image-installer" />
|
||||
data-testid="checkbox-image-installer" /> */ }
|
||||
</FormGroup>
|
||||
</FormGroup>
|
||||
</>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue