mirror of
https://github.com/podman-desktop/podman-desktop
synced 2026-05-23 17:58:22 +00:00
docs: Kind clusters are not shown on Resources page on Windows when using podman-machine-default-root connection
Fixes #2080 Signed-off-by: Jeff MAURY <jmaury@redhat.com>
This commit is contained in:
parent
1c37096ba2
commit
a7c3dd2a2c
1 changed files with 13 additions and 11 deletions
|
|
@ -8,28 +8,30 @@ tags: [migrating-to-kubernetes, kind]
|
|||
|
||||
# Configuring Podman for Kind on Windows Subsystem for Linux (WSL)
|
||||
|
||||
When you create a Podman machine, Podman creates two system connections:
|
||||
|
||||
- The default rootless connection.
|
||||
- A rootful connection, which has a `-root` suffix.
|
||||
When you create a Podman machine, Podman creates the machine in rootless mode.
|
||||
|
||||
With a Podman machine running on WSL, Kind:
|
||||
|
||||
- Uses the default Podman connection.
|
||||
- Requires the rootful connection.
|
||||
- Requires the rootful machine.
|
||||
|
||||
Therefore, set the Podman machine default connection to rootful.
|
||||
Therefore, set the Podman machine to rootful mode.
|
||||
|
||||
#### Procedure
|
||||
|
||||
1. List the Podman system connections:
|
||||
1. Stop the Podman machine:
|
||||
|
||||
```shell-session
|
||||
$ podman system connection ls
|
||||
$ podman machine stop
|
||||
```
|
||||
|
||||
2. Set the Podman system default connection to connection that has the `-root` suffix:
|
||||
2. Set the Podman machine in rooful mode:
|
||||
|
||||
```shell-session
|
||||
$ podman system connection default podman-machine-default-root
|
||||
$ podman machine set --rootful
|
||||
```
|
||||
|
||||
3. Start the Podman machine:
|
||||
|
||||
```shell-session
|
||||
$ podman machine start
|
||||
```
|
||||
|
|
|
|||
Loading…
Reference in a new issue