37 lines
		
	
	
	
		
			758 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
	
		
			758 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
apiVersion: apps/v1
 | 
						|
kind: Deployment
 | 
						|
metadata:
 | 
						|
  labels:
 | 
						|
    app: jellyseerr
 | 
						|
  name: jellyseerr
 | 
						|
spec:
 | 
						|
  replicas: 1
 | 
						|
  selector:
 | 
						|
    matchLabels:
 | 
						|
      app: jellyseerr
 | 
						|
  strategy:
 | 
						|
    type: Recreate
 | 
						|
  template:
 | 
						|
    metadata:
 | 
						|
      creationTimestamp: null
 | 
						|
      labels:
 | 
						|
        app: jellyseerr
 | 
						|
    spec:
 | 
						|
      containers:
 | 
						|
      - image: fallenbagel/jellyseerr:1.7.0
 | 
						|
        name: jellyseerr
 | 
						|
        resources:
 | 
						|
          requests:
 | 
						|
            cpu: 35m
 | 
						|
            memory: 587804717
 | 
						|
        ports:
 | 
						|
        - name: http
 | 
						|
          containerPort: 5055
 | 
						|
          protocol: TCP
 | 
						|
        volumeMounts:
 | 
						|
        - name: config
 | 
						|
          mountPath: /app/config
 | 
						|
      volumes:
 | 
						|
      - name: config
 | 
						|
        persistentVolumeClaim:
 | 
						|
          claimName: jellyseerr-config-data
 |