Skip to content

Commit 754b9e5

Browse files
authored
Merge pull request #30054 from Arhell/add-volume
[ja] add volume and volumeMount for ephemeral storage
2 parents 2198295 + 5254e90 commit 754b9e5

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -270,13 +270,22 @@ spec:
270270
ephemeral-storage: "2Gi"
271271
limits:
272272
ephemeral-storage: "4Gi"
273+
volumeMounts:
274+
- name: ephemeral
275+
mountPath: "/tmp"
273276
- name: log-aggregator
274277
image: images.my-company.example/log-aggregator:v6
275278
resources:
276279
requests:
277280
ephemeral-storage: "2Gi"
278281
limits:
279282
ephemeral-storage: "4Gi"
283+
volumeMounts:
284+
- name: ephemeral
285+
mountPath: "/tmp"
286+
volumes:
287+
- name: ephemeral
288+
emptyDir: {}
280289
```
281290

282291
### エフェメラルストレージを要求するPodのスケジュール方法

0 commit comments

Comments
 (0)