How to mount multiple files / secrets into common directory in kubernetes?

前端 未结 3 1263
无人及你
无人及你 2021-02-05 14:08

I\'ve multiple secrets created from different files. I\'d like to store all of them in common directory /var/secrets/. Unfortunately, I\'m unable to do that because

3条回答
  •  深忆病人
    2021-02-05 14:29

    Edited: @Jonas answer is correct!

    However, if you use volumes as I did in the question then, short answer is you cannot do that, You have to specify mountPath to an unused directory - volumes have to be unique and cannot be mounted to common directory.

    Solution: What I did at the end was, instead keeping files in separate secrets, I created one secret with multiple files.

提交回复
热议问题