정리 모음

MiniKube + Podman 환경 셋업

커피맛스누피 2025. 3. 14. 22:25

- 환경: MacOS M1 Terminal

1. minikube 설치

brew install minikube

2. podman 설치 (desktop app 설치하는 게 추천됨)

https://podman.io/docs/installation

[Podman Installation | Podman

Looking for a GUI? You can find Podman Desktop here.

podman.io](https://podman.io/docs/installation)

3. 단축키 지정하기

alias mkubectl="minikube kubectl --"
alias docker="podman"

4. minikube 실행 (자원은 podman 초기 세팅할 때 맞췄던 자원 크기 이하로 세팅)

 mkubectl start --cpus=4 --memory="8GB" --disk-size 100GB --wait=all --wait-timeout=30m0s --driver=podman --alsologtostderr

5. (Optional) private registry 로그인

docker login {registry address}