Stop
Workflow for stopping an environment
When stopping an Environment, the following occur:
- all components of
kind
Helm
,KubernetesManifest
,GenericComponent
are stopped by running their defined scripts / commands from thestop
attribute of each.
Note: these are all ran in parallel. - the number of
replicas
for Docker-compose components is set to0
for each ofDeployments
.
Important: The number of replicas is preserved so it can be later on put back, when starting the component.
For
KubernetesManifest
,Helm
andGenericComponent
it is your entire responsibility to handle what happens when starting/stopping an environment.
Similarly to the Destroy workflow, all stop commands are ran in parallel.
Updated about 1 year ago