Skip to content

Commit 86cfbe9

Browse files
committed
refactor: refactor pod replace & improvements
1 parent 6ad58df commit 86cfbe9

59 files changed

Lines changed: 3768 additions & 1190 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

cmd/build_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ package cmd
1313
cloudlatest "github.com/loft-sh/devspace/pkg/devspace/cloud/config/versions/latest"
1414
"github.com/loft-sh/devspace/pkg/devspace/config/loader"
1515
"github.com/loft-sh/devspace/pkg/devspace/config/constants"
16-
"github.com/loft-sh/devspace/pkg/devspace/config/generated"
16+
"github.com/loft-sh/devspace/pkg/devspace/config/localcache"
1717
"github.com/loft-sh/devspace/pkg/devspace/config/versions/latest"
1818
"github.com/loft-sh/devspace/pkg/util/fsutil"
1919
"github.com/loft-sh/devspace/pkg/util/kubeconfig"

cmd/deploy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ func runPipeline(
240240
PipelineJob: latest.PipelineJob{
241241
Steps: []latest.PipelineStep{
242242
{
243-
Command: fallbackPipeline,
243+
Run: fallbackPipeline,
244244
},
245245
},
246246
},

cmd/flags/flags_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package flags
33
import (
44
"testing"
55

6-
"github.com/loft-sh/devspace/pkg/devspace/config/generated"
6+
"github.com/loft-sh/devspace/pkg/devspace/config/localcache"
77
"github.com/loft-sh/devspace/pkg/util/log"
88

99
"gotest.tools/assert"

cmd/init_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
cloudlatest "github.com/loft-sh/devspace/pkg/devspace/cloud/config/versions/latest"
2020
"github.com/loft-sh/devspace/pkg/devspace/config/loader"
2121
"github.com/loft-sh/devspace/pkg/devspace/config/constants"
22-
"github.com/loft-sh/devspace/pkg/devspace/config/generated"
22+
"github.com/loft-sh/devspace/pkg/devspace/config/localcache"
2323
"github.com/loft-sh/devspace/pkg/devspace/config/versions/latest"
2424
"github.com/loft-sh/devspace/pkg/devspace/docker"
2525
"github.com/loft-sh/devspace/pkg/util/fsutil"

cmd/list/commands_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ package list
1414
cloudlatest "github.com/loft-sh/devspace/pkg/devspace/cloud/config/versions/latest"
1515
"github.com/loft-sh/devspace/pkg/devspace/config/loader"
1616
"github.com/loft-sh/devspace/pkg/devspace/config/constants"
17-
"github.com/loft-sh/devspace/pkg/devspace/config/generated"
17+
"github.com/loft-sh/devspace/pkg/devspace/config/localcache"
1818
"github.com/loft-sh/devspace/pkg/devspace/config/versions/latest"
1919
"github.com/loft-sh/devspace/pkg/util/fsutil"
2020
"github.com/loft-sh/devspace/pkg/util/kubeconfig"

cmd/list/deployments_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
cloudconfig "github.com/loft-sh/devspace/pkg/devspace/cloud/config"
1212
cloudlatest "github.com/loft-sh/devspace/pkg/devspace/cloud/config/versions/latest"
1313
"github.com/loft-sh/devspace/pkg/devspace/config/loader"
14-
"github.com/loft-sh/devspace/pkg/devspace/config/generated"
14+
"github.com/loft-sh/devspace/pkg/devspace/config/localcache"
1515
"github.com/loft-sh/devspace/pkg/devspace/config/versions/latest"
1616
"github.com/loft-sh/devspace/pkg/util/fsutil"
1717
"github.com/loft-sh/devspace/pkg/util/kubeconfig"

cmd/list/namespaces_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ package list
1414
cloudconfig "github.com/loft-sh/devspace/pkg/devspace/cloud/config"
1515
cloudlatest "github.com/loft-sh/devspace/pkg/devspace/cloud/config/versions/latest"
1616
"github.com/loft-sh/devspace/pkg/devspace/config/loader"
17-
"github.com/loft-sh/devspace/pkg/devspace/config/generated"
17+
"github.com/loft-sh/devspace/pkg/devspace/config/localcache"
1818
"github.com/loft-sh/devspace/pkg/devspace/config/versions/latest"
1919
"github.com/loft-sh/devspace/pkg/util/fsutil"
2020
"github.com/loft-sh/devspace/pkg/util/kubeconfig"

cmd/list/profiles_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
1414
"github.com/loft-sh/devspace/pkg/devspace/cloud/token"
1515
"github.com/loft-sh/devspace/pkg/devspace/config/loader"
16-
"github.com/loft-sh/devspace/pkg/devspace/config/generated"
16+
"github.com/loft-sh/devspace/pkg/devspace/config/localcache"
1717
"github.com/loft-sh/devspace/pkg/devspace/config/versions/latest"
1818
"github.com/loft-sh/devspace/pkg/util/fsutil"
1919
"github.com/loft-sh/devspace/pkg/util/log"

cmd/list/vars_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
1010
"github.com/loft-sh/devspace/cmd/flags"
1111
"github.com/loft-sh/devspace/pkg/devspace/config/loader"
12-
"github.com/loft-sh/devspace/pkg/devspace/config/generated"
12+
"github.com/loft-sh/devspace/pkg/devspace/config/localcache"
1313
"github.com/loft-sh/devspace/pkg/devspace/config/versions/latest"
1414
"github.com/loft-sh/devspace/pkg/util/fsutil"
1515
"github.com/loft-sh/devspace/pkg/util/log"

cmd/open_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ package cmd
1212
cloudconfig "github.com/loft-sh/devspace/pkg/devspace/cloud/config"
1313
cloudlatest "github.com/loft-sh/devspace/pkg/devspace/cloud/config/versions/latest"
1414
"github.com/loft-sh/devspace/pkg/devspace/config/loader"
15-
"github.com/loft-sh/devspace/pkg/devspace/config/generated"
15+
"github.com/loft-sh/devspace/pkg/devspace/config/localcache"
1616
"github.com/loft-sh/devspace/pkg/devspace/config/versions/latest"
1717
"github.com/loft-sh/devspace/pkg/util/fsutil"
1818
"github.com/loft-sh/devspace/pkg/util/kubeconfig"

0 commit comments

Comments
 (0)