-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- sind now only relies on the docker host and no longer on a config file - sind can now start and stop the clusters, avoiding to recreate them. - IP of containers are now fixed, to enable start and stop - sind inspect enables to inspect the current state of a cluster - sind push gets a new --file option enabling to push an already existing file generated by docker save - sind ls output is updated and displays node stats
- Loading branch information
Showing
48 changed files
with
3,464 additions
and
1,161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
linters-settings: | ||
govet: | ||
check-shadowing: false | ||
golint: | ||
min-confidence: 0 | ||
gocyclo: | ||
min-complexity: 10 | ||
maligned: | ||
suggest-new: true | ||
goconst: | ||
min-len: 3 | ||
min-occurrences: 3 | ||
misspell: | ||
locale: US | ||
lll: | ||
line-length: 180 | ||
|
||
linters: | ||
enable-all: true | ||
disable: | ||
- gosec | ||
- dupl | ||
- unparam | ||
- maligned | ||
- prealloc | ||
- scopelint | ||
- gochecknoinits | ||
- gochecknoglobals | ||
|
||
issues: | ||
exclude-rules: | ||
- path: _test\.go | ||
linters: | ||
- lll | ||
exclude: | ||
- "cyclomatic complexity \\d+ of func `CreateCluster` is high" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.