From 31b84415d147c8f580b5e6025a44d28c05368dae Mon Sep 17 00:00:00 2001 From: Pavel Basov Date: Mon, 15 Dec 2025 23:41:45 +0100 Subject: [PATCH] Remove --enable-cloud-provider from worker args This flag caused kubelet to wait for an external cloud controller to provide node IPs, resulting in nodes with no INTERNAL-IP and konnectivity-agent failing with "host IP unknown". Without this flag, kubelet auto-detects the node IP from the default network interface. --- tinkerbell-k0s-hcp/values.yaml | 3 +-- tinkerbell-k0s-standalone/values.yaml | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/tinkerbell-k0s-hcp/values.yaml b/tinkerbell-k0s-hcp/values.yaml index c5a7f6d..c47be31 100644 --- a/tinkerbell-k0s-hcp/values.yaml +++ b/tinkerbell-k0s-hcp/values.yaml @@ -26,8 +26,7 @@ worker: # @schema description: Worker machine configuration; type: object matchLabels: # @schema description: Labels to match; type: object tinkerbell.org/role: worker templateOverride: "" # @schema description: Tinkerbell workflow template override; type: string - args: # @schema description: Arguments to pass to k0s worker; type: array - - --enable-cloud-provider + args: [] # @schema description: Arguments to pass to k0s worker; type: array # K0smotron hosted control plane parameters k0smotron: # @schema description: K0smotron hosted control plane parameters; type: object diff --git a/tinkerbell-k0s-standalone/values.yaml b/tinkerbell-k0s-standalone/values.yaml index c81660f..7f7c566 100644 --- a/tinkerbell-k0s-standalone/values.yaml +++ b/tinkerbell-k0s-standalone/values.yaml @@ -36,8 +36,7 @@ worker: # @schema description: Worker machine configuration; type: object matchLabels: # @schema description: Labels to match; type: object tinkerbell.org/role: worker templateOverride: "" # @schema description: Tinkerbell workflow template override; type: string - args: # @schema description: Arguments to pass to k0s worker; type: array - - --enable-cloud-provider + args: [] # @schema description: Arguments to pass to k0s worker; type: array # K0s parameters k0s: # @schema description: K0s parameters; type: object