공부하는 스누피

MiniKube + Podman 환경 셋업 본문

정리 모음

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}

'정리 모음' 카테고리의 다른 글

[Jenkins] GitHub custom status check  (0) 2022.07.01
SonarQube 8.9 연동 가이드  (0) 2022.06.24
Clean Code 메모 정리  (0) 2021.03.19
도커(Docker) 사용법  (0) 2021.01.01
슈도코드(의사코드, pseudocode) 가이드라인  (0) 2020.10.19
Comments