Sangil's blog

https://github.com/ChoiSangIl Admin

kubernetes 단일 호스트에서 Pod 배포하기 DEV / DOCKER

2020-03-11 posted by sang12


쿠버네티스에서는 기본적으로 컨트롤 패널에서 보안이슈르 파드를 스케쥴 하지 않는다. 그렇기 때문에 단일 호스팅만 사용하는 경우 POD를 배포하기 위해선 따로 설정을 해줘야한다. 

By default, your cluster will not schedule Pods on the control-plane node for security reasons. If you want to be able to schedule Pods on the control-plane node, for example for a single-machine Kubernetes cluster for development, run:

(참고 : https://kubernetes.io/docs/setup/production-environment/tools/kubeadm/create-cluster-kubeadm/)

-명령어
kubectl taint nodes --all node-role.kubernetes.io/master-

#kube 단일호스트 #kube single host #kube master 하나로
REPLY