1
0
mirror of https://github.com/jcwimer/kubernetes-ansible synced 2026-05-13 07:26:18 +00:00

Initial Commit

This commit is contained in:
2018-11-14 08:43:38 -05:00
commit 1670ccf7be
23 changed files with 1161 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
---
- 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