Skip to content

Commit

Permalink
chore(k8s/amour/media): make tmp dir writable
Browse files Browse the repository at this point in the history
  • Loading branch information
uhthomas committed Mar 1, 2024
1 parent 61a7f6b commit c82913e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions k8s/amour/media/radarr/stateful_set_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ import (
metadata: labels: "app.kubernetes.io/name": #Name
spec: {
volumes: [{
name: "tmp"
emptyDir: {}
}, {
name: "media"
persistentVolumeClaim: claimName: "media"
}]
Expand Down Expand Up @@ -48,6 +51,9 @@ import (
volumeMounts: [{
name: "config"
mountPath: "/config"
}, {
name: "tmp"
mountPath: "/tmp"
}, {
name: "media"
mountPath: "/media"
Expand Down
6 changes: 6 additions & 0 deletions k8s/amour/media/sonarr/stateful_set_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ import (
metadata: labels: "app.kubernetes.io/name": #Name
spec: {
volumes: [{
name: "tmp"
emptyDir: {}
}, {
name: "media"
persistentVolumeClaim: claimName: "media"
}]
Expand Down Expand Up @@ -48,6 +51,9 @@ import (
volumeMounts: [{
name: "config"
mountPath: "/config"
}, {
name: "tmp"
mountPath: "/tmp"
}, {
name: "media"
mountPath: "/media"
Expand Down

0 comments on commit c82913e

Please sign in to comment.