diff --git a/en/reference/services-container.html b/en/reference/services-container.html index f964e2582b..2acd764a39 100644 --- a/en/reference/services-container.html +++ b/en/reference/services-container.html @@ -555,11 +555,20 @@

nodes

environment-variables

-Add children elements to nodes for environment variables - see example below. -These are set before the services are started on the container node - available for the Container. + Allows setting environment variables for the container, those are set before the services are started on the container + node. + This needs to be a child of nodes. The format is a list of key-value pairs, where the key is the name of + the environment variable.

- - +

Example:

+
+<nodes>
+    <environment-variables>
+        <KMP_SETTING>1</KMP_SETTING>
+        <KMP_AFFINITY>granularity=fine,verbose,compact,1,0</KMP_AFFINITY>
+    </environment-variables>
+    <node/>
+

jvm