Updating the Control-Plane IP on a Single-Node Kubernetes Cluster

When the IP address of the only control-plane node changes, the cluster’s PKI, static manifests, and client kubeconfigs all become invalid. The following procedure walks through the minimal set of changes required to bring the node back online with the new address. Identify every file that stil references the old IP cd /etc/kubernetes grep - ...

Posted on Mon, 24 Aug 2026 16:41:29 +0000 by IchBin

Resolving kubectl Connection Failures to the Kubernetes API Server on Node Hosts

Introduction The kubectl command-line tool serves as the primary interface for communicating with the Kubernetes API server to manage cluster resources. When the kubectl command on a Node host cannot establish a connection to the API server, it prevents administrators from managing and monitoring the cluster effectively. This guide provides a s ...

Posted on Wed, 05 Aug 2026 16:58:57 +0000 by jonemo

Deploying a Single-Node Kubernetes Cluster with kubeadm

Prerequisites Before starting, ensure you're machines meet these requirements: One or more machines running CentOS 7.x (x86_64) Hardware: minimum 2GB RAM, 2 CPUs, 30GB disk space Network connectivity between all machines Internet access for pulling container images Swap disabled Objectives Install Docker and kubeadm on all nodes Initialize t ...

Posted on Fri, 29 May 2026 21:10:42 +0000 by phrozenflame