|
1 | 1 | AWSTemplateFormatVersion: 2010-09-09 |
2 | | -Description: Template for Openshift Cluster UPI Node Launch (EC2 master instances) |
| 2 | +Description: Template for OpenShift Cluster Node Launch (EC2 master instances) |
3 | 3 |
|
4 | 4 | Parameters: |
5 | 5 | InfrastructureName: |
6 | 6 | AllowedPattern: ^([a-zA-Z][a-zA-Z0-9\-]{0,26})$ |
7 | 7 | MaxLength: 27 |
8 | 8 | MinLength: 1 |
9 | | - ConstraintDescription: Infrastructure name must be alphanumeric, start with a letter and a maximum of 27 characters |
| 9 | + ConstraintDescription: Infrastructure name must be alphanumeric, start with a letter, and have a maximum of 27 characters. |
10 | 10 | Description: A short, unique cluster ID used to tag nodes for the kubelet cloud provider. |
11 | 11 | Type: String |
12 | 12 | RhcosAmi: |
13 | | - Description: Current RHEL CoreOS AMI to use for boostrap |
| 13 | + Description: Current Red Hat Enterprise Linux CoreOS AMI to use for boostrap. |
14 | 14 | Type: AWS::EC2::Image::Id |
15 | 15 | AutoRegisterDNS: |
16 | 16 | Default: "yes" |
17 | 17 | AllowedValues: |
18 | 18 | - "yes" |
19 | 19 | - "no" |
20 | | - Description: Do you want to invoke DNS etcd registration (requires Hosted Zone info provided)? |
| 20 | + Description: Do you want to invoke DNS etcd registration, which requires Hosted Zone information? |
21 | 21 | Type: String |
22 | 22 | PrivateHostedZoneId: |
23 | | - Description: The Route53 private zone ID to register the etcd targets with (e.g Z21IXYZABCZ2A4) |
| 23 | + Description: The Route53 private zone ID to register the etcd targets with, such as Z21IXYZABCZ2A4. |
24 | 24 | Type: String |
25 | 25 | PrivateHostedZoneName: |
26 | | - Description: The Route53 zone to register the targets with (No trailing dot - e.g. cluster.mycorp.com) |
| 26 | + Description: The Route53 zone to register the targets with, such as cluster.example.com. Omit the trailing period. |
27 | 27 | Type: String |
28 | 28 | Master0Subnet: |
29 | | - Description: The subnets (recommend private) to launch the master nodes into |
| 29 | + Description: The subnets, recommend private, to launch the master nodes into. |
30 | 30 | Type: AWS::EC2::Subnet::Id |
31 | 31 | Master1Subnet: |
32 | | - Description: The subnets (recommend private) to launch the master nodes into |
| 32 | + Description: The subnets, recommend private, to launch the master nodes into. |
33 | 33 | Type: AWS::EC2::Subnet::Id |
34 | 34 | Master2Subnet: |
35 | | - Description: The subnets (recommend private) to launch the master nodes into |
| 35 | + Description: The subnets, recommend private, to launch the master nodes into. |
36 | 36 | Type: AWS::EC2::Subnet::Id |
37 | 37 | MasterSecurityGroupId: |
38 | 38 | Description: The master security group ID to associate with master nodes. |
39 | 39 | Type: AWS::EC2::SecurityGroup::Id |
40 | 40 | IgnitionLocation: |
41 | 41 | Default: https://api-int.$CLUSTER_NAME.$DOMAIN:22623/config/master |
42 | | - Description: Location to fetch bootstrap ignition from. (Recommend to use the autocreated ignition config location.) |
| 42 | + Description: Ignition config file location. |
43 | 43 | Type: String |
44 | 44 | CertificateAuthorities: |
45 | 45 | Default: data:text/plain;charset=utf-8;base64,ABC...xYz== |
@@ -71,19 +71,19 @@ Parameters: |
71 | 71 | AllowedValues: |
72 | 72 | - "yes" |
73 | 73 | - "no" |
74 | | - Description: Do you want to invoke NLB registration (requires Lambda ARN parameter to be supplied)? |
| 74 | + Description: Do you want to invoke NLB registration, which requires a Lambda ARN parameter? |
75 | 75 | Type: String |
76 | 76 | RegisterNlbIpTargetsLambdaArn: |
77 | | - Description: ARN for NLB IP target registration lambda (from cluster_infra_upi.yaml; otherwise select "no" for AutoRegisterELB) |
| 77 | + Description: ARN for NLB IP target registration lambda. Supply the value from the cluster infrastructure or select "no" for AutoRegisterELB. |
78 | 78 | Type: String |
79 | 79 | ExternalApiTargetGroupArn: |
80 | | - Description: ARN for external API load balancer target group (from cluster_infra_upi.yaml; otherwise select "no" for AutoRegisterELB) |
| 80 | + Description: ARN for external API load balancer target group. Supply the value from the cluster infrastructure or select "no" for AutoRegisterELB. |
81 | 81 | Type: String |
82 | 82 | InternalApiTargetGroupArn: |
83 | | - Description: ARN for internal API load balancer target group (from cluster_infra_upi.yaml; otherwise select "no" for AutoRegisterELB) |
| 83 | + Description: ARN for internal API load balancer target group. Supply the value from the cluster infrastructure or select "no" for AutoRegisterELB. |
84 | 84 | Type: String |
85 | 85 | InternalServiceTargetGroupArn: |
86 | | - Description: ARN for internal service load balancer target group (from cluster_infra_upi.yaml; otherwise select "no" for AutoRegisterELB) |
| 86 | + Description: ARN for internal service load balancer target group. Supply the value from the cluster infrastructure or select "no" for AutoRegisterELB. |
87 | 87 | Type: String |
88 | 88 |
|
89 | 89 | Metadata: |
@@ -134,7 +134,7 @@ Metadata: |
134 | 134 | MasterInstanceProfileName: |
135 | 135 | default: "Master Instance Profile Name" |
136 | 136 | RhcosAmi: |
137 | | - default: "RHEL CoreOS AMI ID" |
| 137 | + default: "Red Hat Enterprise Linux CoreOS AMI ID" |
138 | 138 | BootstrapIgnitionLocation: |
139 | 139 | default: "Master Ignition Source" |
140 | 140 | CertificateAuthorities: |
@@ -353,7 +353,7 @@ Resources: |
353 | 353 |
|
354 | 354 | Outputs: |
355 | 355 | PrivateIPs: |
356 | | - Description: The control-plane node private IP addresses |
| 356 | + Description: The control-plane node private IP addresses. |
357 | 357 | Value: |
358 | 358 | !Join [ |
359 | 359 | ",", |
|
0 commit comments