Skip to content

Commit 8c02add

Browse files
kuujierikkrieg
andcommitted
rename concurrency to concurrent
Co-authored-by: erikkrieg <[email protected]>
1 parent 82be7e9 commit 8c02add

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -446,12 +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"`
454-
Concurrency bool `yaml:"concurrency,omitempty" json:"concurrency,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+
Concurrent bool `yaml:"concurrent,omitempty" json:"concurrent,omitempty"`
455455
}
456456

457457
// ComponentConfig holds the component information

pkg/devspace/deploy/deploy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ func (c *controller) Deploy(options *Options, logLogger log.Logger) error {
177177
)
178178

179179
for _, deployConfig := range config.Deployments {
180-
if deployConfig.Concurrency {
180+
if deployConfig.Concurrent {
181181
concurrentDeployments = append(concurrentDeployments, deployConfig)
182182
} else {
183183
sequentialDeployments = append(sequentialDeployments, deployConfig)

0 commit comments

Comments
 (0)