Skip to content

Commit

Permalink
add python deployer (#95)
Browse files Browse the repository at this point in the history
* add python deployer

* bump python deployer version for flow path fix
  • Loading branch information
dustinblack committed Jul 3, 2023
1 parent 10b11cc commit dfc9cfa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions deployer.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,13 @@ import (
docker "go.flow.arcalot.io/dockerdeployer"
kubernetes "go.flow.arcalot.io/kubernetesdeployer"
podman "go.flow.arcalot.io/podmandeployer"
python "go.flow.arcalot.io/pythondeployer"
)

// DefaultDeployerRegistry contains the deployers.
var DefaultDeployerRegistry = registry.New(
deployer.Any(docker.NewFactory()),
deployer.Any(kubernetes.NewFactory()),
deployer.Any(podman.NewFactory()),
deployer.Any(python.NewFactory()),
)
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ require (
go.flow.arcalot.io/kubernetesdeployer v0.5.1
go.flow.arcalot.io/pluginsdk v0.3.0-beta.1
go.flow.arcalot.io/podmandeployer v0.3.1
go.flow.arcalot.io/pythondeployer v0.1.1
go.flow.arcalot.io/testdeployer v0.2.0
gopkg.in/yaml.v3 v3.0.1
)
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,8 @@ go.flow.arcalot.io/pluginsdk v0.3.0-beta.1 h1:RrC5SKDkhwG/enE/FajAxRF1izET61/LO4
go.flow.arcalot.io/pluginsdk v0.3.0-beta.1/go.mod h1:7cEk8LSxpZakyfrmKTPbiMhlrZvWtCPYcaI7qfSu8MM=
go.flow.arcalot.io/podmandeployer v0.3.1 h1:AbRmTTtuK50PLkZyu194oSra0zUCeM3lDCWTc7oo4Ys=
go.flow.arcalot.io/podmandeployer v0.3.1/go.mod h1:SmROc9nHG+KfKasyTeKtGmI9EBlXCupXjBIgX5glGn8=
go.flow.arcalot.io/pythondeployer v0.1.1 h1:3K43XoCwM9zmH6wRX41lB996B1g6nEgD8/kmKKImuWA=
go.flow.arcalot.io/pythondeployer v0.1.1/go.mod h1:vCkwB72TinFVb367/o0djptTvR+V004i1I5OQUeCcPU=
go.flow.arcalot.io/testdeployer v0.2.0 h1:4/cLr58/e6o5ouVRuJ5hM28nhciwJrL9AOE5Sdb7rN0=
go.flow.arcalot.io/testdeployer v0.2.0/go.mod h1:vy3Iu+9SHmugvOJRtMWAj8R+SE9BYi7k9Xi7DM5n7eQ=
go.flow.arcalot.io/testplugin v0.1.0 h1:I2BT978XISjaSnQbpaJfmjo2cTmTeBV7q+1IwTGbrig=
Expand Down

0 comments on commit dfc9cfa

Please sign in to comment.