Skip to content

Commit

Permalink
added missing deployment step
Browse files Browse the repository at this point in the history
  • Loading branch information
hellt committed Jun 29, 2021
1 parent 8d12776 commit 64b458d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion nodes/mysocketio/mysocketio.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ func (s *mySocketIO) PreDeploy(configName, labCADir, labCARoot string) error {
// utils.CreateDirectory(s.cfg.LabDir, 0777)
return nil
}
func (s *mySocketIO) Deploy(ctx context.Context, r runtime.ContainerRuntime) error { return nil }

func (s *mySocketIO) Deploy(ctx context.Context, r runtime.ContainerRuntime) error {
return r.CreateContainer(ctx, s.cfg)
}

func (s *mySocketIO) PostDeploy(ctx context.Context, r runtime.ContainerRuntime, ns map[string]nodes.Node) error {
log.Debugf("Running postdeploy actions for mysocketio '%s' node", s.cfg.ShortName)
Expand Down

0 comments on commit 64b458d

Please sign in to comment.