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: azure/defaults.go
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -111,7 +111,7 @@ const (
111
111
112
112
var (
113
113
// LinuxBootstrapExtensionCommand is the command the VM bootstrap extension will execute to verify Linux nodes bootstrap completes successfully.
114
-
LinuxBootstrapExtensionCommand=fmt.Sprintf("for i in $(seq 1 %d); do test -f %s && break; if [ $i -eq %d ]; then exit 1; else sleep %d; fi; done", bootstrapExtensionRetries, bootstrapSentinelFile, bootstrapExtensionRetries, bootstrapExtensionSleep)
114
+
LinuxBootstrapExtensionCommand=fmt.Sprintf("for i in $(seq 1 %d); do test -f %s && break; if [ $i -eq %d ]; then echo 'Error joining node to cluster: kubeadm init failed. To debug, check the cloud-init, kubelet, or other bootstrap logs: https://capz.sigs.k8s.io/self-managed/troubleshooting.html?highlight=kubeadmcontrolplane#checking-cloud-init-logs-ubuntu.'; exit 1; else sleep %d; fi; done", bootstrapExtensionRetries, bootstrapSentinelFile, bootstrapExtensionRetries, bootstrapExtensionSleep)
115
115
// WindowsBootstrapExtensionCommand is the command the VM bootstrap extension will execute to verify Windows nodes bootstrap completes successfully.
Copy file name to clipboardExpand all lines: config/crd/bases/infrastructure.cluster.x-k8s.io_azuremachines.yaml
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -248,6 +248,11 @@ spec:
248
248
Use this setting only if VMExtensions are not supported by your image, as it disables CAPZ bootstrapping extension used for detecting Kubernetes bootstrap failure.
249
249
This may only be set to True when no extensions are configured on the virtual machine.
250
250
type: boolean
251
+
disableVMBootstrapExtension:
252
+
description: |-
253
+
DisableVMBootstrapExtension specifies whether the VM bootstrap extension should be disabled on the virtual machine.
254
+
Use this setting if you want to disable only the bootstrapping extension and not all extensions.
255
+
type: boolean
251
256
dnsServers:
252
257
description: DNSServers adds a list of DNS Server IP addresses to
Copy file name to clipboardExpand all lines: config/crd/bases/infrastructure.cluster.x-k8s.io_azuremachinetemplates.yaml
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -259,6 +259,11 @@ spec:
259
259
Use this setting only if VMExtensions are not supported by your image, as it disables CAPZ bootstrapping extension used for detecting Kubernetes bootstrap failure.
260
260
This may only be set to True when no extensions are configured on the virtual machine.
261
261
type: boolean
262
+
disableVMBootstrapExtension:
263
+
description: |-
264
+
DisableVMBootstrapExtension specifies whether the VM bootstrap extension should be disabled on the virtual machine.
265
+
Use this setting if you want to disable only the bootstrapping extension and not all extensions.
266
+
type: boolean
262
267
dnsServers:
263
268
description: DNSServers adds a list of DNS Server IP addresses
0 commit comments