8d2a572ead
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
26 lines
783 B
YAML
26 lines
783 B
YAML
---
|
|
|
|
- name: enable and start CRI-O
|
|
systemd:
|
|
name: crio
|
|
state: started
|
|
enabled: yes
|
|
daemon_reload: yes
|
|
|
|
- name: disable SELinux
|
|
command: setenforce 0
|
|
|
|
- name: Flush the iptables
|
|
command: iptables -F
|
|
|
|
- name: run node-e2e tests
|
|
shell: |
|
|
# parametrize crio socket
|
|
# cgroup-driver???
|
|
# TODO(runcom): remove conformance focus, we want everything for testgrid
|
|
make test-e2e-node PARALLELISM=1 RUNTIME=remote CONTAINER_RUNTIME_ENDPOINT=/var/run/crio.sock IMAGE_SERVICE_ENDPOINT=/var/run/crio/crio.sock TEST_ARGS='--prepull-images=true --kubelet-flags="--cgroup-driver=systemd"' FOCUS="\[Conformance\]" &> {{ artifacts }}/node-e2e.log
|
|
args:
|
|
chdir: "{{ ansible_env.GOPATH }}/src/k8s.io/kubernetes"
|
|
async: 7200
|
|
poll: 10
|
|
ignore_errors: true
|