ansible-dockerswarm
ansible-dockerswarm copied to clipboard
Handle python3-pip for Ubunt 20.04 and Update Documentation
Update Docunemtation - add example for docker_daemon_config:
Hi, I needed to modify the vars/Debian.yml for my Ubuntu servers
cat /etc/lsb-release
DISTRIB_ID=Ubuntu DISTRIB_RELEASE=20.04 DISTRIB_CODENAME=focal DISTRIB_DESCRIPTION="Ubuntu 20.04 LTS"
After that change, the swarm is installed correctly.
$ docker node ls
ID HOSTNAME STATUS AVAILABILITY MANAGER STATUS ENGINE VERSION
ri6yc1zmo3gzm2er2kgzdm8n0 swarm3 Ready Active Reachable 19.03.13
tk7dsge7egukhvcy6k7arhyf1 * swarm1 Ready Active Leader 19.03.13
s3k6hnyw75hli4fm1sii0vx77 swarm2 Ready Active Reachable 19.03.13
The usage of the ansible_python_version variable is suboptimal as it relies on the python version of the ansible manager host not on the managed remote host.
The usage of the
ansible_python_versionvariable is suboptimal as it relies on the python version of the ansible manager host not on the managed remote host.
True. It'd be better to do with ansible facts. I'm making another PR.
What is the status of this PR?