Wizard: Add the option of building OCI images to the Wizard

This adds a tile allowing to build an OCI image to the Image output step of the wizard. The tile is only visible in the Preview.

As there are no other customer information needed for the build, no addiional step for OCI was added.

Review step was also updated to include OCI images.
This commit is contained in:
regexowl 2023-10-17 09:32:00 +02:00 committed by Klara Simickova
parent de30c6c637
commit fd61cd135b
4 changed files with 70 additions and 1 deletions

View file

@ -236,6 +236,27 @@ export const TargetEnvAzureList = () => {
);
};
export const TargetEnvOciList = () => {
return (
<TextContent>
<Text component={TextVariants.h3}>Oracle Cloud Infrastructure</Text>
<TextList component={TextListVariants.dl}>
<TextListItem
component={TextListItemVariants.dt}
className="pf-u-min-width"
>
Object Storage URL
</TextListItem>
<TextListItem component={TextListItemVariants.dd}>
The URL for the built image will be ready to copy
<br />
</TextListItem>
</TextList>
<br />
</TextContent>
);
};
export const TargetEnvOtherList = () => {
return (
<>