about summary refs log tree commit diff
path: root/context/context.go
diff options
context:
space:
mode:
authorMartin Lehmann <martin@folio.no>2018-11-15T12·49+0100
committerVincent Ambo <github@tazj.in>2018-12-11T09·58+0100
commit54db9785d65d8a9dfc78d1cf230810b19f1abffb (patch)
treefcbfd470aaf794ca21bcd2a5ccc1a9dac66a3c12 /context/context.go
parent5f433c46c16f4466ad17578eb1762399aa7746d1 (diff)
feat(main): Support specifying kubectl args in ResourceSets
Diffstat (limited to 'context/context.go')
-rw-r--r--context/context.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/context/context.go b/context/context.go
index 49de7f4695..314fc35845 100644
--- a/context/context.go
+++ b/context/context.go
@@ -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"`