하나의 노드에 하나의 파드 (1) 썸네일형 리스트형 Kubernetes에서 특정 노드에 파드 하나만 띄우는 방법 개요 Kubernetes에서 특정 노드에 파드 하나만 띄우는 방법에 대해 알아보겠습니다. 설정 방법 1. NodeAffinity를 이용하는 방법 NodeAffinity는 파드가 특정 노드에만 배치되도록 하는 기능입니다. nodeAffinity: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - key: kubernetes.io/hostname operator: In values: - node1 2. Taints and Tolerations를 이용하는 방법 Taints는 특정 노드에만 어떤 파드가 배치되지 않도록 하는 기능입니다. Tolerations는 특정 파드가 특정 Taints가 설정된 노드에.. 이전 1 다음