RyanKor / mlops-lifecycle-management

mlops 생애 주기 관리 및 배포 학습하기
0 stars 0 forks source link

[Bug Report] `Kubeflow UI Guide` 페이지의 `Central Dashboard` 접속 관련 추가 내용 필요 문의 #4

Closed RyanKor closed 2 years ago

RyanKor commented 2 years ago

실습 관련 문의 사항이 있어 이슈 상황 정리

1. 문서 상황 구현 시도

image

위의 이미지에서처럼 Central Dashboard 접속과 관련한 내용이 모두의 mlops 문서에 있는 것을 확인

해당 문서 링크

해당 문서 앞에 설명되어 있는 Central Dashboard 접속을 하기 위해서는 kubectl port-forward --address <internal ip> svc/centraldashboard -n kubeflow 8082:80 형태로 접속하게끔 안내가 되어 있었고, 초반에 해당 방법으로 접속하니, 아래와 같은 에러를 발견

2. 문서 내용 오인으로 CentralDashboard에서 에러 발생

image

이후, Kubeflow repo에 올라온 버그 리포트를 읽으면서 istio-ingressgateway 설정을 통해 접속하는 방법을 모두의 mlops 문서에서 안내했던 것이 생각이 났고, kubectl port-forward --address <internal ip> svc/istio-ingressgateway -n istio-system 8080:80 로 접속하니 정상적으로 jupyter notebook 생성 화면이 나오는 것을 확인할 수 있었습니다.

3. 에러 상황 해결

image

kubectl port-forward --address <internal ip> svc/istio-ingressgateway -n istio-system 8080:80

4. Reference