Replies: 2 comments 8 replies
-
Some people are experimenting with rootless podman: https://minikube.sigs.k8s.io/docs/drivers/podman/ Previously there were some issues with running crio-in-podman, not sure if those are better or worse now... |
Beta Was this translation helpful? Give feedback.
1 reply
-
Running podman with sudo was previously the recommended approach, over adding a "podman" group. i.e. for docker it is using the "docker" group, rather than |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
Using podman with minikube right now requires allowing passwordless sudo: kubernetes/minikube#18360.
issue: minikube must be ran as the local user but podman must be ran as root.
current solution: passwordless
sudo podman
, minikube runssudo podman
on behalf of the user.issue with the current solution: it is as insecure as passwordless docker.
As a polkit newbie I tried adding a file named "podman" to my
PATH
:But it causes A LOT of login prompts !
I see a related discussion about
podman-remote
but I'm not sure it applies to this issue: #12903.Does anyone have a solution ? Could we reconcile podman and minikube ?
EDIT:
I tried this but it still asks me for a password a billion times :(
Beta Was this translation helpful? Give feedback.
All reactions