쿠버네티스를 이용한 nginx 빠른 배포

조회 1,241 · 댓글 0
AAnneBullock작성자2021년 11월 17일
$ kubectl create namespace webtest

$ kubectl create deployment --image nginx nginx-test -n webtest
$ kubectl expose deployment nginx-test --port=80 --type=LoadBalancer -n webtest

로그인 후 답글을 남길 수 있습니다.