Skip to content

Commit

Permalink
feat(zfs-localpv): initial commit
Browse files Browse the repository at this point in the history
provisioning and deprovisioning of
the volumes on the node where zfs pool
has already been setup. Pool name and the volume
parameters has to be given in storage class
which will be used to provision the volume.

Signed-off-by: Pawan <[email protected]>
  • Loading branch information
pawanpraka1 committed Sep 16, 2019
1 parent 1efa5e4 commit 5229c6f
Show file tree
Hide file tree
Showing 46 changed files with 6,339 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/bin
buildscripts/zfs-driver/zfs-driver
cscope*
tags
*.swp
*.swo
41 changes: 41 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
sudo: required
dist: xenial
#group: edge
env:
services:
- docker
language: go
go:
- 1.12.5

addons:
apt:
update: true

install:
- make bootstrap
- make format
script:
- ./buildscripts/travis-build.sh
after_success:
- make deploy-images
- bash <(curl -s https://codecov.io/bash)
notifications:
email:
recipients:
- [email protected]
deploy:
provider: releases
api_key:
secure: na/NPsgDHGGRaWxRSCo5gH3TPrEutNvhEK3q2k99bbW2INe0FZ+FIPeuL9rqV8eCQi8SWJGHNFjFyMRR798RRSn8bdiK0pxJXzYvphUEH2Azzoqr65TaJHpHNTkv1WTK9OtgahT71MbmIx777U6Vd6ylyJyWja+LPhY/z66XOYQmuXR2ds7FRBlAcWg8C0KIFTLYlms5C9RKwLS2jP5C8tlJBQXMDEk7ejR1mKn3R6KQyyHICGKPGhNE+d7iMs0qhhuGIhcDwXl1olChAAITOGyWEmjc2GeUbFALo8OXdQx9qBO7saw75IzyYV/itBjE0RpuM90jKuFzKGiotSyw7Fs0KgrjHC7keuaNMqBWgKl6qoAj2a5VVEBtx8k941hRLs/VpjQ+K8wJJpjlSR8vh906b8e+HL8BKJEifF09fKBTLd0AWy9I3x6TolmRqiamvIHEkup1fZqblhhe2ZLvwuuyfl3t1FTkkon5BASgSqFdBAhR3eAD/LOtrghjaRX7wCZCzKDEaS9QLeu9UbC+bmnaOo60Gaeyp/DN5FLc4cV/vZozroesu+UEtQIrC6VDlFNYfY0V1ETKpfEQ4I8yByDHx/KjMWDyUGd8e5tm0qsD1lW1yVekh5CjQRHpzShkmKvFieeVfqVy/aGB4GrTeWSxcKiN8W0ekcgCRYut6y0=
file_glob: true
file:
- bin/zfs-driver/zfs-driver-linux_*.zip
skip_cleanup: true
overwrite: true
on:
repo: openebs/zfs-localpv
tags: true
branches:
except:
- /^*-v[0-9]/
1 change: 1 addition & 0 deletions BUILDMETA
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
unreleased
Loading

0 comments on commit 5229c6f

Please sign in to comment.