Skip to content
This repository has been archived by the owner on Oct 21, 2020. It is now read-only.

Add volume snapshots feature #331

Merged
merged 15 commits into from
Sep 7, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,6 @@ flycheck_*.el

.idea/
/.project

# snapshot binaries
/snapshot/_output
1 change: 1 addition & 0 deletions .golintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
snapshot
17 changes: 15 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.

clean: clean-aws/efs clean-ceph/cephfs clean-ceph/rbd clean-flex clean-gluster/block clean-gluster/glusterfs clean-iscsi/targetd clean-local-volume/provisioner clean-local-volume/bootstrapper clean-nfs-client clean-nfs
all: aws/efs ceph/cephfs ceph/rbd flex gluster/block gluster/glusterfs iscsi/targetd local-volume/provisioner local-volume/bootstrapper nfs-client nfs snapshot
.PHONY: all

clean: clean-aws/efs clean-ceph/cephfs clean-ceph/rbd clean-flex clean-gluster/block clean-gluster/glusterfs clean-iscsi/targetd clean-local-volume/provisioner clean-local-volume/bootstrapper clean-nfs-client clean-nfs clean-snapshot
.PHONY: clean

test: test-aws/efs test-local-volume/provisioner test-nfs
Expand Down Expand Up @@ -158,6 +161,16 @@ clean-openebs:
make clean
.PHONY: clean-openebs

snapshot:
cd snapshot; \
make
.PHONY: snapshot

clean-snapshot:
cd snapshot; \
make clean
.PHONY: clean-snapshot

push-cephfs-provisioner:
cd ceph/cephfs; \
make push
Expand Down Expand Up @@ -215,4 +228,4 @@ push-openebs-provisioner:

deploy-openebs-provisioner:
cd openebs; \
make deploy
make deploy
Loading