|
2685 | 2685 | } |
2686 | 2686 | } |
2687 | 2687 | }, |
2688 | | - "revision": "20241228", |
| 2688 | + "revision": "20250114", |
2689 | 2689 | "rootUrl": "https://container.googleapis.com/", |
2690 | 2690 | "schemas": { |
2691 | 2691 | "AcceleratorConfig": { |
|
5462 | 5462 | "additionalProperties": { |
5463 | 5463 | "type": "string" |
5464 | 5464 | }, |
5465 | | - "description": "The Linux kernel parameters to be applied to the nodes and all pods running on the nodes. The following parameters are supported. net.core.busy_poll net.core.busy_read net.core.netdev_max_backlog net.core.rmem_max net.core.wmem_default net.core.wmem_max net.core.optmem_max net.core.somaxconn net.ipv4.tcp_rmem net.ipv4.tcp_wmem net.ipv4.tcp_tw_reuse kernel.shmmni kernel.shmmax kernel.shmall", |
| 5465 | + "description": "The Linux kernel parameters to be applied to the nodes and all pods running on the nodes. The following parameters are supported. net.core.busy_poll net.core.busy_read net.core.netdev_max_backlog net.core.rmem_max net.core.rmem_default net.core.wmem_default net.core.wmem_max net.core.optmem_max net.core.somaxconn net.ipv4.tcp_rmem net.ipv4.tcp_wmem net.ipv4.tcp_tw_reuse net.netfilter.nf_conntrack_max net.netfilter.nf_conntrack_buckets net.netfilter.nf_conntrack_tcp_timeout_close_wait net.netfilter.nf_conntrack_tcp_timeout_time_wait net.netfilter.nf_conntrack_tcp_timeout_established net.netfilter.nf_conntrack_acct kernel.shmmni kernel.shmmax kernel.shmall vm.max_map_count", |
5466 | 5466 | "type": "object" |
5467 | 5467 | } |
5468 | 5468 | }, |
|
6429 | 6429 | "description": "Node kubelet configs.", |
6430 | 6430 | "id": "NodeKubeletConfig", |
6431 | 6431 | "properties": { |
| 6432 | + "allowedUnsafeSysctls": { |
| 6433 | + "description": "Optional. Defines a comma-separated allowlist of unsafe sysctls or sysctl patterns (ending in `*`). The unsafe namespaced sysctl groups are `kernel.shm*`, `kernel.msg*`, `kernel.sem`, `fs.mqueue.*`, and `net.*`. Leaving this allowlist empty means they cannot be set on Pods. To allow certain sysctls or sysctl patterns to be set on Pods, list them separated by commas. For example: `kernel.msg*,net.ipv4.route.min_pmtu`. See https://kubernetes.io/docs/tasks/administer-cluster/sysctl-cluster/ for more details.", |
| 6434 | + "items": { |
| 6435 | + "type": "string" |
| 6436 | + }, |
| 6437 | + "type": "array" |
| 6438 | + }, |
| 6439 | + "containerLogMaxFiles": { |
| 6440 | + "description": "Optional. Defines the maximum number of container log files that can be present for a container. See https://kubernetes.io/docs/concepts/cluster-administration/logging/#log-rotation The value must be an integer between 2 and 10, inclusive. The default value is 5 if unspecified.", |
| 6441 | + "format": "int32", |
| 6442 | + "type": "integer" |
| 6443 | + }, |
| 6444 | + "containerLogMaxSize": { |
| 6445 | + "description": "Optional. Defines the maximum size of the container log file before it is rotated. See https://kubernetes.io/docs/concepts/cluster-administration/logging/#log-rotation Valid format is positive number + unit, e.g. 100Ki, 10Mi. Valid units are Ki, Mi, Gi. The value must be between 10Mi and 500Mi, inclusive. Note that the total container log size (container_log_max_size * container_log_max_files) cannot exceed 1% of the total storage of the node, to avoid disk pressure caused by log files. The default value is 10Mi if unspecified.", |
| 6446 | + "type": "string" |
| 6447 | + }, |
6432 | 6448 | "cpuCfsQuota": { |
6433 | 6449 | "description": "Enable CPU CFS quota enforcement for containers that specify CPU limits. This option is enabled by default which makes kubelet use CFS quota (https://www.kernel.org/doc/Documentation/scheduler/sched-bwc.txt) to enforce container CPU limits. Otherwise, CPU limits will not be enforced at all. Disable this option to mitigate CPU throttling problems while still having your pods to be in Guaranteed QoS class by specifying the CPU limits. The default value is 'true' if unspecified.", |
6434 | 6450 | "type": "boolean" |
|
6441 | 6457 | "description": "Control the CPU management policy on the node. See https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/ The following values are allowed. * \"none\": the default, which represents the existing scheduling behavior. * \"static\": allows pods with certain resource characteristics to be granted increased CPU affinity and exclusivity on the node. The default value is 'none' if unspecified.", |
6442 | 6458 | "type": "string" |
6443 | 6459 | }, |
| 6460 | + "imageGcHighThresholdPercent": { |
| 6461 | + "description": "Optional. Defines the percent of disk usage after which image garbage collection is always run. The percent is calculated as this field value out of 100. The value must be between 10 and 85, inclusive and greater than image_gc_low_threshold_percent. The default value is 85 if unspecified.", |
| 6462 | + "format": "int32", |
| 6463 | + "type": "integer" |
| 6464 | + }, |
| 6465 | + "imageGcLowThresholdPercent": { |
| 6466 | + "description": "Optional. Defines the percent of disk usage before which image garbage collection is never run. Lowest disk usage to garbage collect to. The percent is calculated as this field value out of 100. The value must be between 10 and 85, inclusive and smaller than image_gc_high_threshold_percent. The default value is 80 if unspecified.", |
| 6467 | + "format": "int32", |
| 6468 | + "type": "integer" |
| 6469 | + }, |
| 6470 | + "imageMaximumGcAge": { |
| 6471 | + "description": "Optional. Defines the maximum age an image can be unused before it is garbage collected. The string must be a sequence of decimal numbers, each with optional fraction and a unit suffix, such as \"300s\", \"1.5h\", and \"2h45m\". Valid time units are \"ns\", \"us\" (or \"µs\"), \"ms\", \"s\", \"m\", \"h\". The value must be a positive duration greater than image_minimum_gc_age or \"0s\". The default value is \"0s\" if unspecified, which disables this field, meaning images won't be garbage collected based on being unused for too long.", |
| 6472 | + "type": "string" |
| 6473 | + }, |
| 6474 | + "imageMinimumGcAge": { |
| 6475 | + "description": "Optional. Defines the minimum age for an unused image before it is garbage collected. The string must be a sequence of decimal numbers, each with optional fraction and a unit suffix, such as \"300s\", \"1.5h\", and \"2h45m\". Valid time units are \"ns\", \"us\" (or \"µs\"), \"ms\", \"s\", \"m\", \"h\". The value must be a positive duration less than or equal to 2 minutes. The default value is \"2m0s\" if unspecified.", |
| 6476 | + "type": "string" |
| 6477 | + }, |
6444 | 6478 | "insecureKubeletReadonlyPortEnabled": { |
6445 | 6479 | "description": "Enable or disable Kubelet read only port.", |
6446 | 6480 | "type": "boolean" |
|
0 commit comments