telekom-mms / cmcc-operator

Kubernetes Operator to bring up a CoreMedia Content Cloud installation
Apache License 2.0
9 stars 3 forks source link

UAPI Blob Cache should be an emptyDir #74

Closed stefanbethke closed 11 months ago

stefanbethke commented 1 year ago

Is your feature request related to a problem? Please describe. Right now, the UAPI blob cache is configured as a PVC. However, the UAPI cache will be cleaned/deleted on startup of the client, and it therefor unnecessary to use a PVC for that.

Describe the solution you'd like Use an emptyDir for the blob cache, and make sure the disk space health check is configured correctly, so the component is restarted if the emptyDir grows too big.

stefanbethke commented 1 year ago

Changing this has to be evaluated properly:

schurzi commented 1 year ago

you could also use ephemeral Volumes: https://kubernetes.io/docs/concepts/storage/ephemeral-volumes/#generic-ephemeral-volumes

stefanbethke commented 11 months ago

This has been superceded by #103.