@@ -57,29 +57,23 @@ ifdef::azure[]
5757$ az deployment group create -g ${RESOURCE_GROUP} \
5858 --template-file "<installation_directory>/05_masters.json" \
5959 --parameters masterIgnition="${MASTER_IGNITION}" \ <1>
60- --parameters sshKeyData="${SSH_KEY}" \ <2>
61- --parameters privateDNSZoneName="${CLUSTER_NAME}.${BASE_DOMAIN}" \ <3>
62- --parameters baseName="${INFRA_ID}"<4>
60+ --parameters baseName="${INFRA_ID}" <2>
6361----
6462<1> The Ignition content for the control plane nodes.
65- <2> The SSH RSA public key file as a string.
66- <3> The name of the private DNS zone to which the control plane nodes are attached.
67- <4> The base name to be used in resource names; this is usually the cluster's infrastructure ID.
63+ <2> The base name to be used in resource names; this is usually the cluster's infrastructure ID.
6864endif::azure[]
6965ifdef::ash[]
7066[source,terminal]
7167----
7268$ az deployment group create -g ${RESOURCE_GROUP} \
7369 --template-file "<installation_directory>/05_masters.json" \
7470 --parameters masterIgnition="${MASTER_IGNITION}" \ <1>
75- --parameters sshKeyData="${SSH_KEY}" \ <2>
76- --parameters baseName="${INFRA_ID}" \ <3>
77- --parameters diagnosticsStorageAccountName="${CLUSTER_NAME}sa" <4>
71+ --parameters baseName="${INFRA_ID}" \ <2>
72+ --parameters diagnosticsStorageAccountName="${CLUSTER_NAME}sa" <3>
7873----
7974<1> The Ignition content for the control plane nodes (also known as the master nodes).
80- <2> The SSH RSA public key file as a string.
81- <3> The base name to be used in resource names; this is usually the cluster's infrastructure ID.
82- <4> The name of the storage account for your cluster.
75+ <2> The base name to be used in resource names; this is usually the cluster's infrastructure ID.
76+ <3> The name of the storage account for your cluster.
8377endif::ash[]
8478
8579ifeval::["{context}" == "installing-azure-user-infra"]
0 commit comments