Request
- pod를 생성할 때 필요한 Resource 최소치
Limits
- Pod가 사용할 수 있는 Resource 최대치
Throttling
- cpu가 과도할 때, 강제로 down 시킴
CPU
- Limit 넘어서는 경우, throttling 발생 우려
Memory
- Limit 넘어서는 경우, Pod 종료
apiVersion: v1
kind: Pod
metadata:
name: sample-pod
labels:
sample: app
spec:
containers:
- name: sample-webapp-color
image: simple-webapp-color
ports:
- containerPort: 8080
resources:
requests:
cpu: 1
memory: "1Gi"
limits:
cpu: 2
memory: "2Gi"
'Kubernetes' 카테고리의 다른 글
None-Selector 서비스 (0) | 2024.02.17 |
---|---|
스케줄링(taint&tolerations/NodeSelector/NodeAffinity) (0) | 2024.02.13 |
서비스 API 카테고리(ExternalName) (0) | 2024.02.11 |
서비스 API 카테고리(Headless) (0) | 2024.02.11 |
서비스 API 카테고리(세션 어피니티) (0) | 2024.02.11 |