Q&A
expose 했을때 deployments.extensions
제가 사용중인 GKE 버전은 'Server Version: v1.15.12-gke.2' 인데요. 강의 내용대로 실행하면 아래와 같이 에러가 발생합니다. *********************************************** Error from server (NotFound): deployments.extensions "nginx" not found *********************************************** 하여, run 명령 대신 create를 사용하면 deployment를 생성하고 expose를 진행하면 정상적으로 동작하는 것을 확인 했습니다. kubectl create deployment nginx --image=nginx kubectl expose deployment nginx --port=80 --type=LoadBalancer 앞으로도 잘 부탁 드립니다.
- Likes
- 10
- Comments
- 11
- Viewcount
- 1367

