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: capz/run-capz-e2e.sh
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ main() {
58
58
59
59
install_tools
60
60
create_cluster
61
-
apply_workload_configuraiton
61
+
apply_workload_configuration
62
62
apply_cloud_provider_azure
63
63
wait_for_nodes
64
64
if [[ "${HYPERV}"=="true" ]];then apply_hyperv_configuration;fi
@@ -227,7 +227,7 @@ create_cluster(){
227
227
export AKS_INFRA_RG_NAME="${aks_infra_rg_name}"
228
228
export AKS_VNET_NAME="${ask_vnet}"
229
229
230
-
# In a prod set up we probably would want a seperate identity for this operation but for ease of use we are re-using the one created by AKS for kubelet
230
+
# In a prod set up we probably would want a separate identity for this operation but for ease of use we are re-using the one created by AKS for kubelet
231
231
log "applying role assignment to management cluster identity to have permissions to create workload cluster"
232
232
MANAGEMENT_IDENTITY=$(az aks show -n "${CLUSTER_NAME}" -g "${CLUSTER_NAME}" --output json | jq -r '.identityProfile.kubeletidentity.clientId')
233
233
export MANAGEMENT_IDENTITY
@@ -251,7 +251,7 @@ create_cluster(){
251
251
timeout --foreground 300 bash -c "until kubectl get kubeadmcontrolplanes -A > /dev/null 2>&1; do sleep 3; done"
0 commit comments