Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Kubernetes storing persistent files

What's the best way to store a persistent file in Kubernetes? I have a cert (.pfx) and I want to be passing to the application its path. From the looks of it it can't be stored in secrets. Was thinking about a volume but the question is how do I upload the file to it? And which type of volume to choose? Or is there any other efficient way?

like image 740
FRC Avatar asked Feb 28 '26 01:02

FRC


1 Answers

It's unclear from your question why you came to the conclusion that it can't be stored as a Secret. This is one of the main use cases for Secrets.

Step 1. Create a Secret from your file:

kubectl create secret generic mysecret --from-file=myfile=/tmp/my.pfx

Step 2. Mount the Secret volume into a Pod:

kind: Pod
apiVersion: v1
metadata:
  name: secret-test-pod
spec:
  volumes:
  - name: secret-volume
    secret:
      secretName: mysecret
  containers:
  - name: ...
    image: ...
    volumeMounts:
    - name: secret-volume
      mountPath: "/etc/secret-volume"

Your container should see a file at /etc/secret-volume/myfile

like image 181
Janos Lenart Avatar answered Mar 02 '26 16:03

Janos Lenart



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!