Skip to content

Commit aef39f0

Browse files
feat: Automated regeneration of Container client (googleapis#12890)
Auto-created at 2025-01-30 13:10:26 +0000 using the toys pull request generator.
1 parent 2679bb2 commit aef39f0

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

clients/container/lib/google_api/container/v1/metadata.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ defmodule GoogleApi.Container.V1 do
2020
API client metadata for GoogleApi.Container.V1.
2121
"""
2222

23-
@discovery_revision "20241228"
23+
@discovery_revision "20250114"
2424

2525
def discovery_revision(), do: @discovery_revision
2626
end

clients/container/lib/google_api/container/v1/model/linux_node_config.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ defmodule GoogleApi.Container.V1.Model.LinuxNodeConfig do
2323
2424
* `cgroupMode` (*type:* `String.t`, *default:* `nil`) - cgroup_mode specifies the cgroup mode to be used on the node.
2525
* `hugepages` (*type:* `GoogleApi.Container.V1.Model.HugepagesConfig.t`, *default:* `nil`) - Optional. Amounts for 2M and 1G hugepages
26-
* `sysctls` (*type:* `map()`, *default:* `nil`) - 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
26+
* `sysctls` (*type:* `map()`, *default:* `nil`) - 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
2727
"""
2828

2929
use GoogleApi.Gax.ModelBase

clients/container/lib/google_api/container/v1/model/node_kubelet_config.ex

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,26 +21,47 @@ defmodule GoogleApi.Container.V1.Model.NodeKubeletConfig do
2121
2222
## Attributes
2323
24+
* `allowedUnsafeSysctls` (*type:* `list(String.t)`, *default:* `nil`) - 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.
25+
* `containerLogMaxFiles` (*type:* `integer()`, *default:* `nil`) - 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.
26+
* `containerLogMaxSize` (*type:* `String.t`, *default:* `nil`) - 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.
2427
* `cpuCfsQuota` (*type:* `boolean()`, *default:* `nil`) - 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.
2528
* `cpuCfsQuotaPeriod` (*type:* `String.t`, *default:* `nil`) - Set the CPU CFS quota period value 'cpu.cfs_period_us'. The string must be a sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". The value must be a positive duration.
2629
* `cpuManagerPolicy` (*type:* `String.t`, *default:* `nil`) - 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.
30+
* `imageGcHighThresholdPercent` (*type:* `integer()`, *default:* `nil`) - 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.
31+
* `imageGcLowThresholdPercent` (*type:* `integer()`, *default:* `nil`) - 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.
32+
* `imageMaximumGcAge` (*type:* `String.t`, *default:* `nil`) - 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.
33+
* `imageMinimumGcAge` (*type:* `String.t`, *default:* `nil`) - 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.
2734
* `insecureKubeletReadonlyPortEnabled` (*type:* `boolean()`, *default:* `nil`) - Enable or disable Kubelet read only port.
2835
* `podPidsLimit` (*type:* `String.t`, *default:* `nil`) - Set the Pod PID limits. See https://kubernetes.io/docs/concepts/policy/pid-limiting/#pod-pid-limits Controls the maximum number of processes allowed to run in a pod. The value must be greater than or equal to 1024 and less than 4194304.
2936
"""
3037

3138
use GoogleApi.Gax.ModelBase
3239

3340
@type t :: %__MODULE__{
41+
:allowedUnsafeSysctls => list(String.t()) | nil,
42+
:containerLogMaxFiles => integer() | nil,
43+
:containerLogMaxSize => String.t() | nil,
3444
:cpuCfsQuota => boolean() | nil,
3545
:cpuCfsQuotaPeriod => String.t() | nil,
3646
:cpuManagerPolicy => String.t() | nil,
47+
:imageGcHighThresholdPercent => integer() | nil,
48+
:imageGcLowThresholdPercent => integer() | nil,
49+
:imageMaximumGcAge => String.t() | nil,
50+
:imageMinimumGcAge => String.t() | nil,
3751
:insecureKubeletReadonlyPortEnabled => boolean() | nil,
3852
:podPidsLimit => String.t() | nil
3953
}
4054

55+
field(:allowedUnsafeSysctls, type: :list)
56+
field(:containerLogMaxFiles)
57+
field(:containerLogMaxSize)
4158
field(:cpuCfsQuota)
4259
field(:cpuCfsQuotaPeriod)
4360
field(:cpuManagerPolicy)
61+
field(:imageGcHighThresholdPercent)
62+
field(:imageGcLowThresholdPercent)
63+
field(:imageMaximumGcAge)
64+
field(:imageMinimumGcAge)
4465
field(:insecureKubeletReadonlyPortEnabled)
4566
field(:podPidsLimit)
4667
end

0 commit comments

Comments
 (0)