Setting Kubernetes emptyDir volume size

后端 未结 2 1962
猫巷女王i
猫巷女王i 2021-01-05 06:11

I\'m creating a ram based emptyDir volume for a pod.

 volumes:
  - name: ram-disk
    emptyDir:
      medium: \"Memory\"

Because this is a

相关标签:
2条回答
  • 2021-01-05 06:48

    For kubernetes-1.7.x, it's possible to set the sizeLimit for an EmptyDir.

    0 讨论(0)
  • 2021-01-05 07:00

    TL;DR: No, at least not for now.

    This is an open issue, see 13479. Since I don't know your use case, I suppose my only suggestion is to try and use hostPath as a workaround, see also the docs for more details.

    0 讨论(0)
提交回复
热议问题