diff --git a/docs/user-guide/configuration/index.md b/docs/user-guide/configuration/index.md index 51dc58a0..2061ab65 100644 --- a/docs/user-guide/configuration/index.md +++ b/docs/user-guide/configuration/index.md @@ -28,7 +28,8 @@ You can access information about properties by hovering over the property name. annotations: beta.screwdriver.cd/my-cluster-annotation: my-data beta.screwdriver.cd/executor: k8s-vm - beta.screwdriver.cd/resource: HIGH + beta.screwdriver.cd/cpu: HIGH + beta.screwdriver.cd/ram: LOW jobs: main: requires: [~pr, ~commit, ~sd@123:main] @@ -89,9 +90,13 @@ You can access information about properties by hovering over the property name.
Used to designate a non-default executor to run the build. Some available executors are `jenkins`, `k8s-vm`
-CPU and RAM allocated for the VM if using `k8s-vm` executor. `LOW` is configured by default, and indicates 2CPU and 2GB memory. `HIGH` means 6CPU and 12GB memory.
+CPU allocated for the VM if using `k8s-vm` executor. `LOW` is configured by default, and indicates 2CPU memory. `HIGH` means 6CPU.
+RAM allocated for the VM if using `k8s-vm` executor. `LOW` is configured by default, and indicates 2GB memory. `HIGH` means 12GB memory.