Merge pull request #52 from Liujingfang1/master

variable reference support
This commit is contained in:
Jeff Regan
2018-06-06 16:43:48 -07:00
committed by GitHub
12 changed files with 957 additions and 8 deletions

View File

@@ -62,6 +62,9 @@ type Kustomization struct {
// If a secret want to have a base and an overlay, it should go to Bases and
// Overlays fields.
SecretGenerator []SecretArgs `json:"secretGenerator,omitempty" yaml:"secretGenerator,omitempty"`
// Variables which will be substituted at runtime
Vars []Var `json:"vars,omitempty" yaml:"vars,omitempty"`
}
// ConfigMapArg contains the metadata of how to generate a configmap.