This section describes how to calculate the resources required for a workspace. It is the sum of the resources required for each component of this workspace.
These examples demonstrate the necessity of a proper calculation:
-
A workspace with 10 active plug-ins requires more resources then the same workspace with fewer plug-ins.
-
A standard Java workspace requires more resources than a standard Node.js workspace because running builds, tests, and application debugging requires more resources.
-
Identify the workspace components explicitly specified in the
componentssection of the devfile. -
Identify the implicit workspace components:
-
Che implicitly loads the default
cheEditor:che-theia, and thechePluginthat allows commands execution:che-machine-exec-plugin. To change the default editor, add acheEditorcomponent section in the devfile. -
When Che is running in multi-user mode, it loads the
JWT Proxycomponent. The JWT Proxy is responsible for the authentication and authorization of the external communications of the workspace components.
-
-
Calculate the requirements for each component:
-
Default values:
The following table presents the default requirements for all workspace components. It also presents the corresponding Che server property to modify the defaults cluster-wide.
Table 1. Default requirements of workspace components by type Component types Che server property Default memory limit Default memory request chePluginche.workspace.sidecar.default_memory_limit_mb128 MiB
128 MiB
cheEditorche.workspace.sidecar.default_memory_limit_mb128 MiB
128 MiB
kubernetes,openshift,dockerimageche.workspace.default_memory_limit_mb,che.workspace.default_memory_request_mb1 Gi
512 MiB
JWT Proxyche.server.secure_exposer.jwtproxy.memory_limit128 MiB
128 MiB
-
Custom requirements for
chePluginsandcheEditorscomponents:-
Custom memory limit and request:
If present, the
memoryLimitattribute of thecontainerssection of themeta.yamlfile defines the memory limit of achePluginsorcheEditorscomponent. Che automatically sets the memory request to match the memory limit. There is no attribute in ameta.yamlfile to set the memory request.Example 1. ThechePluginche-incubator/typescript/latestmeta.yamlspec section:spec: containers: - image: docker.io/eclipse/che-remote-plugin-node:next name: vscode-typescript memoryLimit: 512MiIt results in a container with the following memory limit and request:
Memory limit
512 MiB
Memory request
512 MiB
How to find themeta.yamlfile ofchePluginCommunity plug-ins are available in the che-plugin-registry GitHub repository in folder
v3/plugins/${organization}/${name}/${version}/.For non-community or customized plug-ins, the
meta.yamlfiles are available on the local Kubernetes cluster at${pluginRegistryEndpoint}/v3/plugins/${organization}/${name}/${version}/meta.yaml.For example, on a local Minikube cluster, the URL for the
che-incubator/typescript/latest meta.yamlishttp://plugin-registry-che.192.168.64.78.nip.io/v3/plugins/che-incubator/typescript/latest/meta.yaml. -
Custom CPU limit and request:
Che does not set CPU limits and requests. The
LimitRangeKubernetes namespace may specify some defaults for CPU limits and requests. Kubernetes apply them to thechePlugincontainer.
-
-
Custom requirements for
dockerimagecomponentsIf present, the
memoryLimitattribute of the devfile defines the memory limit of adockerimagecontainer. Che set automatically the memory request to match the memory limit. There is no attribute in a devfile to set the memory request.- alias: maven type: dockerimage image: eclipse/maven-jdk8:latest memoryLimit: 1536M -
Custom requirements for
kubernetesoropenshiftcomponents:The referenced manifest may define the memory requirements and limits.
-
-
Add all requirements previously calculated.