Install Snap with Ansible

I am automating Canonical Kubernetes installation using Ansible. The installation process requires snap in order to be present on the host.

Is there a standard way to install batch packages using Ansible?

+4
source share
1 answer

There is still no binding module. You can install snap packages using the module command.

- name: install heroku cli via snap
  command: snap install heroku --classic
+1
source

Source: https://habr.com/ru/post/1689307/


All Articles