diff --git a/library/common/_docs/values/externalInterfaces.md b/library/common/_docs/values/externalInterfaces.md index 3c21196a17..5cc0c28411 100644 --- a/library/common/_docs/values/externalInterfaces.md +++ b/library/common/_docs/values/externalInterfaces.md @@ -55,3 +55,5 @@ externalInterfaces: - destination: 1.2.3.4 gateway: 1.2.3.4 ``` + +`hostInterface` values are generated from the SCALE GUI diff --git a/library/common/_docs/values/gpu.md b/library/common/_docs/values/gpu.md new file mode 100644 index 0000000000..3b874ea803 --- /dev/null +++ b/library/common/_docs/values/gpu.md @@ -0,0 +1,32 @@ +# GPU + +## key: scaleGPU + +- Type: `dict` +- Default: `{}` +- Helm Template: ❌ + +It's used in SCALE GUI. Configuration is parsed by the Chart, +and each key/value pair, is added in `deployment.spec.template.container.resources.limits` + +Example: + +```yaml +scaleGPU: + gpu.intel.com/i915: "1" + +resources: + limits: + cpu: 4000m +``` + +Will result in: + +```yaml +resources: + limits: + gpu.intel.com/i915: "1" + cpu: 4000m +``` + +`gpu.intel.com/i915` and it's value, are generated from the SCALE GUI.