Skip to content

Commit 5dc47f7

Browse files
authored
Merge pull request #72152 from kelbrown20/OCPBUGS-29724
OCPBUG#29724: Fixing bug in Azure with ARM64 docs
2 parents cf98a3e + 5f626a0 commit 5dc47f7

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

modules/installation-creating-azure-bootstrap.adoc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,12 @@ ifdef::azure[]
9696
$ az deployment group create -g ${RESOURCE_GROUP} \
9797
--template-file "<installation_directory>/04_bootstrap.json" \
9898
--parameters bootstrapIgnition="${BOOTSTRAP_IGNITION}" \ <1>
99-
--parameters baseName="${INFRA_ID}" <2>
99+
--parameters baseName="${INFRA_ID}" \ <2>
100+
--parameter bootstrapVMSize="Standard_D4s_v3" <3>
100101
----
101102
<1> The bootstrap Ignition content for the bootstrap cluster.
102103
<2> The base name to be used in resource names; this is usually the cluster's infrastructure ID.
104+
<3> Optional: Specify the size of the bootstrap VM. Use a VM size compatible with your specified architecture. If this value is not defined, the default value from the template is set.
103105
endif::azure[]
104106
ifdef::ash[]
105107
[source,terminal]

modules/installation-creating-azure-control-plane.adoc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,12 @@ ifdef::azure[]
6464
$ az deployment group create -g ${RESOURCE_GROUP} \
6565
--template-file "<installation_directory>/05_masters.json" \
6666
--parameters masterIgnition="${MASTER_IGNITION}" \ <1>
67-
--parameters baseName="${INFRA_ID}" <2>
67+
--parameters baseName="${INFRA_ID}" \ <2>
68+
--parameters masterVMSize="Standard_D8s_v3" <3>
6869
----
6970
<1> The Ignition content for the control plane nodes.
7071
<2> The base name to be used in resource names; this is usually the cluster's infrastructure ID.
72+
<3> Optional: Specify the size of the Control Plane VM. Use a VM size compatible with your specified architecture. If this value is not defined, the default value from the template is set.
7173
endif::azure[]
7274
ifdef::ash[]
7375
[source,terminal]

modules/installation-creating-azure-worker.adoc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,12 @@ ifdef::azure[]
7878
$ az deployment group create -g ${RESOURCE_GROUP} \
7979
--template-file "<installation_directory>/06_workers.json" \
8080
--parameters workerIgnition="${WORKER_IGNITION}" \ <1>
81-
--parameters baseName="${INFRA_ID}" <2>
81+
--parameters baseName="${INFRA_ID}" \ <2>
82+
--parameters nodeVMSize="Standard_D4s_v3" <3>
8283
----
8384
<1> The Ignition content for the worker nodes.
8485
<2> The base name to be used in resource names; this is usually the cluster's infrastructure ID.
86+
<3> Optional: Specify the size of the compute node VM. Use a VM size compatible with your specified architecture. If this value is not defined, the default value from the template is set.
8587
endif::azure[]
8688
ifdef::ash[]
8789
[source,terminal]

0 commit comments

Comments
 (0)