kubernetes/pkg/registry/core/pod
Ed Bartosh 0eb65bd7da Implement support for multiple sizes huge pages
This implementation allows Pod to request multiple hugepage resources
of different size and mount hugepage volumes using storage medium
HugePage-<size>, e.g.

spec:
  containers:
    resources:
      requests:
        hugepages-2Mi: 2Mi
        hugepages-1Gi: 2Gi
    volumeMounts:
      - mountPath: /hugepages-2Mi
        name: hugepage-2mi
      - mountPath: /hugepages-1Gi
        name: hugepage-1gi
    ...
  volumes:
    - name: hugepage-2mi
      emptyDir:
        medium: HugePages-2Mi
    - name: hugepage-1gi
      emptyDir:
        medium: HugePages-1Gi

NOTE: This is an alpha feature.
      Feature gate HugePageStorageMediumSize must be enabled for it to work.
2020-02-19 18:15:40 +02:00
..
rest Changed comments to match with interfaces method description 2020-02-06 11:48:57 +01:00
storage Merge pull request #86896 from yutedz/copy-into-err 2020-02-12 13:54:51 -08:00
BUILD Add ephemeral containers to streamLocation name suggestions 2020-02-12 14:49:42 +01:00
doc.go
strategy_test.go Add ephemeral containers to streamLocation name suggestions 2020-02-12 14:49:42 +01:00
strategy.go Implement support for multiple sizes huge pages 2020-02-19 18:15:40 +02:00