c12s-kubespray/roles/bootstrap-os/tasks/bootstrap-opensuse.yml

11 lines
254 B
YAML
Raw Permalink Normal View History

---
# OpenSUSE ships with Python installed
# Without this package, the get_url module fails when trying to handle https
- name: Install python-cryptography
zypper:
name: python-cryptography
state: present
update_cache: true
become: true