-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
31 lines (27 loc) · 1.27 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
sudo: required
notifications:
email: false
# This moves Kubernetes specific config files.
env:
global:
- CHANGE_MINIKUBE_NONE_USER=true
- HELM_HOST="localhost:44134"
before_script:
# Download kubectl, which is a requirement for using minikube.
- curl -Lo kubectl https://storage.googleapis.com/kubernetes-release/release/v1.7.0/bin/linux/amd64/kubectl && chmod +x kubectl && sudo mv kubectl /usr/local/bin/
# Download minikube.
- curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/
- sudo minikube start --vm-driver=none
# Fix the kubectl context, as it's often stale.
- minikube update-context
# Wait for Kubernetes to be up and ready.
- JSONPATH='{range .items[*]}{@.metadata.name}:{range @.status.conditions[*]}{@.type}={@.status};{end}{end}'; until kubectl get nodes -o jsonpath="$JSONPATH" 2>&1 | grep -q "Ready=True"; do sleep 1; done
- wget https://storage.googleapis.com/kubernetes-helm/helm-v2.6.1-linux-amd64.tar.gz && tar -zxf helm-v2.6.1-linux-amd64.tar.gz && sudo mv linux-amd64/helm /usr/local/bin/
- helm init --net-host
script:
# Create example Redis deployment on Kubernetes.
- kubectl cluster-info
- sleep 30
- kubectl get pods --all-namespaces
- helm version
- make test