minikube Trouble Shooting

2023. 5. 27. 19:01클라우드

Profile name 'minikube' is duplicated with machine name 'minikube' in profile 'minikube_old'

'minikube start' 수행시, 에러가 발생함

# 존재하는 profile 확인
# minikube_old가 존재함
minikube profile list

# profile이 있는 위치로 이동
# minikube와 minikube_old 2개가 존재함
cd ~/.minikube/profiles

# 필요없는 profile 제거
rm -r minikube_old

# minikue 실행
minikube start

 

Error from server (Forbidden): pods is forbidden: User "system:anonymous" cannot list resource "pods" in API group "" at the cluster scope

접속한 하였고, 권한이 없는 상태

 

Error from server (Forbidden): pods is forbidden: User "employee" cannot list resource "pods" in API group "" in the namespace "default"

'employee' user가 'default' namespace의 pod를 볼 권한이 없음

 

로그에 작동중에 'Killed'라고 찍힘

메모리가 부족해서 생긴 문제임
'kubectl get pods'에서 상태값이 'OOMKilled'로 나옴
OOM이 발생하는 원인을 찾아야 해결할 수 있음(어려움)