Sheogorath
Sheogorath
I mean, rolling back is an option, but will also mean you will rollout a 1 year old version of the controller. Of course that's better than not functioning at...
The quickest solution would be: ```yaml # kustomization.yaml apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization resources: - github.com/rancher/system-upgrade-controller images: - name: rancher/system-upgrade-controller newTag: v0.13.4 ``` This would include all manifests and set the...
My current apache config for this repository: ``` ServerName mumble.example.com ProxyPreserveHost On ProxyRequests off ProxyPass /.wellknown ! ProxyVia On RewriteEngine On RewriteCond %{HTTP:Connection} Upgrade [NC] RewriteCond %{HTTP:Upgrade} websocket [NC] #...
Not sure what one would win by using now nodeJS instead of python. mumble-web is a static webapp. There is no server part (besides websockify), so I wonder what one...
Right now, you can't. The entire functionality to authenticate with a cert is missing and is actually hard to build into the Webclient since it's passed through a proxy to...
So is this workaround fine or should we make this a feature request? Otherwise I would like to close this :)
I just added this commit to my chart in order to handle things according to the upstream docs for zero downtime upgrades: https://git.shivering-isles.com/shivering-isles/infrastructure-gitops/-/commit/8f9931ec09403a8964fd82993e3f3d8033d19dec
We literally just removed this in order to reduce unexpected affinities by just selecting a different volume access mode. I guess the question becomes towards what end of the spectrum...
The error message is from the postgres instance telling you that the client with the ip address `10.2.4.187` is denied since the connection doesn't match any allowed config in pg_hpa.conf...
I use the zalando postgresql-operator myself and use the following adjustments to make things work: https://git.shivering-isles.com/shivering-isles/infrastructure-gitops/-/blob/94bab5d8af8e43b98ac78151b62e7d23d9d81ffd/apps/base/mastodon/release.yaml#L42-L82 (Be aware I use a fork of this helm chart nowadays so the adjustments...