41 lines
		
	
	
		
			871 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
		
		
			
		
	
	
			41 lines
		
	
	
		
			871 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
|  | apiVersion: apps/v1
 | ||
|  | kind: Deployment
 | ||
|  | metadata:
 | ||
|  |   name: wizarr
 | ||
|  |   namespace: wizarr
 | ||
|  |   labels:
 | ||
|  |     app: wizarr
 | ||
|  | spec:
 | ||
|  |   replicas: 1
 | ||
|  |   selector:
 | ||
|  |     matchLabels:
 | ||
|  |       app: wizarr
 | ||
|  |   template:
 | ||
|  |     metadata:
 | ||
|  |       labels:
 | ||
|  |         app: wizarr
 | ||
|  |     spec:
 | ||
|  |       containers:
 | ||
|  |       - name: wizarr
 | ||
|  |         image: ghcr.io/wizarrrr/wizarr:latest
 | ||
|  |         imagePullPolicy: Always
 | ||
|  |         env:
 | ||
|  |           - name: PUID
 | ||
|  |             value: '1000'
 | ||
|  |           - name: PGID
 | ||
|  |             value: '1000'
 | ||
|  |           - name: DISABLE_BUILTIN_AUTH
 | ||
|  |             value: 'false'
 | ||
|  |           - name: TZ
 | ||
|  |             value: Australia/Melbourne
 | ||
|  |         ports:
 | ||
|  |           - name: web
 | ||
|  |             containerPort: 5690
 | ||
|  |         volumeMounts:
 | ||
|  |         - mountPath: /data
 | ||
|  |           name: csismb-wizarr-data
 | ||
|  |       volumes:
 | ||
|  |       - name: csismb-wizarr-data
 | ||
|  |         persistentVolumeClaim:
 | ||
|  |           claimName: csismb-wizarr-data
 |