Skip to content

Commit

Permalink
Add Backend e2e Test (#975)
Browse files Browse the repository at this point in the history
Task :
- [x] GCS Bucket
- [x] Azure Container
- [x] AWS S3 Bucket
- [x] Rest Server
- [x] Swift
- [x] B2
- [x] Local
   - [x] for PVC
   - [x] for nfs
  - [x] for hostPath
  • Loading branch information
suaas21 authored and tamalsaha committed Dec 24, 2019
1 parent 4283b84 commit f28abce
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,16 @@ jobs:
echo
echo "create docker-registry secret"
kubectl create secret docker-registry ${REGISTRY_SECRET} --namespace=kube-system --docker-server=https://index.docker.io/v1/ --docker-username=${USERNAME} --docker-password=${DOCKER_TOKEN}
- name: Install NFS server dependencies
run: |
export KUBECONFIG="$(kind get kubeconfig-path)"
nodes=$(kubectl get nodes -o=jsonpath='{range .items[*]}{.metadata.name}{"\t"}{end}')
for i in $nodes
do
echo "Installing NFS server dependencies in node: $i ...."
docker exec $i apt-get update
docker exec $i apt-get install -y nfs-kernel-server
done
- name: Check out installer
run: |
cd ..
Expand Down

0 comments on commit f28abce

Please sign in to comment.