설치를 하기전에 바이오스에
VT-x or AMD-v virtualization must be enabled in your computer’s BIOS.
그리고
For OS X, install VirtualBox or VMware Fusion, or HyperKit.
VirturlBox다운로드 경로
https://www.virtualbox.org/wiki/Download_Old_Builds_5_1
다운로드 후 실행
https://storage.googleapis.com/kubernetes-release/release/v1.10.0/bin/windows/amd64/kubectl.exe
다운받아서 SYSTEM PATH에 경로는 적어준다.
[내컴퓨터] -[속성] - 설정변경 - 고급탭- 환경변수 - 시스템 변수 항목에서 Path라는것을 선택하고 편집 kubectl.exe경로를 넣어줌
세미콜론(;)이 구분자임
https://github.com/kubernetes/minikube/releases
다운로드 minikube-installer.exe
cmd창에서
>minikube version
> mini kube start --vm-driver=hyperv --hyperv-virtual-switch="external"
--kubernetes-version="v1.8.0" --memory=4096
이케하면 cluster를 다운로드함
아니면 minikube start --cpus 4 --memory 2048 이런식으로 해도 됨..
요케하며 VirtualBox관리자에 minikube라는 vm이 만들어지며 자동 실행되게 된다
가상(관리화면)머신을 선택하면 vm으로 넣어가며 minikube login: 이 라고 나온다.. root를 치면 암호를 묻지 않고 들어간다
윈도우화면에서(cmd) minikube status - 상태확인
minikube stop/start
minikube dashboard 이렇게하면 http://xx.xx.xx.xx:30000/#!/overview?namespace=default 라는 웹 브라우져가 뜸
명령어 | 설명 |
---|---|
minikube addons | 미니큐브의 쿠버네티스 애드온 변경 |
minikube cache | 로컬 캐시에서 이미지 추가/삭제 |
minikube completion | Outputs minikube shell completion for the given shell (bash or zsh) |
minikube config | 미니큐브 설정 변경 |
minikube dashboard | Opens/displays the kubernetes dashboard URL for your local cluster |
minikube delete | 로컬 쿠버네티스 클러스터 삭제 |
minikube docker-env | 도커 환경변수 설정하기. $(docker-machine env) 와 유사함 |
minikube get-k8s-versions | 로컬큐브 부트스트래퍼를 사용할 때 미니큐브에 사용가능한 쿠버네티스 버전 목록 조회 |
minikube ip | 실행중인 클러스터의 IP 주소 조회 |
minikube logs | 실해중인 로컬큐브 인스턴스의 로그 조회. (사용자 코드가 아니라) 미니큐브 디버깅에 사용 |
minikube mount | 미니큐브에 특정 디렉토리 마운트 |
minikube profile | Profile sets the current minikube profile |
minikube service | Gets the kubernetes URL(s) for the specified service in your local cluster |
minikube ssh | Log into or run a command on a machine with SSH; similar to 'docker-machine ssh' |
minikube ssh-key | Retrieve the ssh identity key path of the specified cluster |
minikube start | Starts a local kubernetes cluster |
minikube status | Gets the status of a local kubernetes cluster |
minikube stop | Stops a running local kubernetes cluster |
minikube update-check | 현재 및 최신버전 출력 |
minikube update-context | Verify the IP address of the running cluster in kubeconfig. |
minikube version | 미니큐브 버전 출력 |
'나는 노동자 > KUBERNETES' 카테고리의 다른 글
cluster upgrade process (0) | 2019.05.22 |
---|---|
OS Upgrade drain cordon uncordon (0) | 2019.05.22 |
configmap,secret in pod (0) | 2019.05.21 |
kubernetes add nodes (0) | 2019.04.22 |
Service - NodePort (0) | 2018.08.02 |