Windows 10에서 Kubernetes 사용하기


참고: http://bit.ly/2E0nI9d

사전 설정: Windows 10에 Hyper-V가 설치되어 있어야 하고, 가상 스위치 이름을 기억하고 있어야 한다. 그리고 choco 패키지가 설치되어 있어야 한다

  1. Minikube 설치하기
    choco install minikube –force
  2. Kubernetes 설치하기
    choco install kubernetes-cli –force
  3. Minikube 시작하기
    minikube start –vm-driver hyperv –hyperv-virtual-switch “External Network”
  4. 기본적으로 실행중인 Pod 확인하기
    kubectl -n kube-system get pods
  5. 대시보드에 접속하기
    minikube dashboard
  6. 그 외 모든 kubernetes 명령어를 사용하면 된다

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s