From 0e7a46fc260e5aebe1b8f60698832c96e6a70ab2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20P=C3=A4tzold?= <37421217+bastianpaetzold@users.noreply.github.com> Date: Wed, 14 Jan 2026 17:16:30 +0100 Subject: [PATCH] Fix variable names seed examples for offline mode MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit replaced variables with underscore with camel case version removed hyperkube_image Signed-off-by: Bastian Pätzold <37421217+bastianpaetzold@users.noreply.github.com> --- .../v2.29/installation/offline-mode/_index.en.md | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/content/kubermatic/v2.29/installation/offline-mode/_index.en.md b/content/kubermatic/v2.29/installation/offline-mode/_index.en.md index fb9f63c7a..3ed151ef4 100644 --- a/content/kubermatic/v2.29/installation/offline-mode/_index.en.md +++ b/content/kubermatic/v2.29/installation/offline-mode/_index.en.md @@ -271,20 +271,16 @@ spec: # Configure the address of the proxy # It will be configured on all worker nodes. It results in the HTTP_PROXY & HTTPS_PROXY # environment variables being set. - http_proxy: "http://172.20.0.2:3128" + httpProxy: "http://172.20.0.2:3128" # Worker nodes require access to a Docker registry; in case it is only accessible using # plain HTTP or it uses a self-signed certificate, it must be listed here. - insecure_registries: + insecureRegistries: - "172.20.0.2:5000" # The kubelet requires the pause image; if it's only accessible using a private registry, # the image name must be configured here. - pause_image: "172.20.0.2:5000/kubernetes/pause:3.1" - - # ContainerLinux requires the hyperkube image; if it's only accessible using a private - # registry, the image name must be configured here. - hyperkube_image: "172.20.0.2:5000/kubernetes/hyperkube-amd64" + pauseImage: "172.20.0.2:5000/kubernetes/pause:3.1" ``` Edit your Seed either using `kubectl edit` or editing a local file and applying it with `kubectl apply`. From then