forked from flyteorg/flyte
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moving all plugins to a common package, for easy loading (flyteorg#423)
* Moving all plugins to a common package, for easy loading Signed-off-by: Ketan Umare <[email protected]> * updated Signed-off-by: Ketan Umare <[email protected]>
- Loading branch information
Showing
2 changed files
with
18 additions
and
11 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
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 plugins facilitates all the plugins that should be loaded by FlytePropeller | ||
package plugins | ||
|
||
import ( | ||
// Common place to import all plugins, so that it can be imported by Singlebinary (flytelite) or by propeller main | ||
_ "github.com/flyteorg/flyteplugins/go/tasks/plugins/array/awsbatch" | ||
_ "github.com/flyteorg/flyteplugins/go/tasks/plugins/array/k8s" | ||
_ "github.com/flyteorg/flyteplugins/go/tasks/plugins/hive" | ||
_ "github.com/flyteorg/flyteplugins/go/tasks/plugins/k8s/kfoperators/mpi" | ||
_ "github.com/flyteorg/flyteplugins/go/tasks/plugins/k8s/kfoperators/pytorch" | ||
_ "github.com/flyteorg/flyteplugins/go/tasks/plugins/k8s/pod" | ||
_ "github.com/flyteorg/flyteplugins/go/tasks/plugins/k8s/sagemaker" | ||
_ "github.com/flyteorg/flyteplugins/go/tasks/plugins/k8s/spark" | ||
_ "github.com/flyteorg/flyteplugins/go/tasks/plugins/webapi/athena" | ||
_ "github.com/flyteorg/flyteplugins/go/tasks/plugins/webapi/bigquery" | ||
_ "github.com/flyteorg/flyteplugins/go/tasks/plugins/webapi/snowflake" | ||
) |