scottslowe-learning-tools/containerd-runc/provision.yml
Scott S. Lowe 6e384709e7 Made final adjustments to containerd-runc environment
Make final changes to Vagrantfile to use Ansible. Add Ansible playbook. Remove unneeded shell script for provisioning.

Signed-off-by: Scott S. Lowe <scott.lowe@scottlowe.org>
2016-12-10 21:27:07 -07:00

18 lines
565 B
YAML

---
- hosts: "all"
become: "yes"
remote_user: "vagrant"
tasks:
- name: "Download containerd/runc binaries"
get_url:
url: "{{ item }}"
dest: "/usr/local/bin/"
mode: "0755"
with_items:
- "https://github.com/docker/containerd/releases/download/0.0.5/containerd-shim"
- "https://github.com/docker/containerd/releases/download/0.0.5/ctr"
- "https://github.com/docker/containerd/releases/download/0.0.5/containerd"
- "https://github.com/docker/containerd/releases/download/0.0.5/runc"
tags:
- packages