feat(main): Support specifying kubectl args in ResourceSets

This commit is contained in:
Martin Lehmann 2018-11-15 13:49:23 +01:00 committed by Vincent Ambo
parent 5f433c46c1
commit 54db9785d6
6 changed files with 61 additions and 2 deletions

View file

@ -28,6 +28,9 @@ type ResourceSet struct {
// Values to include when interpolating resources from this resource set.
Values map[string]interface{} `json:"values"`
// Args to pass on to kubectl for this resource set.
Args []string `json:"args"`
// Nested resource sets to include
Include []ResourceSet `json:"include"`