Deploying a Kubernetes Cluster on Google Compute Engine

The following procedure creates a Kubernetes cluster using four worker VMs and one master VM (a total of five virtual machines). You can manage this cluster from you're local workstation or any preferred environment. Before You Begin For a simplified setup with a graphical user interface, consider using Google Kubernetes Engine (GKE) to provisi ...

Posted on Fri, 05 Jun 2026 17:08:59 +0000 by astaroth

Setting Up a Flink Cluster in Standalone and YARN Modes

Configuring TaskManager Hostnames Each TaskManager must be configured with its respective hostname in flink-conf.yaml: taskmanager.host: hadoop103 On another node: taskmanager.host: hadoop104 Starting and Stopping a Standalone Cluster From the JobManager node (hadoop102): # Start cluster bin/start-cluster.sh # Stop cluster bin/stop-cluster.s ...

Posted on Wed, 20 May 2026 05:09:43 +0000 by quark76

Deploying a Kubernetes Cluster Using Kubeadm

Installing the Container RuntimeDocker serves as the underlying container runtime for Kubernetes. Update the package index and install Docker using the following commands:sudo apt-get update sudo apt-get install -y docker.ioOnce installed, ensure the Docker service is running:sudo systemctl start docker sudo systemctl enable dockerDeploying Kub ...

Posted on Fri, 15 May 2026 20:54:09 +0000 by Graphi