From 6e88ee45a202a734f9b32ff5c0e54836d31abf29 Mon Sep 17 00:00:00 2001 From: Arhell Date: Wed, 13 Oct 2021 00:48:35 +0300 Subject: [PATCH] [es] add volume and volumeMount for ephemeral storage --- .../configuration/manage-resources-containers.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/content/es/docs/concepts/configuration/manage-resources-containers.md b/content/es/docs/concepts/configuration/manage-resources-containers.md index f936b9107e..a74f463b7c 100644 --- a/content/es/docs/concepts/configuration/manage-resources-containers.md +++ b/content/es/docs/concepts/configuration/manage-resources-containers.md @@ -329,6 +329,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: @@ -336,6 +339,12 @@ spec: ephemeral-storage: "2Gi" limits: ephemeral-storage: "4Gi" + volumeMounts: + - name: ephemeral + mountPath: "/tmp" + volumes: + - name: ephemeral + emptyDir: {} ``` ### Como son programados los Pods con solicitudes de almacenamiento efĂ­mero