48 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
apiVersion: apps/v1
 | 
						|
kind: Deployment
 | 
						|
metadata:
 | 
						|
  labels:
 | 
						|
    app: radarr
 | 
						|
  name: radarr
 | 
						|
spec:
 | 
						|
  replicas: 1
 | 
						|
  selector:
 | 
						|
    matchLabels:
 | 
						|
      app: radarr
 | 
						|
  strategy:
 | 
						|
    type: Recreate
 | 
						|
  template:
 | 
						|
    metadata:
 | 
						|
      creationTimestamp: null
 | 
						|
      labels:
 | 
						|
        app: radarr
 | 
						|
    spec:
 | 
						|
      containers:
 | 
						|
      - image: ghcr.io/hotio/radarr:release-5.19.3.9730
 | 
						|
        imagePullPolicy: IfNotPresent
 | 
						|
        name: radarr
 | 
						|
        ports:
 | 
						|
        - containerPort: 7878
 | 
						|
          name: http
 | 
						|
          protocol: TCP
 | 
						|
        resources:
 | 
						|
          requests:
 | 
						|
            cpu: 25m
 | 
						|
            memory: 920733364
 | 
						|
        volumeMounts:
 | 
						|
        - mountPath: /config
 | 
						|
          name: config
 | 
						|
        - mountPath: /data
 | 
						|
          name: data
 | 
						|
        - mountPath: /films
 | 
						|
          name: films
 | 
						|
      volumes:
 | 
						|
      - name: config
 | 
						|
        persistentVolumeClaim:
 | 
						|
          claimName: radarr-config-data
 | 
						|
      - name: films
 | 
						|
        persistentVolumeClaim:
 | 
						|
          claimName: smb-films
 | 
						|
      - name: data
 | 
						|
        persistentVolumeClaim:
 | 
						|
          claimName: smb-usenet
 |