Skip to content

Commit 8dd3290

Browse files
committed
fix: Make disableDependencyUpdate optional in schema.go
Signed-off-by: Lukas Jost <lukas.jost@outlook.com>
1 parent 5731c11 commit 8dd3290

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

docs/schemas/config-openapi.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -759,9 +759,6 @@
759759
}
760760
},
761761
"type": "object",
762-
"required": [
763-
"disableDependencyUpdate"
764-
],
765762
"description": "HelmConfig defines the specific helm options used during deployment"
766763
},
767764
"Image": {

pkg/devspace/config/versions/latest/schema.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -845,7 +845,7 @@ type HelmConfig struct {
845845
TemplateArgs []string `yaml:"templateArgs,omitempty" json:"templateArgs,omitempty"`
846846

847847
// DisableDependencyUpdate disables helm dependencies update, default to false
848-
DisableDependencyUpdate *bool `yaml:"disableDependencyUpdate" json:"disableDependencyUpdate"`
848+
DisableDependencyUpdate *bool `yaml:"disableDependencyUpdate,omitempty" json:"disableDependencyUpdate,omitempty"`
849849
}
850850

851851
// ChartConfig defines the helm chart options

0 commit comments

Comments
 (0)