Dan

Results 43 comments of Dan

The goal would be for this `securityContext` block to function with `readOnlyRootFilesystem` set to `true` ``` securityContext: #readOnlyRootFilesystem: true # Fails, unsure reason runAsNonRoot: true runAsUser: 1000 runAsGroup: 1000 privileged:...

Being to manage family accounts in keycloak, rather than on a per-app basis is huge for me, I am following this, and when progress is made (or if testers are...

> Also another suggestion: create a healthcheck endpoint for Kubernetes probes. Maybe also add Prometheus metrics? Ideally this would be a /live and a /ready (or similar) and could be...

Currently selfoss does not have any mechanism to update the unread count (pretty sure on this but someone please correct me if I am wrong). Such a feature would be...

Before the upgrade step is run, a list of active plugins is obtained. Then the upgrade step runs, and the list of active plugins is compared and the diff printed...

Since I am running in k8s, I did the following: 1. Moved the upgrade logic into a shell script stored in a configmap 2. Made my own docker image that...

> Upgrading the Apache image without copying the files at startup shouldn't be too much of a problem, after all a manual upgrade, as described in the documentation, means replacing...

I ended up getting around this by building a new container with the source mounted in `/var/www/html` instead of an incorrect location ``` FROM nextcloud:29.0.2-fpm RUN mv /usr/src/nextcloud/* /usr/src/nextcloud/.* /var/www/html...

I just tried to get this working, no no avail. Supporting generic openid-connect clients (instead of just google/github) would be a huge help in most of the cases where people...

``` kubeProxyReplacement: "strict" hostServices: hostNamespaceOnly: true ``` This didn't seem to work as expected on cilium 1.15.5 Is `bpf-lb-sock-hostns-only: true` also required, or will kata+kube-proxy free not work currently? Thanks!