"K8s 컨트롤플레인 노드"의 두 판 사이의 차이

 
41번째 줄: 41번째 줄:


==참고==
==참고==
* https://kubernetes.io/docs/concepts/#kubernetes-master
* https://kubernetes.io/docs/concepts/overview/components/#control-plane-components
* http://bcho.tistory.com/1256?category=731548 쿠버네티스 #2 - 개념 이해 (1/2) 《조대협의 블로그》 2018-05-21


[[분류:K8s Node]]
[[분류:K8s Node]]

2025년 9월 6일 (토) 16:15 기준 최신판

1 개요[ | ]

k8s control-plane node, 舊 master node
k8s 컨트롤플레인 노드, 舊 마스터 노드

Kubernetes.png

$ kubectl get nodes | grep control-plane
controlplane   Ready    control-plane   17d   v1.33.2
$ kubectl get nodes -l node-role.kubernetes.io/control-plane=""
NAME           STATUS   ROLES           AGE   VERSION
controlplane   Ready    control-plane   17d   v1.33.2
$ kubectl get pod -n kube-system | grep controlplane
etcd-controlplane                         1/1     Running   2 (47m ago)   17d
kube-apiserver-controlplane               1/1     Running   2 (47m ago)   17d
kube-controller-manager-controlplane      1/1     Running   2 (47m ago)   17d
kube-scheduler-controlplane               1/1     Running   2 (47m ago)   17d

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}