Matrix Docker Ansible eploy
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

64 wiersze
2.4 KiB

  1. ---
  2. matrix_backup_borg_enabled: true
  3. matrix_backup_borg_container_image_self_build: false
  4. matrix_backup_borg_docker_repo: "https://github.com/borgmatic-collective/docker-borgmatic"
  5. matrix_backup_borg_docker_src_files_path: "{{ matrix_base_data_path }}/borg/docker-src"
  6. matrix_backup_borg_version: latest
  7. matrix_backup_borg_docker_image: "{{ matrix_backup_borg_docker_image_name_prefix }}etke.cc/borgmatic:{{ matrix_backup_borg_version }}"
  8. matrix_backup_borg_docker_image_name_prefix: "{{ 'localhost/' if matrix_backup_borg_container_image_self_build else 'registry.gitlab.com/' }}"
  9. matrix_backup_borg_docker_image_force_pull: "{{ matrix_backup_borg_docker_image.endswith(':latest') }}"
  10. matrix_backup_borg_base_path: "{{ matrix_base_data_path }}/backup-borg"
  11. matrix_backup_borg_config_path: "{{ matrix_backup_borg_base_path }}/config"
  12. # A list of extra arguments to pass to the container
  13. matrix_backup_borg_container_extra_arguments: []
  14. # List of systemd services that matrix-backup-borg.service depends on
  15. matrix_backup_borg_systemd_required_services_list: ['docker.service']
  16. # List of systemd services that matrix-backup-borg.service wants
  17. matrix_backup_borg_systemd_wanted_services_list: []
  18. # systemd calendar configuration for backup job
  19. matrix_backup_borg_schedule: "*-*-* 04:00:00"
  20. # what directories should be added to backup
  21. matrix_backup_borg_location_source_directories: []
  22. # target repositories
  23. matrix_backup_borg_location_repositories: []
  24. # exclude following paths:
  25. matrix_backup_borg_location_exclude_patterns: []
  26. # borg encryption mode, only repokey-* is supported
  27. matrix_backup_borg_encryption: repokey-blake2
  28. # private ssh key used to connect to the borg repo
  29. matrix_backup_borg_ssh_key_private: ""
  30. # borg ssh command with ssh key
  31. matrix_backup_borg_storage_ssh_command: ssh -o "StrictHostKeyChecking accept-new" -i /etc/borgmatic.d/sshkey
  32. # compression algorithm
  33. matrix_backup_borg_storage_compression: lz4
  34. # archive name format
  35. matrix_backup_borg_storage_archive_name_format: "matrix-{now:%Y-%m-%d-%H%M%S}"
  36. # repository passphrase
  37. matrix_backup_borg_storage_encryption_passphrase: ""
  38. # retention configuration
  39. matrix_backup_borg_retention_keep_hourly: 0
  40. matrix_backup_borg_retention_keep_daily: 7
  41. matrix_backup_borg_retention_keep_weekly: 4
  42. matrix_backup_borg_retention_keep_monthly: 12
  43. matrix_backup_borg_retention_keep_yearly: 2
  44. # retention prefix
  45. matrix_backup_borg_retention_prefix: "matrix-"