코드 잡동사니

쿠버네티스 service 생성 본문

가상화/쿠버네티스

쿠버네티스 service 생성

세객 2019. 8. 30. 16:44

쿠버네티스 구현체가 도커로 되어 있어서 

 

이미지를 다운받을 때 도커 허브에 있는 경로로 해도 된다. 

 

deployment 올릴 yml 을 작성 후 

kubectl create -f [이름].yml

or

kubectl run kubernetes-bootcamp --image=gcr.io/google-samples/kubernetes-bootcamp:v1 --port=8080

 

서비스 오브젝트를 올려야 외부에서 접근이 가능함

type = [ClusterIP, NodePort, LoadBalancer, ExternalName]

참조: https://kubernetes.io/ko/docs/tutorials/kubernetes-basics/expose/expose-intro/

kubectl expose deployment [생성한 deployment 이름] --type=LoadBalancer --port=[포트]

 

minikube service [deployment 이름]

'가상화 > 쿠버네티스' 카테고리의 다른 글

쿠버네티스 명령어  (0) 2019.09.04
Comments