matrix-docker-ansible-deploy icon indicating copy to clipboard operation
matrix-docker-ansible-deploy copied to clipboard

traefik install.yml typo

Open sj64 opened this issue 4 months ago • 0 comments

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.

sj64 avatar Jul 13 '25 04:07 sj64