Skip to content

Commit 25a66ad

Browse files
Erik Kriegkuuji
andcommitted
adds concurrency property to DeploymentConfig struct in schema
Co-authored-by: kuuji <[email protected]>
1 parent 98701cb commit 25a66ad

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

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

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -446,11 +446,12 @@ type BuildOptions struct {
446446

447447
// DeploymentConfig defines the configuration how the devspace should be deployed
448448
type DeploymentConfig struct {
449-
Name string `yaml:"name" json:"name"`
450-
Namespace string `yaml:"namespace,omitempty" json:"namespace,omitempty"`
451-
Disabled bool `yaml:"disabled,omitempty" json:"disabled,omitempty"`
452-
Helm *HelmConfig `yaml:"helm,omitempty" json:"helm,omitempty"`
453-
Kubectl *KubectlConfig `yaml:"kubectl,omitempty" json:"kubectl,omitempty"`
449+
Name string `yaml:"name" json:"name"`
450+
Namespace string `yaml:"namespace,omitempty" json:"namespace,omitempty"`
451+
Disabled bool `yaml:"disabled,omitempty" json:"disabled,omitempty"`
452+
Helm *HelmConfig `yaml:"helm,omitempty" json:"helm,omitempty"`
453+
Kubectl *KubectlConfig `yaml:"kubectl,omitempty" json:"kubectl,omitempty"`
454+
Concurrency bool `yaml:"concurrency,omitempty" json:"concurrency,omitempty"`
454455
}
455456

456457
// ComponentConfig holds the component information

0 commit comments

Comments
 (0)