add other recipes
This commit is contained in:
		
							
								
								
									
										37
									
								
								apps/recipes/deployment.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										37
									
								
								apps/recipes/deployment.yaml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,37 @@ | ||||
| apiVersion: apps/v1 | ||||
| kind: Deployment | ||||
| metadata: | ||||
|   name: mealie | ||||
| spec: | ||||
|   selector: | ||||
|     matchLabels: | ||||
|       app: mealie | ||||
|   template: | ||||
|     metadata: | ||||
|       labels: | ||||
|         app: mealie | ||||
|     spec: | ||||
|       containers: | ||||
|       - name: mealie | ||||
|         image: mealie | ||||
|         resources: | ||||
|           limits: | ||||
|             memory: "128Mi" | ||||
|             cpu: "500m" | ||||
|         ports: | ||||
|         - containerPort: 9000 | ||||
|         env: | ||||
|           - name: ALLOW_SIGNUP | ||||
|             value: "true" | ||||
|           - name: TZ | ||||
|             value: Europe/Paris | ||||
|           - name: BASE_URL | ||||
|             value: https://recipes.kluster.moll.re | ||||
|         volumeMounts: | ||||
|         - name: mealie-data | ||||
|           mountPath: /app/data | ||||
|  | ||||
|       volumes: | ||||
|       - name: mealie-data | ||||
|         persistentVolumeClaim: | ||||
|           claimName: mealie-data | ||||
		Reference in New Issue
	
	Block a user