Skip to content

Commit c82913e

Browse files
committed
chore(k8s/amour/media): make tmp dir writable
1 parent 61a7f6b commit c82913e

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

k8s/amour/media/radarr/stateful_set_list.cue

+6
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ import (
2121
metadata: labels: "app.kubernetes.io/name": #Name
2222
spec: {
2323
volumes: [{
24+
name: "tmp"
25+
emptyDir: {}
26+
}, {
2427
name: "media"
2528
persistentVolumeClaim: claimName: "media"
2629
}]
@@ -48,6 +51,9 @@ import (
4851
volumeMounts: [{
4952
name: "config"
5053
mountPath: "/config"
54+
}, {
55+
name: "tmp"
56+
mountPath: "/tmp"
5157
}, {
5258
name: "media"
5359
mountPath: "/media"

k8s/amour/media/sonarr/stateful_set_list.cue

+6
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ import (
2121
metadata: labels: "app.kubernetes.io/name": #Name
2222
spec: {
2323
volumes: [{
24+
name: "tmp"
25+
emptyDir: {}
26+
}, {
2427
name: "media"
2528
persistentVolumeClaim: claimName: "media"
2629
}]
@@ -48,6 +51,9 @@ import (
4851
volumeMounts: [{
4952
name: "config"
5053
mountPath: "/config"
54+
}, {
55+
name: "tmp"
56+
mountPath: "/tmp"
5157
}, {
5258
name: "media"
5359
mountPath: "/media"

0 commit comments

Comments
 (0)