Start
Workflow for starting an environment
When starting an Environment, the following occur:
- all components of
kind
Helm
,KubernetesManifest
,GenericComponent
are started by running their defined scripts / commands from thestart
attribute of each.
Note: these are all ran in sequence, similarly to the Deploy workflow.
- the number of
replicas
for Docker-compose components is set to the value before stopping for each ofDeployemnts
Important: The number of replicas is preserved at Stop 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 Deploy workflow,
start
scripts are ran in sequence for components ofkind
Helm
,KubernetesManifest
,GenericComponent
, and at the end for all Docker-compose components at once.
Updated 11 months ago