deployment.yaml 324 B

123456789101112131415161718
  1. apiVersion: apps/v1
  2. kind: Deployment
  3. metadata:
  4. name: webtlo
  5. spec:
  6. template:
  7. spec:
  8. containers:
  9. - name: webtlo
  10. volumeMounts:
  11. - name: tmp
  12. mountPath: /tmp
  13. volumes:
  14. - name: tmp
  15. hostPath:
  16. path: /home/oleg/.local/tmp/qbittorrent
  17. type: Directory