Merge pull request #1298 from giuseppe/e2e-not-runc

e2e: allow to use runc from the system
This commit is contained in:
Mrunal Patel 2018-02-03 18:04:23 -08:00 committed by GitHub
commit 8e14be6441
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -18,4 +18,4 @@ The playbooks assume the following things about your system:
- `ansible` is installed and the host is boot-strapped to allow `ansible` to run against it
- the `$GOPATH` is set and present for all shells (*e.g.* written in `/etc/environment`)
- CRI-O is checked out to the correct state at `${GOPATH}/src/github.com/kubernetes-incubator/cri-o`
- the user running the playbook has access to passwordless `sudo`
- the user running the playbook has access to passwordless `sudo`

View file

@ -30,6 +30,7 @@
- name: clone build and install runc
include: "build/runc.yml"
when: "{{ not use_system_runc | default(True) | bool}}"
- name: clone build and install networking plugins
include: "build/plugins.yml"