Skip to content

Commit 87c09b7

Browse files
author
Harsh Desai
authored
Add crd and generated code (#1)
* vendor update Signed-off-by: Harsh Desai <harsh@portworx.com> * Add CRD and generated code Signed-off-by: Harsh Desai <harsh@portworx.com> * makefile Signed-off-by: Harsh Desai <harsh@portworx.com> * misc repo init files Signed-off-by: Harsh Desai <harsh@portworx.com> * fix travis rule Signed-off-by: Harsh Desai <harsh@portworx.com> * fix link in readme Signed-off-by: Harsh Desai <harsh@portworx.com>
1 parent c6eeb8c commit 87c09b7

File tree

1,610 files changed

+862029
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,610 files changed

+862029
-2
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Binaries for programs and plugins
2+
bin/
23
*.exe
34
*.exe~
45
*.dll
@@ -10,3 +11,7 @@
1011

1112
# Output of the go coverage tool, specifically when used with LiteIDE
1213
*.out
14+
out/
15+
var/
16+
17+
coverage.txt

.travis.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
sudo: required
2+
services:
3+
- docker
4+
dist: xenial
5+
language: go
6+
go:
7+
- 1.12.5
8+
before_install:
9+
- sudo apt-get update -yq
10+
script:
11+
- |
12+
make && make pretest
13+
notifications:
14+
email:
15+
on_success: always
16+
on_failure: always

0 commit comments

Comments
 (0)