src: Update <Content> tag components
This commit is contained in:
parent
d98dd02fa3
commit
91577343df
38 changed files with 70 additions and 75 deletions
|
|
@ -58,11 +58,11 @@ const Aws = () => {
|
|||
<Title headingLevel="h1" size="xl">
|
||||
Target environment - Amazon Web Services
|
||||
</Title>
|
||||
<Content component="p">
|
||||
<Content>
|
||||
Your image will be uploaded to AWS and shared with the account you
|
||||
provide below.
|
||||
</Content>
|
||||
<Content component="p">
|
||||
<Content>
|
||||
<b>The shared image will expire within 14 days.</b> To permanently
|
||||
access the image, copy the image, which will be shared to your account
|
||||
by Red Hat, to your own AWS account.
|
||||
|
|
|
|||
|
|
@ -68,12 +68,12 @@ const Azure = () => {
|
|||
<Title headingLevel="h1" size="xl">
|
||||
Target environment - Microsoft Azure
|
||||
</Title>
|
||||
<Content component="p">
|
||||
<Content>
|
||||
Upon build, Image Builder sends the image to the selected authorized
|
||||
Azure account. The image will be uploaded to the resource group in the
|
||||
subscription you specify.
|
||||
</Content>
|
||||
<Content component="p">
|
||||
<Content>
|
||||
To authorize Image Builder to push images to Microsoft Azure, the
|
||||
account owner must configure Image Builder as an authorized application
|
||||
for a specific tenant ID and give it the role of "Contributor"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,13 @@
|
|||
import React from 'react';
|
||||
|
||||
import { Radio, Content, Form, Title, FormGroup } from '@patternfly/react-core';
|
||||
import {
|
||||
Radio,
|
||||
Content,
|
||||
Form,
|
||||
Title,
|
||||
FormGroup,
|
||||
ContentVariants,
|
||||
} from '@patternfly/react-core';
|
||||
|
||||
import { useAppDispatch, useAppSelector } from '../../../../../store/hooks';
|
||||
import {
|
||||
|
|
@ -34,7 +41,7 @@ const Gcp = () => {
|
|||
<Title headingLevel="h1" size="xl">
|
||||
Target environment - Google Cloud Platform
|
||||
</Title>
|
||||
<Content component="p">
|
||||
<Content>
|
||||
Select how to share your image. The image you create can be used to
|
||||
launch instances on GCP, regardless of which method you select.
|
||||
</Content>
|
||||
|
|
@ -44,7 +51,7 @@ const Gcp = () => {
|
|||
label="Share image with a Google account"
|
||||
name="radio-1"
|
||||
description={
|
||||
<Content component="p">
|
||||
<Content component={ContentVariants.small}>
|
||||
Your image will be uploaded to GCP and shared with the account you
|
||||
provide below.
|
||||
<b>The image expires in 14 days.</b> To keep permanent access to
|
||||
|
|
@ -63,7 +70,7 @@ const Gcp = () => {
|
|||
label="Share image with Red Hat Insights only"
|
||||
name="radio-2"
|
||||
description={
|
||||
<Content component="p">
|
||||
<Content component={ContentVariants.small}>
|
||||
Your image will be uploaded to GCP and shared with Red Hat
|
||||
Insights.
|
||||
<b> The image expires in 14 days.</b> You cannot access or
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue