Skip to content

Commit

Permalink
Merge pull request #51 from mareklibra/moveBaseDNS
Browse files Browse the repository at this point in the history
Move DNS base domain filed to Networking section
  • Loading branch information
Jiri Tomasek authored Jun 29, 2020
2 parents 08143b9 + d95e4d9 commit f2b7495
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 6 additions & 0 deletions src/components/clusterConfiguration/BasicNetworkFields.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ const BasicNetworkFields: React.FC<BasicNetworkFieldsProps> = ({ hostSubnets })
const { validateField } = useFormikContext<ClusterConfigurationValues>();
return (
<>
<InputField
label="Base DNS Domain"
name="baseDnsDomain"
helperText="The base domain of the cluster. All DNS records must be sub-domains of this base and include the cluster name."
isRequired
/>
<SelectField
name="hostSubnet"
label="Available subnets"
Expand Down
6 changes: 0 additions & 6 deletions src/components/clusterConfiguration/ClusterConfiguration.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -188,12 +188,6 @@ const ClusterConfiguration: React.FC<ClusterConfigurationProps> = ({ cluster })
<Text component="h1">Configure a bare metal OpenShift cluster</Text>
</TextContent>
<InputField label="Cluster Name" name="name" isRequired />
<InputField
label="Base DNS Domain"
name="baseDnsDomain"
helperText="The base domain of the cluster. All DNS records must be sub-domains of this base and include the cluster name."
isRequired
/>
</GridGap>
</GridItem>
<GridItem span={12}>
Expand Down

0 comments on commit f2b7495

Please sign in to comment.