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
Docker Desktop includes a standalone Kubernetes server and client, as well as Docker CLI integration, enabling local Kubernetes development and testing directly on your machine.
13
14
14
-
The Kubernetes server runs as a single-node cluster within a Docker container. This lightweight setup helps you explore Kubernetes features, test workloads, and work with container orchestration in parallel with other Docker functionalities.
15
+
The Kubernetes server runs as a single or multi-node cluster within a Docker container. This lightweight setup helps you explore Kubernetes features, test workloads, and work with container orchestration in parallel with other Docker functionalities.
15
16
16
17
Kubernetes on Docker Desktop runs alongside other workloads, including Swarm services and standalone containers.
17
18
@@ -30,8 +31,11 @@ Turning the Kubernetes server on or off in Docker Desktop does not affect your o
30
31
31
32
1. Open the Docker Desktop Dashboard and navigate to **Settings**.
32
33
2. Select the **Kubernetes** tab.
33
-
3. Select the **Enable Kubernetes** checkbox.
34
-
4. Select **Apply & Restart** to save the settings and then select **Install** to confirm. This sets up the images required to run the Kubernetes server as containers, and installs the `kubectl` command-line tool on your system at `/usr/local/bin/kubectl` (Mac) or `C:\Program Files\Docker\Docker\Resources\bin\kubectl.exe` (Windows).
34
+
3. Toggle on **Enable Kubernetes**.
35
+
4. Choose your cluster provisioning method. You can choose either **Kubeadm** or **kind** if you are signed in and are using Docker Desktop version 4.38 or later.
36
+
37
+
If you select **kind** you can also choose the Kubernetes version and the number of nodes.
38
+
5. Select **Apply & Restart** to save the settings. This sets up the images required to run the Kubernetes server as containers, and installs the `kubectl` command-line tool on your system at `/usr/local/bin/kubectl` (Mac) or `C:\Program Files\Docker\Docker\Resources\bin\kubectl.exe` (Windows).
35
39
36
40
> [!NOTE]
37
41
>
@@ -45,9 +49,15 @@ You can check which version of Kubernetes you're on with:
45
49
$ kubectl version
46
50
```
47
51
48
-
### Viewing system containers
52
+
### Additional settings
53
+
54
+
#### Kubernetes dashboard
55
+
56
+
Once Kubernetes is installed and set up, you can select the **Deploy the Kubernetes Dashboard into cluster** setting so you can manage and monitor your Kubernetes clusters and applications more easily.
57
+
58
+
#### Viewing system containers
49
59
50
-
By default, Kubernetes system containers are hidden. To inspect these containers, navigate to **Settings** > **Kubernetes** and then enable **Show system containers (advanced)**.
60
+
By default, Kubernetes system containers are hidden. To inspect these containers, enable **Show system containers (advanced)**.
51
61
52
62
You can now view the running Kubernetes containers with `docker ps` or in the Docker Desktop Dashboard.
Copy file name to clipboardExpand all lines: content/manuals/desktop/settings-and-maintenance/settings.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -425,6 +425,12 @@ deploying your Docker workloads on Kubernetes. To turn on Kubernetes support and
425
425
install a standalone instance of Kubernetes running as a Docker container,
426
426
select **Enable Kubernetes**.
427
427
428
+
With Docker Desktop version 4.38 and later, you can choose your cluster provisioning method:
429
+
-**Kubeadm** creates a single-node cluster and the version is set by Docker Desktop.
430
+
-**kind** creates a multi-node cluster and you can set the version and number of nodes.
431
+
432
+
Docker Desktop version 4.38 and later also lets you install the Kubernetes Dashboard within an existing Kubernetes cluster with the **Deploy the Kubernetes Dashboard into cluster** setting. It provides real-time visibility into workloads and nodes and helps you manage and monitor your Kubernetes clusters and applications easily.
433
+
428
434
Select **Show system containers (advanced)** to view internal containers when
0 commit comments