mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 03:41:45 +00:00
Add generated artifacts
This commit is contained in:
parent
04a909a257
commit
d5aa35e330
2
Makefile
2
Makefile
@ -233,7 +233,7 @@ define TEST_E2E_NODE_HELP_INFO
|
|||||||
# Example:
|
# Example:
|
||||||
# make test-e2e-node FOCUS=Kubelet SKIP=container
|
# make test-e2e-node FOCUS=Kubelet SKIP=container
|
||||||
# make test-e2e-node REMOTE=true DELETE_INSTANCES=true
|
# make test-e2e-node REMOTE=true DELETE_INSTANCES=true
|
||||||
# make test-e2e-node TEST_ARGS="--experimental-cgroups-per-qos=true"
|
# make test-e2e-node TEST_ARGS="--cgroups-per-qos=true"
|
||||||
# Build and run tests.
|
# Build and run tests.
|
||||||
endef
|
endef
|
||||||
.PHONY: test-e2e-node
|
.PHONY: test-e2e-node
|
||||||
|
@ -63,6 +63,7 @@ cert-dir
|
|||||||
certificate-authority
|
certificate-authority
|
||||||
cgroup-driver
|
cgroup-driver
|
||||||
cgroup-root
|
cgroup-root
|
||||||
|
cgroups-per-qos
|
||||||
chaos-chance
|
chaos-chance
|
||||||
clean-start
|
clean-start
|
||||||
cleanup
|
cleanup
|
||||||
@ -197,7 +198,6 @@ executor-suicide-timeout
|
|||||||
exit-on-lock-contention
|
exit-on-lock-contention
|
||||||
experimental-allowed-unsafe-sysctls
|
experimental-allowed-unsafe-sysctls
|
||||||
experimental-bootstrap-kubeconfig
|
experimental-bootstrap-kubeconfig
|
||||||
experimental-cgroups-per-qos
|
|
||||||
experimental-keystone-url
|
experimental-keystone-url
|
||||||
experimental-keystone-ca-file
|
experimental-keystone-ca-file
|
||||||
experimental-mounter-path
|
experimental-mounter-path
|
||||||
|
@ -400,7 +400,7 @@ func autoConvert_v1alpha1_KubeletConfiguration_To_componentconfig_KubeletConfigu
|
|||||||
out.RuntimeCgroups = in.RuntimeCgroups
|
out.RuntimeCgroups = in.RuntimeCgroups
|
||||||
out.SystemCgroups = in.SystemCgroups
|
out.SystemCgroups = in.SystemCgroups
|
||||||
out.CgroupRoot = in.CgroupRoot
|
out.CgroupRoot = in.CgroupRoot
|
||||||
if err := api.Convert_Pointer_bool_To_bool(&in.ExperimentalCgroupsPerQOS, &out.ExperimentalCgroupsPerQOS, s); err != nil {
|
if err := api.Convert_Pointer_bool_To_bool(&in.CgroupsPerQOS, &out.CgroupsPerQOS, s); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
out.CgroupDriver = in.CgroupDriver
|
out.CgroupDriver = in.CgroupDriver
|
||||||
@ -569,7 +569,7 @@ func autoConvert_componentconfig_KubeletConfiguration_To_v1alpha1_KubeletConfigu
|
|||||||
out.CloudProvider = in.CloudProvider
|
out.CloudProvider = in.CloudProvider
|
||||||
out.CloudConfigFile = in.CloudConfigFile
|
out.CloudConfigFile = in.CloudConfigFile
|
||||||
out.KubeletCgroups = in.KubeletCgroups
|
out.KubeletCgroups = in.KubeletCgroups
|
||||||
if err := api.Convert_bool_To_Pointer_bool(&in.ExperimentalCgroupsPerQOS, &out.ExperimentalCgroupsPerQOS, s); err != nil {
|
if err := api.Convert_bool_To_Pointer_bool(&in.CgroupsPerQOS, &out.CgroupsPerQOS, s); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
out.CgroupDriver = in.CgroupDriver
|
out.CgroupDriver = in.CgroupDriver
|
||||||
|
@ -229,8 +229,8 @@ func DeepCopy_v1alpha1_KubeletConfiguration(in interface{}, out interface{}, c *
|
|||||||
*out = new(int32)
|
*out = new(int32)
|
||||||
**out = **in
|
**out = **in
|
||||||
}
|
}
|
||||||
if in.ExperimentalCgroupsPerQOS != nil {
|
if in.CgroupsPerQOS != nil {
|
||||||
in, out := &in.ExperimentalCgroupsPerQOS, &out.ExperimentalCgroupsPerQOS
|
in, out := &in.CgroupsPerQOS, &out.CgroupsPerQOS
|
||||||
*out = new(bool)
|
*out = new(bool)
|
||||||
**out = **in
|
**out = **in
|
||||||
}
|
}
|
||||||
|
@ -10168,7 +10168,7 @@ func GetOpenAPIDefinitions(ref openapi.ReferenceCallback) map[string]openapi.Ope
|
|||||||
Format: "",
|
Format: "",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
"experimentalCgroupsPerQOS": {
|
"cgroupsPerQOS": {
|
||||||
SchemaProps: spec.SchemaProps{
|
SchemaProps: spec.SchemaProps{
|
||||||
Description: "Enable QoS based Cgroup hierarchy: top level cgroups for QoS Classes And all Burstable and BestEffort pods are brought up under their specific top level QoS cgroup.",
|
Description: "Enable QoS based Cgroup hierarchy: top level cgroups for QoS Classes And all Burstable and BestEffort pods are brought up under their specific top level QoS cgroup.",
|
||||||
Type: []string{"boolean"},
|
Type: []string{"boolean"},
|
||||||
|
Loading…
Reference in New Issue
Block a user