18 lines
866 B
YAML
18 lines
866 B
YAML
---
|
|
# Evaluate Docker images bundle
|
|
- include_tasks: "{{ onelab_path }}/installation/latest/app/playbooks/tasks/check-offline-resources.yml"
|
|
when: (policy | default('')) != "no-pull" and (onelab.docker.policy | default('')) != "no-pull"
|
|
|
|
# Update conf files
|
|
- include_tasks: "{{ onelab_path }}/installation/latest/app/playbooks/tasks/update-conf-files.yml"
|
|
|
|
# Check SSL files
|
|
- include_tasks: "{{ onelab_path }}/installation/latest/app/playbooks/tasks/check-ssl-files.yml"
|
|
|
|
# Rotate Rabbit SSL files
|
|
- include_tasks: "{{ onelab_path }}/installation/latest/app/playbooks/tasks/rotate-ssl-files-for-rabbit.yml"
|
|
|
|
# Connect to Docker and pull images, and clean up old images
|
|
- include_tasks: "{{ onelab_path }}/installation/latest/app/playbooks/tasks/manage-images.yml"
|
|
when: (policy | default('')) != "no-pull" and (onelab.docker.policy | default('')) != "no-pull"
|