Enable and disable components
-
Component can be disabled or enabled for all or specific environment configurations.
spec:components:- name: backendenvironmentConfig:- environment: prodenabled: falseIn the example above the component
backendis disabled for the environmentprod, but it remains enabled for other environments, if they exist. An equal configuration:spec:components:- name: backendenabled: trueenvironmentConfig:- environment: prodenabled: false -
The component can be enabled for specific environment configurations.
spec:components:- name: backendenabled: falseenvironmentConfig:- environment: prodenabled: trueIn the example above the component
backendis disabled for all environments, but it is disabled for the environmentprod. -
If a component is disabled and there are its environment configurations, where the option
enabledis not specified, the component is disabled for such environments.spec:components:- name: backendenabled: falseenvironmentConfig:- environment: prodIn the example above the component
backendis disabled for all environments, including the environmentprod.