Pod에 리소스 할당하기
단위
- cpu
- cpu : 200m
1000m이 1코어
- cpu : 1
1코어
- cpu : 200m
- memory
- memory : 1Gi
1024Mi
- memory : 1Gi
YAML 예시
apiVersion: v1
kind: Pod
metadata:
name: nginx-pod
spec:
containers:
- name: nginx-container
image: nginx:1.14
ports:
- containerPort: 80
protocol: TCP
resources:
requests:
memory: 500Mi
cpu: 200m
limits:
memory: 1Gi
cpu: 1