google-apis-container_v1 0.98.0 → 0.99.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3ad6b0e94001699733e2ecf379d9dae2edb2cedd59c5b8fde91cb1eab5c6139f
|
4
|
+
data.tar.gz: 93a24cfbed1a0449daaea5f25ea2d0a1e015987fda5d9f56bcda57cf998dab4a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 702b6653d8a577b4706f9362d662d4f3941e20b7437a0303f96273f973fbdaf726cd0be3beb91cffc3395741ffe7f80c53d7122bee2addf6e220416d626f97ae
|
7
|
+
data.tar.gz: ef40d7351ae780efaa6ce9637257779fc2898f2df5b48dc0204f2359da00ce952f9a110758b3d934d12809ff16ab8aad48e0592ba15e22e88b2cc06821dd7e35
|
data/CHANGELOG.md
CHANGED
@@ -5258,6 +5258,15 @@ module Google
|
|
5258
5258
|
# @return [Fixnum]
|
5259
5259
|
attr_accessor :pod_pids_limit
|
5260
5260
|
|
5261
|
+
# Optional. Defines whether to enable single process OOM killer. If true, will
|
5262
|
+
# prevent the memory.oom.group flag from being set for container cgroups in
|
5263
|
+
# cgroups v2. This causes processes in the container to be OOM killed
|
5264
|
+
# individually instead of as a group.
|
5265
|
+
# Corresponds to the JSON property `singleProcessOomKill`
|
5266
|
+
# @return [Boolean]
|
5267
|
+
attr_accessor :single_process_oom_kill
|
5268
|
+
alias_method :single_process_oom_kill?, :single_process_oom_kill
|
5269
|
+
|
5261
5270
|
# TopologyManager defines the configuration options for Topology Manager feature.
|
5262
5271
|
# See https://kubernetes.io/docs/tasks/administer-cluster/topology-manager/
|
5263
5272
|
# Corresponds to the JSON property `topologyManager`
|
@@ -5283,6 +5292,7 @@ module Google
|
|
5283
5292
|
@insecure_kubelet_readonly_port_enabled = args[:insecure_kubelet_readonly_port_enabled] if args.key?(:insecure_kubelet_readonly_port_enabled)
|
5284
5293
|
@memory_manager = args[:memory_manager] if args.key?(:memory_manager)
|
5285
5294
|
@pod_pids_limit = args[:pod_pids_limit] if args.key?(:pod_pids_limit)
|
5295
|
+
@single_process_oom_kill = args[:single_process_oom_kill] if args.key?(:single_process_oom_kill)
|
5286
5296
|
@topology_manager = args[:topology_manager] if args.key?(:topology_manager)
|
5287
5297
|
end
|
5288
5298
|
end
|
@@ -5419,6 +5429,14 @@ module Google
|
|
5419
5429
|
# @return [String]
|
5420
5430
|
attr_accessor :pod_range
|
5421
5431
|
|
5432
|
+
# Output only. The subnetwork path for the node pool. Format: projects/`project`/
|
5433
|
+
# regions/`region`/subnetworks/`subnetwork` If the cluster is associated with
|
5434
|
+
# multiple subnetworks, the subnetwork for the node pool is picked based on the
|
5435
|
+
# IP utilization during node pool creation and is immutable.
|
5436
|
+
# Corresponds to the JSON property `subnetwork`
|
5437
|
+
# @return [String]
|
5438
|
+
attr_accessor :subnetwork
|
5439
|
+
|
5422
5440
|
def initialize(**args)
|
5423
5441
|
update!(**args)
|
5424
5442
|
end
|
@@ -5434,6 +5452,7 @@ module Google
|
|
5434
5452
|
@pod_ipv4_cidr_block = args[:pod_ipv4_cidr_block] if args.key?(:pod_ipv4_cidr_block)
|
5435
5453
|
@pod_ipv4_range_utilization = args[:pod_ipv4_range_utilization] if args.key?(:pod_ipv4_range_utilization)
|
5436
5454
|
@pod_range = args[:pod_range] if args.key?(:pod_range)
|
5455
|
+
@subnetwork = args[:subnetwork] if args.key?(:subnetwork)
|
5437
5456
|
end
|
5438
5457
|
end
|
5439
5458
|
|
@@ -7853,6 +7872,13 @@ module Google
|
|
7853
7872
|
class SoleTenantConfig
|
7854
7873
|
include Google::Apis::Core::Hashable
|
7855
7874
|
|
7875
|
+
# Optional. The minimum number of virtual CPUs this instance will consume when
|
7876
|
+
# running on a sole-tenant node. This field can only be set if the node pool is
|
7877
|
+
# created in a shared sole-tenant node group.
|
7878
|
+
# Corresponds to the JSON property `minNodeCpus`
|
7879
|
+
# @return [Fixnum]
|
7880
|
+
attr_accessor :min_node_cpus
|
7881
|
+
|
7856
7882
|
# NodeAffinities used to match to a shared sole tenant node group.
|
7857
7883
|
# Corresponds to the JSON property `nodeAffinities`
|
7858
7884
|
# @return [Array<Google::Apis::ContainerV1::NodeAffinity>]
|
@@ -7864,6 +7890,7 @@ module Google
|
|
7864
7890
|
|
7865
7891
|
# Update properties of this object
|
7866
7892
|
def update!(**args)
|
7893
|
+
@min_node_cpus = args[:min_node_cpus] if args.key?(:min_node_cpus)
|
7867
7894
|
@node_affinities = args[:node_affinities] if args.key?(:node_affinities)
|
7868
7895
|
end
|
7869
7896
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContainerV1
|
18
18
|
# Version of the google-apis-container_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.99.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250617"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2616,6 +2616,7 @@ module Google
|
|
2616
2616
|
property :memory_manager, as: 'memoryManager', class: Google::Apis::ContainerV1::MemoryManager, decorator: Google::Apis::ContainerV1::MemoryManager::Representation
|
2617
2617
|
|
2618
2618
|
property :pod_pids_limit, :numeric_string => true, as: 'podPidsLimit'
|
2619
|
+
property :single_process_oom_kill, as: 'singleProcessOomKill'
|
2619
2620
|
property :topology_manager, as: 'topologyManager', class: Google::Apis::ContainerV1::TopologyManager, decorator: Google::Apis::ContainerV1::TopologyManager::Representation
|
2620
2621
|
|
2621
2622
|
end
|
@@ -2654,6 +2655,7 @@ module Google
|
|
2654
2655
|
property :pod_ipv4_cidr_block, as: 'podIpv4CidrBlock'
|
2655
2656
|
property :pod_ipv4_range_utilization, as: 'podIpv4RangeUtilization'
|
2656
2657
|
property :pod_range, as: 'podRange'
|
2658
|
+
property :subnetwork, as: 'subnetwork'
|
2657
2659
|
end
|
2658
2660
|
end
|
2659
2661
|
|
@@ -3267,6 +3269,7 @@ module Google
|
|
3267
3269
|
class SoleTenantConfig
|
3268
3270
|
# @private
|
3269
3271
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3272
|
+
property :min_node_cpus, as: 'minNodeCpus'
|
3270
3273
|
collection :node_affinities, as: 'nodeAffinities', class: Google::Apis::ContainerV1::NodeAffinity, decorator: Google::Apis::ContainerV1::NodeAffinity::Representation
|
3271
3274
|
|
3272
3275
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-container_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.99.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.99.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|