diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2019-07-23 13:17:56 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2019-07-23 13:17:56 +0200 |
commit | 67f5d1008eef96f13dbf8910092155b7aa1bcee4 (patch) | |
tree | 00901863a6ab5c24c3e5616a9d4308499810c568 /terraform/ansible/Makefile | |
parent | ba76764c198e9232b3152568008d5aa5199a1fd0 (diff) | |
download | k8s-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/Makefile | 9 |
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 "$@" |