aboutsummaryrefslogtreecommitdiff
path: root/terraform/ansible/Makefile
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2019-07-23 13:17:56 +0200
committerTrygve Laugstøl <trygvis@inamo.no>2019-07-23 13:17:56 +0200
commit67f5d1008eef96f13dbf8910092155b7aa1bcee4 (patch)
tree00901863a6ab5c24c3e5616a9d4308499810c568 /terraform/ansible/Makefile
parentba76764c198e9232b3152568008d5aa5199a1fd0 (diff)
downloadk8s-sandbox-67f5d1008eef96f13dbf8910092155b7aa1bcee4.tar.gz
k8s-sandbox-67f5d1008eef96f13dbf8910092155b7aa1bcee4.tar.bz2
k8s-sandbox-67f5d1008eef96f13dbf8910092155b7aa1bcee4.tar.xz
k8s-sandbox-67f5d1008eef96f13dbf8910092155b7aa1bcee4.zip
o Merging in Terraform setup.
Diffstat (limited to 'terraform/ansible/Makefile')
-rw-r--r--terraform/ansible/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/terraform/ansible/Makefile b/terraform/ansible/Makefile
new file mode 100644
index 0000000..99574dc
--- /dev/null
+++ b/terraform/ansible/Makefile
@@ -0,0 +1,9 @@
+all: pip-install
+
+env:
+ virtualenv -p python3 env
+
+pip-install: env/.pip-install.cookie
+env/.pip-install.cookie: requirements.txt | env
+ env/bin/pip install -r $<
+ @touch "$@"