-
Notifications
You must be signed in to change notification settings - Fork 243
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Simplify devfile Kubernetes adapter (#6762)
* Get values from context * Move Devfile param to WatchParams and biuld adapter only once * Move pkg/devfile/adapters/kubernetes/* into pkg/dev/kubedev * Rename Push to reconcile and split in 2 parts: components and innreloop * Pass out ans errout as startOptions * Embed StartOptions into PushParameters * Embed StartOptions into WatchParameters * Fix passing startoptions * Deduplicate options (out, ...) * Revert adding unwanted files * Fix wait app ready
- Loading branch information
Showing
28 changed files
with
781 additions
and
890 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
pkg/devfile/adapters/attributes.go → pkg/dev/common/attributes.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package adapters | ||
package common | ||
|
||
import ( | ||
"path/filepath" | ||
|
2 changes: 1 addition & 1 deletion
2
pkg/devfile/adapters/attributes_test.go → pkg/dev/common/attributes_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package adapters | ||
package common | ||
|
||
import ( | ||
"testing" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package adapters | ||
package common | ||
|
||
import "fmt" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package common | ||
|
||
import ( | ||
"github.com/devfile/library/v2/pkg/devfile/parser" | ||
"github.com/redhat-developer/odo/pkg/dev" | ||
) | ||
|
||
// PushParameters is a struct containing the parameters to be used when pushing to a devfile component | ||
type PushParameters struct { | ||
StartOptions dev.StartOptions | ||
|
||
Devfile parser.DevfileObj | ||
WatchFiles []string // Optional: WatchFiles is the list of changed files detected by odo watch. If empty or nil, odo will check .odo/odo-file-index.json to determine changed files | ||
WatchDeletedFiles []string // Optional: WatchDeletedFiles is the list of deleted files detected by odo watch. If empty or nil, odo will check .odo/odo-file-index.json to determine deleted files | ||
Show bool // Show tells whether the devfile command output should be shown on stdout | ||
DevfileScanIndexForWatch bool // DevfileScanIndexForWatch is true if watch's push should regenerate the index file during SyncFiles, false otherwise. See 'pkg/sync/adapter.go' for details | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.