29 lines
586 B
YAML
29 lines
586 B
YAML
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: resilio-sync
|
||
|
spec:
|
||
|
strategy:
|
||
|
type: Recreate
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: resilio-sync
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: resilio-sync
|
||
|
spec:
|
||
|
volumes:
|
||
|
- name: data
|
||
|
hostPath:
|
||
|
path: /data/resilio-sync
|
||
|
containers:
|
||
|
- name: resilio-sync
|
||
|
image: resilio/sync:2.7.3
|
||
|
resources:
|
||
|
limits:
|
||
|
cpu: 500m
|
||
|
memory: 512Mi
|
||
|
volumeMounts:
|
||
|
- name: data
|
||
|
mountPath: /mnt/sync
|