This commit is contained in:
Stavros kois
2022-12-06 15:16:31 +02:00
parent 7fd4001283
commit 64165655c8
2 changed files with 34 additions and 0 deletions

View File

@@ -55,3 +55,5 @@ externalInterfaces:
- destination: 1.2.3.4
gateway: 1.2.3.4
```
`hostInterface` values are generated from the SCALE GUI

View File

@@ -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.