mirror of
https://github.com/jcwimer/kubernetes-ansible
synced 2026-03-25 00:54:44 +00:00
14 lines
437 B
YAML
14 lines
437 B
YAML
---
|
|
- name: Install package dependencies
|
|
raw: apt-get update -qq && apt-get install -y python-simplejson python-urllib3 python-openssl python-pyasn1 python-pip ca-certificates
|
|
become: true
|
|
|
|
- name: Install pip dependencies
|
|
raw: pip install ndg-httpsclient
|
|
ignore_errors: true
|
|
become: true
|
|
|
|
- name: Install pip dependencies again because it fails sometimes
|
|
raw: pip install ndg-httpsclient
|
|
ignore_errors: true
|
|
become: true |