mirror of
https://github.com/redhat-developer/odo.git
synced 2025-10-19 03:06:19 +03:00
* Execute devfile command * Undeploy * cleanup devfile/adapters * refactor * Move GetOnePod to component package * Move DoesComponentExist and Log from devfile/adapter to component package * Exec without devfile/adapters * Move Delete from devfile/adapters to component * Remove old Deploy code * review * Add tests for issue 5454 * Review
9 lines
250 B
Go
9 lines
250 B
Go
package deploy
|
|
|
|
import "github.com/devfile/library/pkg/devfile/parser"
|
|
|
|
type Client interface {
|
|
// Deploy resources from a devfile located in path, for the specified appName
|
|
Deploy(devfileObj parser.DevfileObj, path string, appName string) error
|
|
}
|