Skip to content
This repository has been archived by the owner on Dec 12, 2023. It is now read-only.

Commit

Permalink
Use ValuesYaml field as alternative to Answers in Apps [#32] (#34)
Browse files Browse the repository at this point in the history
Use ValuesYaml field as alternative to Answers in Apps [#32]
  • Loading branch information
wtschreiter committed Jun 7, 2019
1 parent 24c80bd commit d96a1e7
Show file tree
Hide file tree
Showing 359 changed files with 34,852 additions and 18,814 deletions.
17 changes: 9 additions & 8 deletions docs/project_descriptor.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,14 +122,15 @@ ProjectDescriptor Structur:

#### apps

| Field | Description |
|---------------|-------------------------------------------------------|
| __name__ | The name of the app/deployment |
| __catalog__ | The catalog to find the rancher chart in |
| __template__ | The name of the rancher chart to be used |
| __version__ | The version of the rancher chart |
| __namespace__ | The namespace to deploy the app in |
| __answers__ | The answers to the rancher questions as key-value map |
| Field | Description |
|----------------|-------------------------------------------------------|
| __name__ | The name of the app/deployment |
| __catalog__ | The catalog to find the rancher chart in |
| __template__ | The name of the rancher chart to be used |
| __version__ | The version of the rancher chart |
| __namespace__ | The namespace to deploy the app in |
| __answers__ | The answers to the rancher questions as key-value map |
| __valuesYaml__ | The values to apply with the template |

Example:
--------
Expand Down
86 changes: 64 additions & 22 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,37 +1,79 @@
module github.com/bitgrip/cattlectl

require (
cloud.google.com/go v0.39.0 // indirect
github.com/766b/go-outliner v0.0.0-20180511142203-fc6edecdadd7 // indirect
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/cpuguy83/go-md2man v1.0.9-0.20180619205630-691ee98543af // indirect
github.com/ghodss/yaml v1.0.0 // indirect
github.com/gogo/protobuf v1.2.0 // indirect
github.com/google/gofuzz v0.0.0-20170612174753-24818f796faf // indirect
github.com/gorilla/websocket v1.4.0 // indirect
github.com/NYTimes/gziphandler v1.1.1 // indirect
github.com/OneOfOne/xxhash v1.2.5 // indirect
github.com/PuerkitoBio/purell v1.1.1 // indirect
github.com/coreos/etcd v3.3.13+incompatible // indirect
github.com/coreos/go-semver v0.3.0 // indirect
github.com/dgryski/go-sip13 v0.0.0-20190329191031-25c5027a8c7b // indirect
github.com/docker/spdystream v0.0.0-20181023171402-6480d4af844c // indirect
github.com/elazarl/goproxy v0.0.0-20190421051319-9d40249d3c2f // indirect
github.com/emicklei/go-restful v2.9.6+incompatible // indirect
github.com/evanphx/json-patch v4.2.0+incompatible // indirect
github.com/go-openapi/jsonpointer v0.19.0 // indirect
github.com/go-openapi/jsonreference v0.19.0 // indirect
github.com/go-openapi/spec v0.19.0 // indirect
github.com/go-openapi/swag v0.19.0 // indirect
github.com/golang/mock v1.3.1 // indirect
github.com/google/gofuzz v1.0.0 // indirect
github.com/google/pprof v0.0.0-20190515194954-54271f7e092f // indirect
github.com/google/uuid v1.1.1 // indirect
github.com/googleapis/gnostic v0.2.0 // indirect
github.com/hhatto/gocloc v0.2.1 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/jessevdk/go-flags v1.4.0 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/json-iterator/go v1.1.6 // indirect
github.com/kisielk/errcheck v1.2.0 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/kr/pty v1.1.4 // indirect
github.com/magiconair/properties v1.8.1 // indirect
github.com/mailru/easyjson v0.0.0-20190403194419-1ea4449da983 // indirect
github.com/mitchellh/go-homedir v1.1.0
github.com/munnerz/goautoneg v0.0.0-20190414153302-2ae31c8b6b30 // indirect
github.com/onsi/ginkgo v1.8.0 // indirect
github.com/onsi/gomega v1.5.0 // indirect
github.com/pelletier/go-toml v1.4.0 // indirect
github.com/pkg/errors v0.8.1 // indirect
github.com/rancher/norman v0.0.0-20190129215722-196df5ed9da3
github.com/rancher/types v0.0.0-20190129233033-68de51b62acf
github.com/russross/blackfriday v2.0.0+incompatible // indirect
github.com/prometheus/common v0.4.1 // indirect
github.com/prometheus/procfs v0.0.2 // indirect
github.com/prometheus/tsdb v0.8.0 // indirect
github.com/rancher/norman v0.0.0-20190529014815-f5744043a6fb
github.com/rancher/types v0.0.0-20190605225901-9125ab265f1b
github.com/rogpeppe/fastuuid v1.1.0 // indirect
github.com/russross/blackfriday/v2 v2.0.1 // indirect
github.com/sergi/go-diff v1.0.0
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
github.com/sirupsen/logrus v1.3.0
github.com/spf13/afero v1.2.1
github.com/spf13/cobra v0.0.3
github.com/spf13/viper v1.3.1
github.com/stretchr/testify v1.3.0 // indirect
github.com/sirupsen/logrus v1.4.2
github.com/spaolacci/murmur3 v1.1.0 // indirect
github.com/spf13/afero v1.2.2
github.com/spf13/cobra v0.0.4
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/viper v1.4.0
github.com/stretchr/objx v0.2.0 // indirect
github.com/toqueteos/trie v1.0.0 // indirect
golang.org/x/crypto v0.0.0-20190130090550-b01c7a725664 // indirect
golang.org/x/sys v0.0.0-20190129075346-302c3dd5f1cc // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
github.com/ugorji/go v1.1.5-pre // indirect
go.opencensus.io v0.22.0 // indirect
golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5 // indirect
golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522 // indirect
golang.org/x/image v0.0.0-20190523035834-f03afa92d3ff // indirect
golang.org/x/lint v0.0.0-20190409202823-959b441ac422 // indirect
golang.org/x/mobile v0.0.0-20190509164839-32b2708ab171 // indirect
golang.org/x/mod v0.1.0 // indirect
golang.org/x/net v0.0.0-20190603091049-60506f45cf65 // indirect
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45 // indirect
golang.org/x/sys v0.0.0-20190606122018-79a91cf218c4 // indirect
golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b // indirect
google.golang.org/appengine v1.6.0 // indirect
google.golang.org/genproto v0.0.0-20190605220351-eb0b1bdb6ae6 // indirect
google.golang.org/grpc v1.21.1 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/src-d/enry.v1 v1.7.3 // indirect
gopkg.in/toqueteos/substring.v1 v1.0.2 // indirect
gopkg.in/yaml.v2 v2.2.2
k8s.io/apimachinery v0.0.0-20190126155707-0e6dcdd1b5ce
k8s.io/klog v0.1.0 // indirect
sigs.k8s.io/yaml v1.1.0 // indirect
honnef.co/go/tools v0.0.0-20190605142022-0a11fc526260 // indirect
k8s.io/apimachinery v0.0.0-20190602183612-63a6072eb563
k8s.io/gengo v0.0.0-20190327210449-e17681d19d3a // indirect
k8s.io/kube-openapi v0.0.0-20190603182131-db7b694dc208 // indirect
)
Loading

0 comments on commit d96a1e7

Please sign in to comment.