Skip to content

Commit

Permalink
fix(k8s/amour/media/bazarr): .NET CoreCLR workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
uhthomas committed Nov 29, 2023
1 parent 0bc3dd7 commit 382eb03
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions k8s/amour/media/bazarr/stateful_set_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,16 @@ import (
name: "http"
containerPort: 6767
}]
env: [{
// .NET CoreCLR crashes when run
// in a container with a
// read-only filesystem.
//
// https://github.com/Radarr/Radarr/issues/7030#issuecomment-1039689518
// https://github.com/dotnet/runtime/issues/9336
name: "COMPlus_EnableDiagnostics"
value: "0"
}]
resources: limits: {
(v1.#ResourceCPU): "100m"
(v1.#ResourceMemory): "128Mi"
Expand Down

0 comments on commit 382eb03

Please sign in to comment.