main.yml 356 B

123456789101112131415
  1. ---
  2. - name: Ensure a job that runs daily
  3. include_tasks: "{{ k8s_or_k3s | default('k8s') }}_image_prune.yml"
  4. - name: ensure /opt/yunion/scripts path exists
  5. file:
  6. path: /opt/yunion/scripts
  7. state: directory
  8. become: true
  9. - name: enable auto backup
  10. include_role:
  11. name: utils/auto-backup-services
  12. when:
  13. - offline_data_path | length > 0