Skip to content

Commit

Permalink
1. Init work directory 2. Init dependency management by go dep
Browse files Browse the repository at this point in the history
  • Loading branch information
wnxn committed May 26, 2018
1 parent 6dcff0b commit c0790c9
Show file tree
Hide file tree
Showing 7 changed files with 74 additions and 1 deletion.
19 changes: 19 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib
*.swp

# Test binary, build with `go test -c`
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

.idea
bin/

.vscode/
tmp/
9 changes: 9 additions & 0 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 30 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Gopkg.toml example
#
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"
#
# [prune]
# non-go = false
# go-tests = true
# unused-packages = true


[prune]
go-tests = true
unused-packages = true
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,17 @@
# qingcloud-csi
# QingCloud-CSI
Kubernetes volume plugin based on CSI specification which support block storage of qingcloud

## Description
QingCloud CSI plugin implements an interface between Container Storage Interface([CSI](https://github.com/container-storage-interface/)) enabled Container Orchestrator(CO) and the storage of QingCloud. Currently, QingCloud CSI plugin is tested in Kubernetes v1.10.0+ environment and should be able to work in any CSI enabled CO.

## Configuration
TBD

## Installation
TBD

## Operation
TBD

## Support
If you have any qustions or suggestions, please submit an issue at [qingcloud-csi](https://github.com/yunify/qingcloud-csi/issues)
Empty file added cmd/block/.gitkeep
Empty file.
Empty file added deploy/.gitkeep
Empty file.
Empty file added pkg/.gitkeep
Empty file.

0 comments on commit c0790c9

Please sign in to comment.