28 lines
449 B
YAML
28 lines
449 B
YAML
|
|
---
|
||
|
|
apiVersion: apps/v1
|
||
|
|
kind: Deployment
|
||
|
|
metadata:
|
||
|
|
name: tuwunel
|
||
|
|
namespace: matrix
|
||
|
|
spec:
|
||
|
|
template:
|
||
|
|
spec:
|
||
|
|
containers:
|
||
|
|
- name: tuwunel
|
||
|
|
resources:
|
||
|
|
requests:
|
||
|
|
memory: 512Mi
|
||
|
|
cpu: 500m
|
||
|
|
limits:
|
||
|
|
memory: 2Gi
|
||
|
|
---
|
||
|
|
apiVersion: v1
|
||
|
|
kind: PersistentVolumeClaim
|
||
|
|
metadata:
|
||
|
|
name: tuwunel-data
|
||
|
|
namespace: matrix
|
||
|
|
spec:
|
||
|
|
resources:
|
||
|
|
requests:
|
||
|
|
storage: 50Gi
|