하나의 개발 피시에서 minikube를 여러개 실행할 수 있나요?
minikube는 profile 기능을 제공합니다.
minikube를 생성할 때, -p
옵션을 줄 수 있고 현재 사용중인 프로필을 확인하고 변경할 수 있습니다.
# 가상머신 시작
minikube start # 기본 profile - minikube로 생성
# 두번째 가상머신 시작
minikube start -p hellowlrd # helloworld 라는 이름의 profile로 생성
# profile 목록 확인
minikube profile list
# 현재 사용중인 profile 확인
minikube profile
# 다른 profile로 변경
minikube profile hellowlrd # helloworld로 변경
minikube profile minikube # minikube로 변경
# 가상머신 제거
minikube delete # 현재 사용중인 profile의 가상머신 제거
이 글도 확인해보세요.