Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions content/en/docs/tasks/tools/install-kubectl-windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,23 @@ installer or remove the Docker Desktop's `kubectl`.

1. Configure kubectl to use a remote Kubernetes cluster:

{{< tabs name="kubectl_win_config" >}}
{{% tab name="PowerShell" %}}

```powershell
New-Item config -type file
```

{{% /tab %}}
{{% tab name="Command Prompt" %}}

```cmd
copy nul config
```

{{% /tab %}}
{{< /tabs >}}

{{< note >}}
Edit the config file with a text editor of your choice, such as Notepad.
{{< /note >}}
Expand Down