From 5254e909883a90b37a8d8ff75bbf611c9d588959 Mon Sep 17 00:00:00 2001 From: Arhell Date: Tue, 12 Oct 2021 00:37:01 +0300 Subject: [PATCH] [ja] add volume and volumeMount for ephemeral storage --- .../configuration/manage-resources-containers.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/content/ja/docs/concepts/configuration/manage-resources-containers.md b/content/ja/docs/concepts/configuration/manage-resources-containers.md index 0d59ecd319..f775f14b11 100644 --- a/content/ja/docs/concepts/configuration/manage-resources-containers.md +++ b/content/ja/docs/concepts/configuration/manage-resources-containers.md @@ -270,6 +270,9 @@ spec: ephemeral-storage: "2Gi" limits: ephemeral-storage: "4Gi" + volumeMounts: + - name: ephemeral + mountPath: "/tmp" - name: log-aggregator image: images.my-company.example/log-aggregator:v6 resources: @@ -277,6 +280,12 @@ spec: ephemeral-storage: "2Gi" limits: ephemeral-storage: "4Gi" + volumeMounts: + - name: ephemeral + mountPath: "/tmp" + volumes: + - name: ephemeral + emptyDir: {} ``` ### エフェメラルストレージを要求するPodのスケジュール方法