Skip to content

Instantly share code, notes, and snippets.

@m0hadang
Last active February 1, 2026 05:27
Show Gist options
  • Select an option

  • Save m0hadang/903986396303e74f191dd9504d1447a2 to your computer and use it in GitHub Desktop.

Select an option

Save m0hadang/903986396303e74f191dd9504d1447a2 to your computer and use it in GitHub Desktop.
troubleshooting

troubleshooting

run minikube using podman driver

  • podman machine init
  • podman machine start
  • minikube start --driver=podman

powershell

powershell 이 시스템에서 스크립트를 실행할 수 없으므로 Microsoft.PowerShell_profile.ps1 파일을 로드할 수 없습니다.

minikube ps1 alias

wsl

try

podman build

podman not working. do trouble shooting.

PS C:\test-git-ops> podman ps
Cannot connect to Podman. Please verify your connection to the Linux system using `podman system connection list`, or try `podman machine init` and `podman machine start` to manage a new Linux VM
Error: unable to connect to Podman socket: failed to connect: ssh: handshake failed: read tcp 127.0.0.1:49319->127.0.0.1:50653: wsarecv: An existing connection was forcibly closed by the remote host.
  • check wsl is working

clean minikube and start

  • Step 1: Delete the corrupted minikube profile

    • minikube delete
  • Step 2: Start a fresh minikube with podman driver

    • minikube start --driver=podman

clean podman and start podman

  • Optional: If the above doesn't work, reset Podman too

    • podman machine stop
    • podman machine rm
    • podman machine init
    • podman machine start
  • Then start minikube

    • minikube start --driver=podman
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment