1
0
mirror of https://github.com/rancher/types.git synced 2025-08-31 21:00:16 +00:00

update generate

This commit is contained in:
Guangbo Chen
2019-02-15 10:10:42 +08:00
committed by Craig Jellick
parent e3530b8b33
commit f6af1070bc

View File

@@ -6,6 +6,7 @@ const (
AppUpgradeConfigFieldExternalID = "externalId"
AppUpgradeConfigFieldFiles = "files"
AppUpgradeConfigFieldForceUpgrade = "forceUpgrade"
AppUpgradeConfigFieldValuesYaml = "valuesYaml"
)
type AppUpgradeConfig struct {
@@ -13,4 +14,5 @@ type AppUpgradeConfig struct {
ExternalID string `json:"externalId,omitempty" yaml:"externalId,omitempty"`
Files map[string]string `json:"files,omitempty" yaml:"files,omitempty"`
ForceUpgrade bool `json:"forceUpgrade,omitempty" yaml:"forceUpgrade,omitempty"`
ValuesYaml string `json:"valuesYaml,omitempty" yaml:"valuesYaml,omitempty"`
}