Michael Blickenstorfer

Results 13 comments of Michael Blickenstorfer

@bjw-s Thank you for your input. I didn't read anything about breaking changes respectively about how to upgrade to a newer version of k8s-at-home/vaultwarden. Vaultwarden was installed with the following...

So the configuration changes to: ```Bash --set auth.username='vaultwarden-admin' \ --set auth.password='PASSWORD' ``` Right? But how am I supposed to upgrade only the database, as [per instructions](https://docs.bitnami.com/kubernetes/infrastructure/postgresql/administration/upgrade/#upgrading-instructions), when this chart isn't...

I was able to upgrade to the newest chart version (vaultwarden-5.0.0) with the following commands: ```Bash # Delete Statefulset kubectl -n vaultwarden delete statefulset.apps/vaultwarden-postgresql kubectl -n vaultwarden delete secret vaultwarden-postgresql...

Hey @philmccOri I was wondering about pretty much the same question, as I need the `pgjwt` extension for my Postgres containers (Supabase). But if you look at the [Dockerfile on...

Dived a bit deeper into this topic and found a little dirty hack. The Postgres URL is currently more or less hard-coded and there is no ability to set additional...

@milanvanschaik Can you check the merge request?

Same here. We want to use point-in-time snapshots with Kasten (K10) backups. Hopefully, this feature is soon available! Is there a release date already scheduled?

See: https://stackoverflow.com/questions/62531462/docker-local-registry-exec-htpasswd-executable-file-not-found-in-path/71658782#71658782 `htpasswd` was removed from the latest docker registry images. You can use httpd instead: ``` mkdir auth docker run \ --entrypoint htpasswd \ httpd:2 -Bbn testuser testpassword >...

@Kiho Do you use ingresses for the kong API? Make sure, that the `SUPABASE_REST_URL` points to the kong API service. Depending on your implementation this is either the ingress hostname...

@Kiho The usual case;) Regarding the Postgres Docker image try to use your own, as the one provided in the docs of this repo isn't quite up to date. Also,...