Skip to content

Commit e568d2d

Browse files
committed
ENGDOCS-2405b
1 parent 7e6ba1e commit e568d2d

File tree

2 files changed

+20
-5
lines changed

2 files changed

+20
-5
lines changed

content/manuals/desktop/features/kubernetes.md

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ weight: 60
1111

1212
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.
1313

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.
14+
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.
1515

1616
Kubernetes on Docker Desktop runs alongside other workloads, including Swarm services and standalone containers.
1717

@@ -30,8 +30,11 @@ Turning the Kubernetes server on or off in Docker Desktop does not affect your o
3030

3131
1. Open the Docker Desktop Dashboard and navigate to **Settings**.
3232
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).
33+
3. Toggle on **Enable Kubernetes**.
34+
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.
35+
36+
If you select **kind** you can also choose the Kubernetes version and the number of nodes.
37+
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).
3538

3639
> [!NOTE]
3740
>
@@ -45,9 +48,15 @@ You can check which version of Kubernetes you're on with:
4548
$ kubectl version
4649
```
4750

48-
### Viewing system containers
51+
### Additional settings
52+
53+
#### Kubernetes dashboard
54+
55+
Once Kubernetes is installed and setup, you can select the **Deploy the Kubernetes Dashboard into cluster** setting so you can manage and monitor your Kubernetes clusters and applications more easily.
56+
57+
#### Viewing system containers
4958

50-
By default, Kubernetes system containers are hidden. To inspect these containers, navigate to **Settings** > **Kubernetes** and then enable **Show system containers (advanced)**.
59+
By default, Kubernetes system containers are hidden. To inspect these containers, enable **Show system containers (advanced)**.
5160

5261
You can now view the running Kubernetes containers with `docker ps` or in the Docker Desktop Dashboard.
5362

content/manuals/desktop/settings-and-maintenance/settings.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -425,6 +425,12 @@ deploying your Docker workloads on Kubernetes. To turn on Kubernetes support and
425425
install a standalone instance of Kubernetes running as a Docker container,
426426
select **Enable Kubernetes**.
427427

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+
428434
Select **Show system containers (advanced)** to view internal containers when
429435
using Docker commands.
430436

0 commit comments

Comments
 (0)