-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #107 from codefresh-io/dind-storage
Dind storage
- Loading branch information
Showing
20 changed files
with
958 additions
and
177 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
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 +1 @@ | ||
0.30.5 | ||
0.31.0 |
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,44 +1,29 @@ | ||
module github.com/codefresh-io/venona/venonactl | ||
|
||
go 1.13 | ||
|
||
require ( | ||
contrib.go.opencensus.io/exporter/ocagent v0.4.3 // indirect | ||
github.com/Azure/go-autorest v11.4.0+incompatible // indirect | ||
github.com/Masterminds/goutils v1.1.0 // indirect | ||
github.com/Azure/go-autorest/autorest v0.10.0 // indirect | ||
github.com/Masterminds/semver v1.5.0 // indirect | ||
github.com/Masterminds/sprig v2.22.0+incompatible | ||
github.com/codefresh-io/go-sdk v0.17.0 | ||
github.com/codefresh-io/go-sdk v0.18.0 | ||
github.com/dustin/go-humanize v1.0.0 | ||
github.com/google/go-github/v21 v21.0.0 | ||
github.com/google/gofuzz v0.0.0-20161122191042-44d81051d367 // indirect | ||
github.com/google/uuid v1.1.1 // indirect | ||
github.com/googleapis/gnostic v0.0.0-20170729233727-0c5108395e2d // indirect | ||
github.com/gophercloud/gophercloud v0.0.0-20190206021053-df38e1611dbe // indirect | ||
github.com/gregjones/httpcache v0.0.0-20170728041850-787624de3eb7 // indirect | ||
github.com/hashicorp/go-version v1.1.0 | ||
github.com/google/go-github/v21 v21.0.1 | ||
github.com/gophercloud/gophercloud v0.8.0 // indirect | ||
github.com/hashicorp/go-version v1.2.0 | ||
github.com/huandu/xstrings v1.3.0 // indirect | ||
github.com/imdario/mergo v0.3.5 // indirect | ||
github.com/inconshreveable/log15 v0.0.0-20180818164646-67afb5ed74ec | ||
github.com/json-iterator/go v0.0.0-20180701071628-ab8a2e0c74be // indirect | ||
github.com/mattn/go-colorable v0.1.0 // indirect | ||
github.com/mattn/go-isatty v0.0.4 // indirect | ||
github.com/mitchellh/copystructure v1.0.0 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.1 // indirect | ||
github.com/imdario/mergo v0.3.8 // indirect | ||
github.com/inconshreveable/log15 v0.0.0-20200109203555-b30bc20e4fd1 | ||
github.com/mattn/go-colorable v0.1.6 // indirect | ||
github.com/olekukonko/tablewriter v0.0.4 | ||
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect | ||
github.com/spf13/cobra v0.0.5 | ||
github.com/spf13/viper v1.6.1 | ||
go.opencensus.io v0.19.0 // indirect | ||
google.golang.org/appengine v1.4.0 // indirect | ||
gopkg.in/inf.v0 v0.9.0 // indirect | ||
gopkg.in/yaml.v2 v2.2.7 | ||
k8s.io/api v0.0.0-20181221193117-173ce66c1e39 | ||
k8s.io/apimachinery v0.0.0-20181127025237-2b1284ed4c93 | ||
k8s.io/client-go v10.0.0+incompatible | ||
k8s.io/klog v0.0.0-20181108234604-8139d8cb77af // indirect | ||
sigs.k8s.io/yaml v1.1.0 // indirect | ||
github.com/spf13/cobra v0.0.6 | ||
github.com/spf13/viper v1.6.2 | ||
gopkg.in/yaml.v2 v2.2.8 | ||
helm.sh/helm/v3 v3.1.1 | ||
k8s.io/api v0.17.3 | ||
k8s.io/apimachinery v0.17.3 | ||
k8s.io/client-go v0.17.3 | ||
k8s.io/utils v0.0.0-20200229041039-0a110f9eb7ab // indirect | ||
) | ||
|
||
replace git.apache.org/thrift.git => github.com/apache/thrift v0.0.0-20181218151757-9b75e4fe745a | ||
|
||
go 1.13 | ||
replace github.com/Azure/go-autorest => github.com/Azure/go-autorest v13.3.2+incompatible |
Oops, something went wrong.