Prerequisites¶
In this lab you will review the machine requirements necessary to follow this tutorial.
Virtual or Physical Machines¶
This tutorial requires four (4) virtual or physical x86_64 machines running Debian 12 (bookworm). The following table list the four machines and thier CPU, memory, and storage requirements.
Name | Description | CPU | RAM | Storage |
---|---|---|---|---|
jumpbox | Administration host | 1 | 512MB | 10GB |
server | Kubernetes server | 1 | 2GB | 20GB |
node-0 | Kubernetes worker node | 1 | 2GB | 20GB |
node-1 | Kubernetes worker node | 1 | 2GB | 20GB |
How you provision the machines is up to you, the only requirement is that each machine meet the above system requirements including the machine specs and OS version. Once you have all four machine provisioned, verify the system requirements by running the uname
command on each machine:
uname -mov
After running the uname
command you should see the following output:
#1 SMP PREEMPT_DYNAMIC Wed Feb 19 16:28:19 UTC 2025 x86_64 GNU/Linux
The x86_64
that you see in the output confirms that the system is a x86_64 architecture. This should be the case for various AMD and Intel based systems.
Next: setting-up-the-jumpbox