You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Currently, each serviceGroup creates two shell scripts, <group.name>:start and <group.name>:stop
It's impossible to define how be each service stopped. In some cases, it would be a nice feature to have ability to do it myself (or even define cleanup process)
Examples of commands from my recent devshell that spawns necessary services for running tests:
podman stop <container_name>
minikube stop
(Default generated :stop script is unable to shut down both spawned minikube and podman containers)
Describe the solution you'd like
Another attribute, for example stopCommand. It could be also an array of commands.
Describe alternatives you've considered
for now, I'm defining "test_cleanup" command for shell that does the same thing, but it feels like a less than ideal approach
Additional context
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Currently, each
serviceGroup
creates two shell scripts,<group.name>:start
and<group.name>:stop
It's impossible to define how be each service stopped. In some cases, it would be a nice feature to have ability to do it myself (or even define cleanup process)
Examples of commands from my recent devshell that spawns necessary services for running tests:
podman stop <container_name>
minikube stop
(Default generated :stop script is unable to shut down both spawned minikube and podman containers)
Describe the solution you'd like
Another attribute, for example
stopCommand
. It could be also an array of commands.Describe alternatives you've considered
for now, I'm defining "test_cleanup" command for shell that does the same thing, but it feels like a less than ideal approach
Additional context
The text was updated successfully, but these errors were encountered: