94 lines
2.5 KiB
YAML
94 lines
2.5 KiB
YAML
---
|
|
# Source: radarr/charts/radarr/templates/common.yaml
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: radarr
|
|
labels:
|
|
app.kubernetes.io/controller: main
|
|
app.kubernetes.io/instance: radarr
|
|
app.kubernetes.io/managed-by: Helm
|
|
app.kubernetes.io/name: radarr
|
|
helm.sh/chart: radarr-4.4.0
|
|
namespace: radarr
|
|
spec:
|
|
revisionHistoryLimit: 3
|
|
replicas: 1
|
|
strategy:
|
|
type: Recreate
|
|
selector:
|
|
matchLabels:
|
|
app.kubernetes.io/controller: main
|
|
app.kubernetes.io/name: radarr
|
|
app.kubernetes.io/instance: radarr
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app.kubernetes.io/controller: main
|
|
app.kubernetes.io/instance: radarr
|
|
app.kubernetes.io/name: radarr
|
|
spec:
|
|
enableServiceLinks: false
|
|
serviceAccountName: default
|
|
automountServiceAccountToken: true
|
|
securityContext:
|
|
fsGroup: 1000
|
|
fsGroupChangePolicy: OnRootMismatch
|
|
runAsGroup: 1000
|
|
runAsUser: 1000
|
|
hostIPC: false
|
|
hostNetwork: false
|
|
hostPID: false
|
|
dnsPolicy: ClusterFirst
|
|
containers:
|
|
- env:
|
|
- name: TZ
|
|
value: US/Central
|
|
- name: PUID
|
|
value: "1000"
|
|
- name: PGID
|
|
value: "1000"
|
|
image: ghcr.io/linuxserver/radarr:6.0.4@sha256:06ac318ecb95a34c7b229568dcb4271f02cb5007bb189a0dd67a2032864187ca
|
|
imagePullPolicy: IfNotPresent
|
|
name: main
|
|
resources:
|
|
requests:
|
|
cpu: 100m
|
|
memory: 256Mi
|
|
volumeMounts:
|
|
- mountPath: /config
|
|
name: config
|
|
- mountPath: /mnt/store
|
|
name: media
|
|
- args:
|
|
- radarr
|
|
env:
|
|
- name: URL
|
|
value: http://localhost
|
|
- name: CONFIG
|
|
value: /config/config.xml
|
|
- name: PORT
|
|
value: "9793"
|
|
- name: ENABLE_ADDITIONAL_METRICS
|
|
value: "false"
|
|
- name: ENABLE_UNKNOWN_QUEUE_ITEMS
|
|
value: "false"
|
|
image: ghcr.io/onedr0p/exportarr:v2.3.0
|
|
imagePullPolicy: IfNotPresent
|
|
name: metrics
|
|
resources:
|
|
requests:
|
|
cpu: 10m
|
|
memory: 128Mi
|
|
volumeMounts:
|
|
- mountPath: /config
|
|
name: config
|
|
readOnly: true
|
|
volumes:
|
|
- name: config
|
|
persistentVolumeClaim:
|
|
claimName: radarr-config
|
|
- name: media
|
|
persistentVolumeClaim:
|
|
claimName: radarr-nfs-storage
|