*: initial wire in of crictl from cri-tools

Signed-off-by: Antonio Murdaca <runcom@redhat.com>
This commit is contained in:
Antonio Murdaca 2017-08-22 16:00:21 +02:00
parent 8088d7a1e2
commit 49bdd59406
No known key found for this signature in database
GPG key ID: B2BEAD150DE936B9
3 changed files with 58 additions and 27 deletions

View file

@ -127,6 +127,12 @@
async: 600
poll: 10
when: xunit
- name: git clone crictl repo
git:
repo: https://github.com/kubernetes-incubator/cri-tools
dest: /root/src/github.com/kubernetes-incubator/cri-tools
async: 600
poll: 10
- name: git clone runc repo
git:
repo: https://github.com/opencontainers/runc
@ -193,6 +199,12 @@
chdir: /root/src/github.com/opencontainers/runc
async: 600
poll: 10
- name: make crictl
shell: |
go install github.com/kubernetes-incubator/cri-tools/cmd/crictl && \
cp $GOPATH/bin/crictl /usr/bin/crictl
args:
chdir: /root/src/github.com/kubernetes-incubator/cri-o/
- name: make runc
make:
params: BUILDTAGS="seccomp selinux"