You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> This is a fork of the original ["Kubernetes the hard way"](https://github.com/kelseyhightower/kubernetes-the-hard-way) originally written by Kelsey Hightower (GitHub: kelseyhightower). Unlike the original that bases itself on Debianlike distributions for the ARM64 architecture, this fork targets Enterprise Linux distributions such as Rocky Linux running on x86_64 architecture.
12
+
> This is a fork of the original ["Kubernetes the hard way"](https://github.com/kelseyhightower/kubernetes-the-hard-way) originally written by Kelsey Hightower (GitHub: kelseyhightower). Unlike the original, which bases itself on Debian-like distributions for the ARM64 architecture, this fork targets Enterprise Linux distributions such as Rocky Linux, which runs on x86_64 architecture.
13
13
14
-
In this lab you will review the machine requirements necessary to follow this tutorial.
14
+
In this lab, you will review the machine requirements necessary to follow this tutorial.
15
15
16
16
## Virtual or Physical Machines
17
17
18
-
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.
18
+
This tutorial requires four (4) virtual or physical x86_64 machines running Debian 12 (bookworm). The following table lists the four machines and their CPU, memory, and storage requirements.
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 operating system version. Once you have all four machine provisioned, verify the system requirements by running the `uname` command on each machine:
27
+
How you provision the machines is up to you; the only requirement is that each machine meets the above system requirements, including the machine specs and operating system version. Once you have all four machines provisioned, verify the system requirements by running the `uname` command on each machine:
28
28
29
29
```bash
30
30
uname -mov
31
31
```
32
32
33
-
After running the `uname` command you should see the following output:
33
+
After running the `uname` command, you should see the following output:
34
34
35
35
```text
36
36
#1 SMP PREEMPT_DYNAMIC Wed Feb 19 16:28:19 UTC 2025 x86_64 GNU/Linux
37
37
```
38
38
39
-
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 Intelbased systems.
39
+
The `x86_64` in the output confirms that the system is a x86_64 architecture. This should be the case for various AMD and Intel-based systems.
0 commit comments