27 lines
		
	
	
		
			503 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			503 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| apiVersion: apps/v1
 | |
| kind: Deployment
 | |
| metadata:
 | |
|   name: rss
 | |
| spec:
 | |
|   replicas: 1
 | |
|   selector:
 | |
|     matchLabels:
 | |
|       app: rss
 | |
|   template:
 | |
|     metadata:
 | |
|       labels:
 | |
|         app: rss
 | |
|     spec:
 | |
|       containers:
 | |
|         - name: rss-container
 | |
|           image: arsfeld/yarr:latest
 | |
|           ports:
 | |
|             - containerPort: 7070
 | |
|           volumeMounts:
 | |
|             - name: data
 | |
|               mountPath: /data
 | |
|       volumes:
 | |
|         - name: data
 | |
|           persistentVolumeClaim:
 | |
|             claimName: data
 |