blob: 1d3351daa060523965d2700590167fe04b072bf0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
sudo: required
env:
- CASES=_basic.sh
- CASES=_basic-subcharts.sh
- CASES=_kerberos.sh
- CASES=_single-namenode.sh
before_script:
# Required for K8s v1.10.x. See
# https://github.com/kubernetes/kubernetes/issues/61058#issuecomment-372764783
- sudo mount --make-shared / && sudo service docker restart
- USE_MINIKUBE_DRIVER_NONE=true USE_SUDO_MINIKUBE=true tests/setup.sh
script:
- tests/run.sh
after_script:
- tests/cleanup.sh
- tests/teardown.sh
|