From 673aa9ba05d77f64f0b921b2b04ac4446632a6c6 Mon Sep 17 00:00:00 2001 From: Tin Vuong Date: Sun, 9 Mar 2025 19:17:10 -0400 Subject: [PATCH] fix: Remove redundant kubelet-config.yaml copy in node setup script The first code block in the node setup script already correctly modifies and copies the `kubelet-config.yaml` file to each worker node, replacing the "SUBNET" placeholder with the appropriate subnet. The second code block was redundantly copying the original, unmodified `kubelet-config.yaml` file, overwriting the correctly modified version. --- docs/09-bootstrapping-kubernetes-workers.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/09-bootstrapping-kubernetes-workers.md b/docs/09-bootstrapping-kubernetes-workers.md index 4ccc1a8..9cd9cd2 100644 --- a/docs/09-bootstrapping-kubernetes-workers.md +++ b/docs/09-bootstrapping-kubernetes-workers.md @@ -32,7 +32,6 @@ for host in node-0 node-1; do downloads/kube-proxy \ configs/99-loopback.conf \ configs/containerd-config.toml \ - configs/kubelet-config.yaml \ configs/kube-proxy-config.yaml \ units/containerd.service \ units/kubelet.service \