contrib: test: integration: enable more e2e kube tests
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
This commit is contained in:
parent
2fa1f3f74a
commit
7d2bde110a
3 changed files with 6 additions and 3 deletions
|
@ -47,6 +47,8 @@
|
||||||
export API_HOST={{ ansible_eth0.ipv4.address }}
|
export API_HOST={{ ansible_eth0.ipv4.address }}
|
||||||
export API_HOST_IP={{ ansible_eth0.ipv4.address }}
|
export API_HOST_IP={{ ansible_eth0.ipv4.address }}
|
||||||
export KUBE_ENABLE_CLUSTER_DNS=true
|
export KUBE_ENABLE_CLUSTER_DNS=true
|
||||||
|
export ENABLE_HOSTPATH_PROVISIONER=true
|
||||||
|
export KUBE_ENABLE_CLUSTER_DASHBOARD=true
|
||||||
./hack/local-up-cluster.sh
|
./hack/local-up-cluster.sh
|
||||||
mode: "u=rwx,g=rwx,o=x"
|
mode: "u=rwx,g=rwx,o=x"
|
||||||
|
|
||||||
|
|
|
@ -37,13 +37,14 @@
|
||||||
path: "{{ artifacts }}"
|
path: "{{ artifacts }}"
|
||||||
state: directory
|
state: directory
|
||||||
|
|
||||||
|
# TODO remove the last test skipped once https://github.com/kubernetes-incubator/cri-o/pull/1217 is merged
|
||||||
- name: Buffer the e2e testing command to workaround Ansible YAML folding "feature"
|
- name: Buffer the e2e testing command to workaround Ansible YAML folding "feature"
|
||||||
set_fact:
|
set_fact:
|
||||||
e2e_shell_cmd: >
|
e2e_shell_cmd: >
|
||||||
/usr/bin/go run hack/e2e.go
|
/usr/bin/go run hack/e2e.go
|
||||||
--test
|
--test
|
||||||
--test_args="-host=https://{{ ansible_default_ipv4.address }}:6443
|
--test_args="-host=https://{{ ansible_default_ipv4.address }}:6443
|
||||||
--ginkgo.focus=\[Conformance\]
|
--ginkgo.skip=\[Slow\]|\[Serial\]|\[Disruptive\]|\[Flaky\]|\[Feature:.+\]|PersistentVolumes|\[HPA\]|should.support.building.a.client.with.a.CSR|should.support.inline.execution.and.attach
|
||||||
--report-dir={{ artifacts }}"
|
--report-dir={{ artifacts }}"
|
||||||
&> {{ artifacts }}/e2e.log
|
&> {{ artifacts }}/e2e.log
|
||||||
# Fix vim syntax hilighting: "
|
# Fix vim syntax hilighting: "
|
||||||
|
|
|
@ -96,8 +96,8 @@
|
||||||
vars:
|
vars:
|
||||||
force_clone: True
|
force_clone: True
|
||||||
# master as of 12/11/2017
|
# master as of 12/11/2017
|
||||||
k8s_git_version: "a48f11c2257d84b0bec89864025508b0ef626b4f"
|
k8s_git_version: "master-nfs-fix"
|
||||||
k8s_github_fork: "kubernetes"
|
k8s_github_fork: "runcom"
|
||||||
crio_socket: "/var/run/crio/crio.sock"
|
crio_socket: "/var/run/crio/crio.sock"
|
||||||
- name: run k8s e2e tests
|
- name: run k8s e2e tests
|
||||||
include: e2e.yml
|
include: e2e.yml
|
||||||
|
|
Loading…
Reference in a new issue