Files
odo/pkg/deploy/interface.go
Philippe Martin 0e4e55bdd0 Deploy, Events without devfile/adapters (#5460)
* 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
2022-02-23 03:48:52 -05:00

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
}