Skip to content

Commit 2887606

Browse files
authored
Merge pull request #30004 from gochist/ko-outdated-m7
[ko] Update outdated content in dev-1.22-ko.2 (Task M7)
2 parents 38be851 + 850144b commit 2887606

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

content/ko/docs/concepts/configuration/manage-resources-containers.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,8 @@ kubelet은 파드의 컨테이너를 시작할 때, CPU와 메모리 제한을
182182
플래그의 값으로 사용된다.
183183

184184
- 이 `spec.containers[].resources.limits.cpu` 값은 밀리코어 값으로 변환되고
185-
100을 곱한 값이다. 그 결과 값은 컨테이너가 100ms마다 사용할 수 있는 총 CPU
186-
시간이다. 이 간격 동안 컨테이너는 CPU 시간을 초과하여 사용할 수 없다.
185+
100을 곱한 값이다. 그 결과 값은 컨테이너가 100ms마다 사용할 수 있는 마이크로초 단위의
186+
총 CPU 시간이다. 이 간격 동안 컨테이너는 CPU 시간을 초과하여 사용할 수 없다.
187187

188188
{{< note >}}
189189
기본 쿼터 기간은 100ms이다. 최소 CPU 쿼터는 1ms이다.
@@ -338,13 +338,22 @@ spec:
338338
ephemeral-storage: "2Gi"
339339
limits:
340340
ephemeral-storage: "4Gi"
341+
volumeMounts:
342+
- name: ephemeral
343+
mountPath: "/tmp"
341344
- name: log-aggregator
342345
image: images.my-company.example/log-aggregator:v6
343346
resources:
344347
requests:
345348
ephemeral-storage: "2Gi"
346349
limits:
347350
ephemeral-storage: "4Gi"
351+
volumeMounts:
352+
- name: ephemeral
353+
mountPath: "/tmp"
354+
volumes:
355+
- name: ephemeral
356+
emptyDir: {}
348357
```
349358

350359
### 임시-스토리지 요청이 있는 파드의 스케줄링 방법

0 commit comments

Comments
 (0)