summaryrefslogtreecommitdiffstats
path: root/src/k8splugin/go.mod
diff options
context:
space:
mode:
authorKiran Kamineni <kiran.k.kamineni@intel.com>2019-01-08 15:50:12 -0800
committerKiran Kamineni <kiran.k.kamineni@intel.com>2019-03-12 15:24:15 -0700
commit909d0d1c9a6f95dd1714b26477238d8997b3e20e (patch)
tree86c72e5518a913a6230233c1aa6de51d4f5137da /src/k8splugin/go.mod
parent98e83cc404987387466721aedca3fc6c97cab40b (diff)
Add support for helm templates
Add support for evaluating helm templates The interface provides a way to get a map which contains a mapping from kubernetes kind to the corresponding yaml file that defines a resource of that kind. This map is then provided to the instantiation code at instantiation time to create in the kubernetes cluster. P5: Use filepath.join instead of strings.join P9: rebase with new folder structure P10: moved the helm code into its own package. P12: Add unit tests update the go.mod to use latest docker version Issue-ID: MULTICLOUD-291 Change-Id: Ie75f5c616cc0cdc3e0ace49ff2c2f6c356a4c0d1 Signed-off-by: Kiran Kamineni <kiran.k.kamineni@intel.com>
Diffstat (limited to 'src/k8splugin/go.mod')
-rw-r--r--src/k8splugin/go.mod61
1 files changed, 48 insertions, 13 deletions
diff --git a/src/k8splugin/go.mod b/src/k8splugin/go.mod
index 1e7115dc..606eb4da 100644
--- a/src/k8splugin/go.mod
+++ b/src/k8splugin/go.mod
@@ -1,55 +1,90 @@
module k8splugin
require (
- github.com/davecgh/go-spew v1.1.1 // indirect
+ github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect
+ github.com/BurntSushi/toml v0.3.1 // indirect
+ github.com/MakeNowJust/heredoc v0.0.0-20171113091838-e9091a26100e // indirect
+ github.com/Masterminds/semver v1.4.2 // indirect
+ github.com/Masterminds/sprig v2.17.1+incompatible // indirect
+ github.com/aokoli/goutils v1.1.0 // indirect
+ github.com/chai2010/gettext-go v0.0.0-20170215093142-bf70f2a70fb1 // indirect
+ github.com/cyphar/filepath-securejoin v0.2.2 // indirect
+ github.com/docker/distribution v2.7.0+incompatible // indirect
+ github.com/docker/docker v0.7.3-0.20190312165151-258edd715d46 // indirect
+ github.com/docker/go-connections v0.4.0 // indirect
+ github.com/docker/go-units v0.3.3 // indirect
+ github.com/docker/spdystream v0.0.0-20181023171402-6480d4af844c // indirect
+ github.com/emicklei/go-restful v2.8.0+incompatible // indirect
+ github.com/evanphx/json-patch v4.1.0+incompatible // indirect
+ github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d // indirect
+ github.com/fatih/camelcase v1.0.0 // indirect
github.com/ghodss/yaml v1.0.0
+ github.com/go-openapi/spec v0.18.0 // indirect
github.com/go-stack/stack v1.8.0 // indirect
+ github.com/gobwas/glob v0.2.3 // indirect
github.com/gogo/protobuf v1.0.0 // indirect
- github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
- github.com/golang/protobuf v1.2.0 // indirect
+ github.com/golang/groupcache v0.0.0-20181024230925-c65c006176ff // indirect
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db // indirect
github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c // indirect
github.com/google/go-cmp v0.2.0 // indirect
github.com/google/gofuzz v0.0.0-20170612174753-24818f796faf // indirect
+ github.com/google/uuid v1.1.0 // indirect
github.com/googleapis/gnostic v0.2.0 // indirect
github.com/gorilla/context v1.1.1 // indirect
github.com/gorilla/handlers v1.3.0
github.com/gorilla/mux v1.6.2
github.com/gregjones/httpcache v0.0.0-20181110185634-c63ab54fda8f // indirect
+ github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
github.com/hashicorp/consul v1.4.0
github.com/hashicorp/go-cleanhttp v0.5.0 // indirect
github.com/hashicorp/go-rootcerts v0.0.0-20160503143440-6bb64b370b90 // indirect
github.com/hashicorp/go-uuid v1.0.0
+ github.com/hashicorp/golang-lru v0.5.0 // indirect
github.com/hashicorp/serf v0.8.1 // indirect
github.com/howeyc/gopass v0.0.0-20170109162249-bf9dde6d0d2c // indirect
+ github.com/huandu/xstrings v1.2.0 // indirect
github.com/imdario/mergo v0.3.5 // indirect
+ github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/json-iterator/go v1.1.5 // indirect
+ github.com/mitchellh/go-homedir v1.1.0 // indirect
+ github.com/mitchellh/go-wordwrap v1.0.0 // indirect
github.com/mitchellh/mapstructure v1.1.2 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v0.0.0-20180228065516-1df9eeb2bb81 // indirect
github.com/mongodb/mongo-go-driver v0.2.0
+ github.com/opencontainers/go-digest v1.0.0-rc1 // indirect
+ github.com/opencontainers/image-spec v1.0.1 // indirect
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
github.com/pkg/errors v0.8.0
- github.com/pmezard/go-difflib v1.0.0 // indirect
+ github.com/prometheus/client_golang v0.9.2 // indirect
+ github.com/russross/blackfriday v1.5.2 // indirect
+ github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
+ github.com/sirupsen/logrus v1.4.0 // indirect
+ github.com/spf13/cobra v0.0.3 // indirect
github.com/spf13/pflag v1.0.1 // indirect
- github.com/stretchr/testify v1.2.2 // indirect
+ github.com/technosophos/moniker v0.0.0-20180509230615-a5dbd03a2245 // indirect
github.com/tidwall/pretty v0.0.0-20180105212114-65a9db5fad51 // indirect
github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c // indirect
github.com/xdg/stringprep v1.0.0 // indirect
- golang.org/x/crypto v0.0.0-20180608092829-8ac0e0d97ce4 // indirect
- golang.org/x/net v0.0.0-20180724234803-3673e40ba225
+ golang.org/x/net v0.0.0-20181201002055-351d144fa1fc
golang.org/x/oauth2 v0.0.0-20181203162652-d668ce993890 // indirect
- golang.org/x/sync v0.0.0-20181108010431-42b317875d0f // indirect
- golang.org/x/sys v0.0.0-20180611080425-bff228c7b664 // indirect
- golang.org/x/text v0.3.0 // indirect
golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2 // indirect
+ google.golang.org/grpc v1.17.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
+ gopkg.in/square/go-jose.v2 v2.2.2 // indirect
gopkg.in/yaml.v2 v2.2.1
- k8s.io/api v0.0.0-20181130031204-d04500c8c3dd
- k8s.io/apimachinery v0.0.0-20181215012845-4d029f033399
+ k8s.io/api v0.0.0-20181126151915-b503174bad59
+ k8s.io/apiextensions-apiserver v0.0.0-20181126155829-0cd23ebeb688 // indirect
+ k8s.io/apimachinery v0.0.0-20181126123746-eddba98df674
+ k8s.io/apiserver v0.0.0-20181126153457-92fdef3a232a // indirect
+ k8s.io/cli-runtime v0.0.0-20190107235426-31214e12222d // indirect
k8s.io/client-go v2.0.0-alpha.0.0.20181126152608-d082d5923d3c+incompatible
+ k8s.io/helm v2.12.2+incompatible
k8s.io/klog v0.1.0 // indirect
k8s.io/kube-openapi v0.0.0-20181114233023-0317810137be // indirect
- k8s.io/utils v0.0.0-20181102055113-1bd4f387aa67
+ k8s.io/kubernetes v1.12.3 // indirect
+ k8s.io/utils v0.0.0-20181221173059-8a16e7dd8fb6
+ sigs.k8s.io/kustomize v1.0.11 // indirect
sigs.k8s.io/yaml v1.1.0 // indirect
+ vbom.ml/util v0.0.0-20180919145318-efcd4e0f9787 // indirect
)