Merge pull request #115604 from pacoxu/fix-design-proposals-links
old design proposals are now moved to Design Proposals Archive repo Kubernetes-commit: ffe410bbb4e43ba7b7ceaec379709575e817d866
This commit is contained in:
commit
186907ee1f
|
@ -631,14 +631,14 @@ type KubeletConfiguration struct {
|
|||
ShowHiddenMetricsForVersion string `json:"showHiddenMetricsForVersion,omitempty"`
|
||||
// systemReservedCgroup helps the kubelet identify absolute name of top level CGroup used
|
||||
// to enforce `systemReserved` compute resource reservation for OS system daemons.
|
||||
// Refer to [Node Allocatable](https://git.k8s.io/community/contributors/design-proposals/node/node-allocatable.md)
|
||||
// Refer to [Node Allocatable](https://kubernetes.io/docs/tasks/administer-cluster/reserve-compute-resources/#node-allocatable)
|
||||
// doc for more information.
|
||||
// Default: ""
|
||||
// +optional
|
||||
SystemReservedCgroup string `json:"systemReservedCgroup,omitempty"`
|
||||
// kubeReservedCgroup helps the kubelet identify absolute name of top level CGroup used
|
||||
// to enforce `KubeReserved` compute resource reservation for Kubernetes node system daemons.
|
||||
// Refer to [Node Allocatable](https://git.k8s.io/community/contributors/design-proposals/node/node-allocatable.md)
|
||||
// Refer to [Node Allocatable](https://kubernetes.io/docs/tasks/administer-cluster/reserve-compute-resources/#node-allocatable)
|
||||
// doc for more information.
|
||||
// Default: ""
|
||||
// +optional
|
||||
|
@ -650,7 +650,7 @@ type KubeletConfiguration struct {
|
|||
// When `system-reserved` is in the list, systemReservedCgroup must be specified.
|
||||
// When `kube-reserved` is in the list, kubeReservedCgroup must be specified.
|
||||
// This field is supported only when `cgroupsPerQOS` is set to true.
|
||||
// Refer to [Node Allocatable](https://git.k8s.io/community/contributors/design-proposals/node/node-allocatable.md)
|
||||
// Refer to [Node Allocatable](https://kubernetes.io/docs/tasks/administer-cluster/reserve-compute-resources/#node-allocatable)
|
||||
// for more information.
|
||||
// Default: ["pods"]
|
||||
// +optional
|
||||
|
|
14
go.mod
14
go.mod
|
@ -7,9 +7,9 @@ go 1.19
|
|||
require (
|
||||
github.com/gogo/protobuf v1.3.2
|
||||
google.golang.org/grpc v1.51.0
|
||||
k8s.io/api v0.0.0-20230215102316-c02fa6b5ebd9
|
||||
k8s.io/apimachinery v0.0.0-20230215101505-6ecd1c896902
|
||||
k8s.io/component-base v0.0.0-20230215115332-4fe47bde14b4
|
||||
k8s.io/api v0.0.0-20230216210204-c710db81a13d
|
||||
k8s.io/apimachinery v0.0.0-20230216205949-e90c788139cd
|
||||
k8s.io/component-base v0.0.0-20230215215219-ae9be4dda9da
|
||||
)
|
||||
|
||||
require (
|
||||
|
@ -46,8 +46,8 @@ require (
|
|||
)
|
||||
|
||||
replace (
|
||||
k8s.io/api => k8s.io/api v0.0.0-20230215102316-c02fa6b5ebd9
|
||||
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20230215101505-6ecd1c896902
|
||||
k8s.io/client-go => k8s.io/client-go v0.0.0-20230215104727-60f5c9b46336
|
||||
k8s.io/component-base => k8s.io/component-base v0.0.0-20230215115332-4fe47bde14b4
|
||||
k8s.io/api => k8s.io/api v0.0.0-20230216210204-c710db81a13d
|
||||
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20230216205949-e90c788139cd
|
||||
k8s.io/client-go => k8s.io/client-go v0.0.0-20230216210513-df55688a240b
|
||||
k8s.io/component-base => k8s.io/component-base v0.0.0-20230215215219-ae9be4dda9da
|
||||
)
|
||||
|
|
12
go.sum
12
go.sum
|
@ -551,12 +551,12 @@ honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWh
|
|||
honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg=
|
||||
honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k=
|
||||
honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k=
|
||||
k8s.io/api v0.0.0-20230215102316-c02fa6b5ebd9 h1:PGyCM7BGFOKsZbKV+Nfy3w5dw0UrDjHMW+CVQ/l7wfk=
|
||||
k8s.io/api v0.0.0-20230215102316-c02fa6b5ebd9/go.mod h1:xHDIgV7hLXSwgsORlFnEBjiX2zcdo49H+uO4AEqBz/E=
|
||||
k8s.io/apimachinery v0.0.0-20230215101505-6ecd1c896902 h1:V/vXE6FvO6XkVB20q82d2yp1MA6Zwper/mThB1vCDLc=
|
||||
k8s.io/apimachinery v0.0.0-20230215101505-6ecd1c896902/go.mod h1:X4Ff26Y8AJHTAxjPrGbVLY8N3ADYqSjUy2Zn/uTUFyM=
|
||||
k8s.io/component-base v0.0.0-20230215115332-4fe47bde14b4 h1:HRpqqsHqGgSfAeSwsmozKo6mhWJ0p2JI36vao2er+fE=
|
||||
k8s.io/component-base v0.0.0-20230215115332-4fe47bde14b4/go.mod h1:GgrhCRrPLmN9lWoh+m52a6iHKG3zx8KJyclgqPgbFDQ=
|
||||
k8s.io/api v0.0.0-20230216210204-c710db81a13d h1:LC70wXIYygo42ZqZvVQmhc2QhgrOi5+lG9ueUdnGhYw=
|
||||
k8s.io/api v0.0.0-20230216210204-c710db81a13d/go.mod h1:Y4swnoZB6W7XZB1AvPG7IixVSHZv7YB3uxyveramlQY=
|
||||
k8s.io/apimachinery v0.0.0-20230216205949-e90c788139cd h1:vkr9Hnk9T+9xhtrRXH2+9NndCHR3F1wgplgbQX5xpsk=
|
||||
k8s.io/apimachinery v0.0.0-20230216205949-e90c788139cd/go.mod h1:X4Ff26Y8AJHTAxjPrGbVLY8N3ADYqSjUy2Zn/uTUFyM=
|
||||
k8s.io/component-base v0.0.0-20230215215219-ae9be4dda9da h1:tgXu2y67YqUXP4txgy1vMTvOOqpT/kzIxmrtE0SvR8M=
|
||||
k8s.io/component-base v0.0.0-20230215215219-ae9be4dda9da/go.mod h1:GgrhCRrPLmN9lWoh+m52a6iHKG3zx8KJyclgqPgbFDQ=
|
||||
k8s.io/klog/v2 v2.80.1 h1:atnLQ121W371wYYFawwYx1aEY2eUfs4l3J72wtgAwV4=
|
||||
k8s.io/klog/v2 v2.80.1/go.mod h1:y1WjHnz7Dj687irZUWR/WLkLc5N1YHtjLdmgWjndZn0=
|
||||
k8s.io/utils v0.0.0-20230209194617-a36077c30491 h1:r0BAOLElQnnFhE/ApUsg3iHdVYYPBjNSSOMowRZxxsY=
|
||||
|
|
Loading…
Reference in New Issue