You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/install-creating-install-config-aws-edge-zones.adoc
+14-6Lines changed: 14 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,15 +38,20 @@ ifdef::local-zone[]
38
38
# ...
39
39
platform:
40
40
aws:
41
-
region: <region_name> <1>
41
+
region: <region_name>
42
42
compute:
43
43
- name: edge
44
44
platform:
45
45
aws:
46
-
zones: <2>
46
+
zones:
47
47
- <local_zone_name>
48
48
#...
49
49
----
50
+
+
51
+
where:
52
+
+
53
+
<region_name>:: The AWS Region name.
54
+
<zones>:: The list of {zone-type} names that you use must exist in the same AWS Region specified in the `platform.aws.region` field.
50
55
endif::local-zone[]
51
56
ifdef::wavelength-zone[]
52
57
+
@@ -55,18 +60,21 @@ ifdef::wavelength-zone[]
55
60
# ...
56
61
platform:
57
62
aws:
58
-
region: <region_name> <1>
63
+
region: <region_name>
59
64
compute:
60
65
- name: edge
61
66
platform:
62
67
aws:
63
-
zones: <2>
68
+
zones:
64
69
- <wavelength_zone_name>
65
70
#...
66
71
----
72
+
+
73
+
where:
74
+
+
75
+
<region_name>:: The AWS Region name.
76
+
<zones>:: The list of {zone-type} names that you use must exist in the same AWS Region specified in the `platform.aws.region` field.
67
77
endif::wavelength-zone[]
68
-
<1> The AWS Region name.
69
-
<2> The list of {zone-type} names that you use must exist in the same AWS Region specified in the `platform.aws.region` field.
70
78
+
71
79
.Example of a configuration to install a cluster in the `us-west-2` AWS Region that extends edge nodes to {zone-type} in `Los Angeles` and `Las Vegas` locations
<infrastructure_id>:: The cluster infrastructure ID.
138
+
<role>:: A default node label.
136
139
+
137
140
[NOTE]
138
141
====
139
142
For clusters that have user-provisioned infrastructure, a compute machine set can only create `worker` and `infra` type machines.
140
143
====
141
-
<3> The values in the `<providerSpec>` section of the compute machine set CR are platform-specific. For more information about `<providerSpec>` parameters in the CR, see the sample compute machine set CR configuration for your provider.
144
+
providerSpec:: The values in the `<providerSpec>` section of the compute machine set CR are platform-specific. For more information about `<providerSpec>` parameters in the CR, see the sample compute machine set CR configuration for your provider.
142
145
--
143
146
144
147
ifdef::vsphere[]
@@ -157,8 +160,8 @@ template:
157
160
value:
158
161
apiVersion: machine.openshift.io/v1beta1
159
162
credentialsSecret:
160
-
name: vsphere-cloud-credentials <1>
161
-
dataDisks: <2>
163
+
name: vsphere-cloud-credentials
164
+
dataDisks:
162
165
- name: <disk_name>
163
166
provisioningMode: <mode>
164
167
sizeGiB: 10
@@ -171,22 +174,24 @@ template:
171
174
numCPUs: 4
172
175
numCoresPerSocket: 4
173
176
snapshot: ""
174
-
template: <vm_template_name> <3>
177
+
template: <vm_template_name>
175
178
userDataSecret:
176
-
name: worker-user-data <4>
179
+
name: worker-user-data
177
180
workspace:
178
181
datacenter: <vcenter_data_center_name>
179
182
datastore: <vcenter_datastore_name>
180
183
folder: <vcenter_vm_folder_path>
181
184
resourcepool: <vsphere_resource_pool>
182
-
server: <vcenter_server_address> <5>
185
+
server: <vcenter_server_address>
183
186
----
184
-
<1> The name of the secret in the `openshift-machine-api` namespace that contains the required vCenter credentials.
185
-
<2> The collection of data disk definitions.
186
-
For more information, see "Configuring data disks by using machine sets".
187
-
<3> The name of the {op-system} VM template for your cluster that was created during installation.
188
-
<4> The name of the secret in the `openshift-machine-api` namespace that contains the required Ignition configuration credentials.
189
-
<5> The IP address or fully qualified domain name (FQDN) of the vCenter server.
187
+
+
188
+
where:
189
+
+
190
+
credentialsSecret.name:: The name of the secret in the `openshift-machine-api` namespace that contains the required vCenter credentials.
191
+
dataDisks:: The collection of data disk definitions. For more information, see "Configuring data disks by using machine sets".
192
+
template:: The name of the {op-system} VM template for your cluster that was created during installation.
193
+
userDataSecret.name:: The name of the secret in the `openshift-machine-api` namespace that contains the required Ignition configuration credentials.
194
+
workspace.server:: The IP address or fully qualified domain name (FQDN) of the vCenter server.
190
195
endif::vsphere[]
191
196
192
197
. Create a `MachineSet` CR by running the following command:
0 commit comments