Skip to content

Commit

Permalink
kep: pod-overhead: simplify runtimeClass description
Browse files Browse the repository at this point in the history
to-be-squashed - including in history for review period only

Signed-off-by: Eric Ernst <eric.ernst@intel.com>
  • Loading branch information
Eric Ernst committed Apr 4, 2019
1 parent 9a0b39e commit 745d21d
Showing 1 changed file with 1 addition and 23 deletions.
24 changes: 1 addition & 23 deletions keps/sig-node/20190226-pod-overhead.md
Expand Up @@ -129,29 +129,7 @@ several scenarios:

### RuntimeClass changes

Expand the runtimeClass type to include sandbox overheads:

```
openAPIV3Schema:
properties:
spec:
properties:
runtimeHandler:
type: string
Pattern: '^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*)?$'
+ runtimeCpuReqOverhead:
+ type: string
+ pattern: '^([0-9]+([.][0-9])?)|[0-9]+(m)$'
+ runtimeCpuLimitOverhead:
+ type: string
+ pattern: '^([0-9]+([.][0-9])?)|[0-9]+(m)$'
+ runtimeMemoryReqOverhead:
+ type: string
+ pattern: '^[0-9]+([.][0-9]+)+(Mi|Gi|M|G)$'
+ runtimeMemoryLimitOverhead:
+ type: string
+ pattern: '^[0-9]+([.][0-9]+)+(Mi|Gi|M|G)$'
```
Expand the runtimeClass type to include sandbox overhead, `Overhead *ResourceRequirements.`

### RuntimeClass admission controller

Expand Down

0 comments on commit 745d21d

Please sign in to comment.