forked from fluxcd/helm-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
833 changed files
with
240,237 additions
and
9,926 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
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,19 @@ | ||
{ | ||
"linters": { | ||
"disable-all": true, | ||
"enable": [ | ||
"govet", | ||
"golint", | ||
"goimports", | ||
"misspell", | ||
"ineffassign", | ||
"gofmt" | ||
] | ||
}, | ||
"run": { | ||
"skip-files": [ | ||
"/zz_generated_" | ||
], | ||
"deadline": "5m" | ||
} | ||
} |
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 was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
module github.com/rancher/helm-controller | ||
module github.com/k3s-io/helm-controller | ||
|
||
go 1.12 | ||
go 1.13 | ||
|
||
require ( | ||
github.com/rancher/wrangler v0.4.0 | ||
github.com/rancher/wrangler-api v0.4.0 | ||
github.com/onsi/ginkgo v1.11.0 | ||
github.com/onsi/gomega v1.7.0 | ||
github.com/rancher/wrangler v0.6.1 | ||
github.com/rancher/wrangler-api v0.6.0 | ||
github.com/sirupsen/logrus v1.4.2 | ||
github.com/stretchr/testify v1.4.0 | ||
github.com/urfave/cli v1.22.2 | ||
k8s.io/api v0.17.0 | ||
k8s.io/apimachinery v0.17.0 | ||
k8s.io/client-go v0.17.0 | ||
k8s.io/api v0.18.0 | ||
k8s.io/apimachinery v0.18.0 | ||
k8s.io/client-go v0.18.0 | ||
k8s.io/klog v1.0.0 | ||
) |
Oops, something went wrong.