-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Description
Apologies:
NOTE: This Ansible playbook installs tens of separate services. If you're having a problem with a specific one, it is likely that the problem is with the service itself. You may wish to report that problem at the source, upstream.
If not, but the error does seem to be with the playbook on this site.
This is just to point out that my ansible install failed with undefined variable because of line 115 of traefik install.yml:
force_source: "{{ traefik_container_image_force_pull if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
>=8 when it needs to be <=8:
force_source: "{{ traefik_container_image_force_pull if ansible_version.major > 2 or ansible_version.minor <= 8 else omit }}"
to comply with the deprecation, and now removal of traefik_container_image_force_pull from 2.12 onwards.
after that change install was faultless.