I had some trouble recently which made me have to clear my kubernetes metadata. In the process, my apps had to pull their images again. The problem is that both immich and paperless ngx depend on the bitnami/redis:7.0.11 image, which has been taken down by bitnami a few weeks ago. Can I somehow fix this dependency locally, do I have to wait for the apps to get updates to fix it?
I am running TrueNAS Dragonfish-24.04.2.5, the immich Chart Version is 4.0.23, paperless chart version is 1.2.61
Any clues are appreciated
Probably have to wait and see. Check the forums for those projects.
The reason for this is that the chart is using the redis container from bitnami, which as of Sept 29th was discontinued (Sorry for the weird link formatting, apparently you can’t include links in posts?): https:// github .com /bitnami/containers/issues/83267
The chart needs to be updated to point to a good source for redis containers.
Disclaimer:
I’m a new truenas user and I’m trying out immich for the first time. My investigation has been all of 1 hour. I don’t know if there’s already a good place for redis containers. Also the immich version of the chart is behind. Maybe the chart needs an update, if I continue with immich I’ll look into this further. But I was able to get immich up and running with this information. Take this with a grain of salt, just trying to help.
Use at your own risk:
After installing the application, which you have presumably already done, you can override the value of the redis container location in a values file.
Get a shell and edit the file at /ix-applications/releases/<application_name:likely immich>/charts/4.0.23/ix_values.yaml
I added the following lines to use the latest build bitnami secure. See the link above, only the latest tag is valid:
redisImage:
repository: bitnamisecure/redis
pullPolicy: IfNotPresent
tag: latest
The chart is pinned to 7.0.11. You can also use the legacy repo, which will not receive any security updates. But as an option, these lines are untested but should also work:
redisImage:
repository: bitnamilegacy/redis