google-apis-container_v1beta1 0.87.0 → 0.89.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: 36548a23745a732aa431a985d09e9c47c82d6a62dcbafcc9e60f8ee9bd4c6836
|
4
|
+
data.tar.gz: 07f1862f5025ccacdb6583ccfffd2a96342bef8db2773cc6725de8bd3d65ab7a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: df22bba7a78197c9bbcc427c94fc4232fb2363ef511c0641ce8d6cd0665c558a0119f39b5102222634ba2c3a8dc7ca3ef34ed3b555d411edfe1408b432540e88
|
7
|
+
data.tar.gz: 51c98b4b4b7bb1ad5c024f34bd233bc9128e4ad3cab8f99cc49fc7c646a25df7834e80eb979396eabf21c9bfb5ee564dccb92f9ffbc456415d4b9b4a21c0a19a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-container_v1beta1
|
2
2
|
|
3
|
+
### v0.89.0 (2025-08-03)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250725
|
6
|
+
|
7
|
+
### v0.88.0 (2025-07-13)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250701
|
10
|
+
|
3
11
|
### v0.87.0 (2025-06-29)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250617
|
@@ -270,6 +270,11 @@ module Google
|
|
270
270
|
# @return [Google::Apis::ContainerV1beta1::KubernetesDashboard]
|
271
271
|
attr_accessor :kubernetes_dashboard
|
272
272
|
|
273
|
+
# Configuration for the Lustre CSI driver.
|
274
|
+
# Corresponds to the JSON property `lustreCsiDriverConfig`
|
275
|
+
# @return [Google::Apis::ContainerV1beta1::LustreCsiDriverConfig]
|
276
|
+
attr_accessor :lustre_csi_driver_config
|
277
|
+
|
273
278
|
# Configuration for NetworkPolicy. This only tracks whether the addon is enabled
|
274
279
|
# or not on the Master, it does not track whether network policy is enabled for
|
275
280
|
# the nodes.
|
@@ -311,6 +316,7 @@ module Google
|
|
311
316
|
@istio_config = args[:istio_config] if args.key?(:istio_config)
|
312
317
|
@kalm_config = args[:kalm_config] if args.key?(:kalm_config)
|
313
318
|
@kubernetes_dashboard = args[:kubernetes_dashboard] if args.key?(:kubernetes_dashboard)
|
319
|
+
@lustre_csi_driver_config = args[:lustre_csi_driver_config] if args.key?(:lustre_csi_driver_config)
|
314
320
|
@network_policy_config = args[:network_policy_config] if args.key?(:network_policy_config)
|
315
321
|
@parallelstore_csi_driver_config = args[:parallelstore_csi_driver_config] if args.key?(:parallelstore_csi_driver_config)
|
316
322
|
@ray_operator_config = args[:ray_operator_config] if args.key?(:ray_operator_config)
|
@@ -439,12 +445,19 @@ module Google
|
|
439
445
|
class AutoIpamConfig
|
440
446
|
include Google::Apis::Core::Hashable
|
441
447
|
|
448
|
+
# The flag that enables Auto IPAM on this cluster
|
449
|
+
# Corresponds to the JSON property `enabled`
|
450
|
+
# @return [Boolean]
|
451
|
+
attr_accessor :enabled
|
452
|
+
alias_method :enabled?, :enabled
|
453
|
+
|
442
454
|
def initialize(**args)
|
443
455
|
update!(**args)
|
444
456
|
end
|
445
457
|
|
446
458
|
# Update properties of this object
|
447
459
|
def update!(**args)
|
460
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
448
461
|
end
|
449
462
|
end
|
450
463
|
|
@@ -512,6 +525,12 @@ module Google
|
|
512
525
|
attr_accessor :enabled
|
513
526
|
alias_method :enabled?, :enabled
|
514
527
|
|
528
|
+
# PrivilegedAdmissionConfig stores the list of authorized allowlist paths for
|
529
|
+
# the cluster.
|
530
|
+
# Corresponds to the JSON property `privilegedAdmissionConfig`
|
531
|
+
# @return [Google::Apis::ContainerV1beta1::PrivilegedAdmissionConfig]
|
532
|
+
attr_accessor :privileged_admission_config
|
533
|
+
|
515
534
|
# WorkloadPolicyConfig is the configuration related to GCW workload policy
|
516
535
|
# Corresponds to the JSON property `workloadPolicyConfig`
|
517
536
|
# @return [Google::Apis::ContainerV1beta1::WorkloadPolicyConfig]
|
@@ -525,6 +544,7 @@ module Google
|
|
525
544
|
def update!(**args)
|
526
545
|
@conversion_status = args[:conversion_status] if args.key?(:conversion_status)
|
527
546
|
@enabled = args[:enabled] if args.key?(:enabled)
|
547
|
+
@privileged_admission_config = args[:privileged_admission_config] if args.key?(:privileged_admission_config)
|
528
548
|
@workload_policy_config = args[:workload_policy_config] if args.key?(:workload_policy_config)
|
529
549
|
end
|
530
550
|
end
|
@@ -757,20 +777,6 @@ module Google
|
|
757
777
|
end
|
758
778
|
end
|
759
779
|
|
760
|
-
# Autoscaled rollout policy uses cluster autoscaler during blue-green upgrades
|
761
|
-
# to scale both the green and blue pools.
|
762
|
-
class AutoscaledRolloutPolicy
|
763
|
-
include Google::Apis::Core::Hashable
|
764
|
-
|
765
|
-
def initialize(**args)
|
766
|
-
update!(**args)
|
767
|
-
end
|
768
|
-
|
769
|
-
# Update properties of this object
|
770
|
-
def update!(**args)
|
771
|
-
end
|
772
|
-
end
|
773
|
-
|
774
780
|
# Deprecated.
|
775
781
|
class AvailableVersion
|
776
782
|
include Google::Apis::Core::Hashable
|
@@ -930,12 +936,6 @@ module Google
|
|
930
936
|
class BlueGreenSettings
|
931
937
|
include Google::Apis::Core::Hashable
|
932
938
|
|
933
|
-
# Autoscaled rollout policy uses cluster autoscaler during blue-green upgrades
|
934
|
-
# to scale both the green and blue pools.
|
935
|
-
# Corresponds to the JSON property `autoscaledRolloutPolicy`
|
936
|
-
# @return [Google::Apis::ContainerV1beta1::AutoscaledRolloutPolicy]
|
937
|
-
attr_accessor :autoscaled_rollout_policy
|
938
|
-
|
939
939
|
# Time needed after draining entire blue pool. After this period, blue pool will
|
940
940
|
# be cleaned up.
|
941
941
|
# Corresponds to the JSON property `nodePoolSoakDuration`
|
@@ -953,12 +953,48 @@ module Google
|
|
953
953
|
|
954
954
|
# Update properties of this object
|
955
955
|
def update!(**args)
|
956
|
-
@autoscaled_rollout_policy = args[:autoscaled_rollout_policy] if args.key?(:autoscaled_rollout_policy)
|
957
956
|
@node_pool_soak_duration = args[:node_pool_soak_duration] if args.key?(:node_pool_soak_duration)
|
958
957
|
@standard_rollout_policy = args[:standard_rollout_policy] if args.key?(:standard_rollout_policy)
|
959
958
|
end
|
960
959
|
end
|
961
960
|
|
961
|
+
# BootDisk specifies the boot disk configuration for nodepools.
|
962
|
+
class BootDisk
|
963
|
+
include Google::Apis::Core::Hashable
|
964
|
+
|
965
|
+
# Disk type of the boot disk. (i.e. Hyperdisk-Balanced, PD-Balanced, etc.)
|
966
|
+
# Corresponds to the JSON property `diskType`
|
967
|
+
# @return [String]
|
968
|
+
attr_accessor :disk_type
|
969
|
+
|
970
|
+
# For Hyperdisk-Balanced only, the provisioned IOPS config value.
|
971
|
+
# Corresponds to the JSON property `provisionedIops`
|
972
|
+
# @return [Fixnum]
|
973
|
+
attr_accessor :provisioned_iops
|
974
|
+
|
975
|
+
# For Hyperdisk-Balanced only, the provisioned throughput config value.
|
976
|
+
# Corresponds to the JSON property `provisionedThroughput`
|
977
|
+
# @return [Fixnum]
|
978
|
+
attr_accessor :provisioned_throughput
|
979
|
+
|
980
|
+
# Disk size in GB. Replaces NodeConfig.disk_size_gb
|
981
|
+
# Corresponds to the JSON property `sizeGb`
|
982
|
+
# @return [Fixnum]
|
983
|
+
attr_accessor :size_gb
|
984
|
+
|
985
|
+
def initialize(**args)
|
986
|
+
update!(**args)
|
987
|
+
end
|
988
|
+
|
989
|
+
# Update properties of this object
|
990
|
+
def update!(**args)
|
991
|
+
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
992
|
+
@provisioned_iops = args[:provisioned_iops] if args.key?(:provisioned_iops)
|
993
|
+
@provisioned_throughput = args[:provisioned_throughput] if args.key?(:provisioned_throughput)
|
994
|
+
@size_gb = args[:size_gb] if args.key?(:size_gb)
|
995
|
+
end
|
996
|
+
end
|
997
|
+
|
962
998
|
# CancelOperationRequest cancels a single operation.
|
963
999
|
class CancelOperationRequest
|
964
1000
|
include Google::Apis::Core::Hashable
|
@@ -1821,6 +1857,11 @@ module Google
|
|
1821
1857
|
# @return [String]
|
1822
1858
|
attr_accessor :autoscaling_profile
|
1823
1859
|
|
1860
|
+
# DefaultComputeClassConfig defines default compute class configuration.
|
1861
|
+
# Corresponds to the JSON property `defaultComputeClassConfig`
|
1862
|
+
# @return [Google::Apis::ContainerV1beta1::DefaultComputeClassConfig]
|
1863
|
+
attr_accessor :default_compute_class_config
|
1864
|
+
|
1824
1865
|
# Enables automatic node pool creation and deletion.
|
1825
1866
|
# Corresponds to the JSON property `enableNodeAutoprovisioning`
|
1826
1867
|
# @return [Boolean]
|
@@ -1842,6 +1883,7 @@ module Google
|
|
1842
1883
|
@autoprovisioning_locations = args[:autoprovisioning_locations] if args.key?(:autoprovisioning_locations)
|
1843
1884
|
@autoprovisioning_node_pool_defaults = args[:autoprovisioning_node_pool_defaults] if args.key?(:autoprovisioning_node_pool_defaults)
|
1844
1885
|
@autoscaling_profile = args[:autoscaling_profile] if args.key?(:autoscaling_profile)
|
1886
|
+
@default_compute_class_config = args[:default_compute_class_config] if args.key?(:default_compute_class_config)
|
1845
1887
|
@enable_node_autoprovisioning = args[:enable_node_autoprovisioning] if args.key?(:enable_node_autoprovisioning)
|
1846
1888
|
@resource_limits = args[:resource_limits] if args.key?(:resource_limits)
|
1847
1889
|
end
|
@@ -3043,6 +3085,26 @@ module Google
|
|
3043
3085
|
end
|
3044
3086
|
end
|
3045
3087
|
|
3088
|
+
# DefaultComputeClassConfig defines default compute class configuration.
|
3089
|
+
class DefaultComputeClassConfig
|
3090
|
+
include Google::Apis::Core::Hashable
|
3091
|
+
|
3092
|
+
# Enables default compute class.
|
3093
|
+
# Corresponds to the JSON property `enabled`
|
3094
|
+
# @return [Boolean]
|
3095
|
+
attr_accessor :enabled
|
3096
|
+
alias_method :enabled?, :enabled
|
3097
|
+
|
3098
|
+
def initialize(**args)
|
3099
|
+
update!(**args)
|
3100
|
+
end
|
3101
|
+
|
3102
|
+
# Update properties of this object
|
3103
|
+
def update!(**args)
|
3104
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
3105
|
+
end
|
3106
|
+
end
|
3107
|
+
|
3046
3108
|
# DefaultSnatStatus contains the desired state of whether default sNAT should be
|
3047
3109
|
# disabled on the cluster.
|
3048
3110
|
class DefaultSnatStatus
|
@@ -3236,6 +3298,214 @@ module Google
|
|
3236
3298
|
end
|
3237
3299
|
end
|
3238
3300
|
|
3301
|
+
# Eviction grace periods are grace periods for each eviction signal.
|
3302
|
+
class EvictionGracePeriod
|
3303
|
+
include Google::Apis::Core::Hashable
|
3304
|
+
|
3305
|
+
# Optional. Grace period for eviction due to imagefs available signal. Sample
|
3306
|
+
# format: "10s". Must be >= 0. See https://kubernetes.io/docs/concepts/
|
3307
|
+
# scheduling-eviction/node-pressure-eviction/#eviction-signals
|
3308
|
+
# Corresponds to the JSON property `imagefsAvailable`
|
3309
|
+
# @return [String]
|
3310
|
+
attr_accessor :imagefs_available
|
3311
|
+
|
3312
|
+
# Optional. Grace period for eviction due to imagefs inodes free signal. Sample
|
3313
|
+
# format: "10s". Must be >= 0. See https://kubernetes.io/docs/concepts/
|
3314
|
+
# scheduling-eviction/node-pressure-eviction/#eviction-signals
|
3315
|
+
# Corresponds to the JSON property `imagefsInodesFree`
|
3316
|
+
# @return [String]
|
3317
|
+
attr_accessor :imagefs_inodes_free
|
3318
|
+
|
3319
|
+
# Optional. Grace period for eviction due to memory available signal. Sample
|
3320
|
+
# format: "10s". Must be >= 0. See https://kubernetes.io/docs/concepts/
|
3321
|
+
# scheduling-eviction/node-pressure-eviction/#eviction-signals
|
3322
|
+
# Corresponds to the JSON property `memoryAvailable`
|
3323
|
+
# @return [String]
|
3324
|
+
attr_accessor :memory_available
|
3325
|
+
|
3326
|
+
# Optional. Grace period for eviction due to nodefs available signal. Sample
|
3327
|
+
# format: "10s". Must be >= 0. See https://kubernetes.io/docs/concepts/
|
3328
|
+
# scheduling-eviction/node-pressure-eviction/#eviction-signals
|
3329
|
+
# Corresponds to the JSON property `nodefsAvailable`
|
3330
|
+
# @return [String]
|
3331
|
+
attr_accessor :nodefs_available
|
3332
|
+
|
3333
|
+
# Optional. Grace period for eviction due to nodefs inodes free signal. Sample
|
3334
|
+
# format: "10s". Must be >= 0. See https://kubernetes.io/docs/concepts/
|
3335
|
+
# scheduling-eviction/node-pressure-eviction/#eviction-signals
|
3336
|
+
# Corresponds to the JSON property `nodefsInodesFree`
|
3337
|
+
# @return [String]
|
3338
|
+
attr_accessor :nodefs_inodes_free
|
3339
|
+
|
3340
|
+
# Optional. Grace period for eviction due to pid available signal. Sample format:
|
3341
|
+
# "10s". Must be >= 0. See https://kubernetes.io/docs/concepts/scheduling-
|
3342
|
+
# eviction/node-pressure-eviction/#eviction-signals
|
3343
|
+
# Corresponds to the JSON property `pidAvailable`
|
3344
|
+
# @return [String]
|
3345
|
+
attr_accessor :pid_available
|
3346
|
+
|
3347
|
+
def initialize(**args)
|
3348
|
+
update!(**args)
|
3349
|
+
end
|
3350
|
+
|
3351
|
+
# Update properties of this object
|
3352
|
+
def update!(**args)
|
3353
|
+
@imagefs_available = args[:imagefs_available] if args.key?(:imagefs_available)
|
3354
|
+
@imagefs_inodes_free = args[:imagefs_inodes_free] if args.key?(:imagefs_inodes_free)
|
3355
|
+
@memory_available = args[:memory_available] if args.key?(:memory_available)
|
3356
|
+
@nodefs_available = args[:nodefs_available] if args.key?(:nodefs_available)
|
3357
|
+
@nodefs_inodes_free = args[:nodefs_inodes_free] if args.key?(:nodefs_inodes_free)
|
3358
|
+
@pid_available = args[:pid_available] if args.key?(:pid_available)
|
3359
|
+
end
|
3360
|
+
end
|
3361
|
+
|
3362
|
+
# Eviction minimum reclaims are the resource amounts of minimum reclaims for
|
3363
|
+
# each eviction signal.
|
3364
|
+
class EvictionMinimumReclaim
|
3365
|
+
include Google::Apis::Core::Hashable
|
3366
|
+
|
3367
|
+
# Optional. Minimum reclaim for eviction due to imagefs available signal. Only
|
3368
|
+
# take percentage value for now. Sample format: "10%". Must be <=10%. See https:/
|
3369
|
+
# /kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#
|
3370
|
+
# eviction-signals
|
3371
|
+
# Corresponds to the JSON property `imagefsAvailable`
|
3372
|
+
# @return [String]
|
3373
|
+
attr_accessor :imagefs_available
|
3374
|
+
|
3375
|
+
# Optional. Minimum reclaim for eviction due to imagefs inodes free signal. Only
|
3376
|
+
# take percentage value for now. Sample format: "10%". Must be <=10%. See https:/
|
3377
|
+
# /kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#
|
3378
|
+
# eviction-signals
|
3379
|
+
# Corresponds to the JSON property `imagefsInodesFree`
|
3380
|
+
# @return [String]
|
3381
|
+
attr_accessor :imagefs_inodes_free
|
3382
|
+
|
3383
|
+
# Optional. Minimum reclaim for eviction due to memory available signal. Only
|
3384
|
+
# take percentage value for now. Sample format: "10%". Must be <=10%. See https:/
|
3385
|
+
# /kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#
|
3386
|
+
# eviction-signals
|
3387
|
+
# Corresponds to the JSON property `memoryAvailable`
|
3388
|
+
# @return [String]
|
3389
|
+
attr_accessor :memory_available
|
3390
|
+
|
3391
|
+
# Optional. Minimum reclaim for eviction due to nodefs available signal. Only
|
3392
|
+
# take percentage value for now. Sample format: "10%". Must be <=10%. See https:/
|
3393
|
+
# /kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#
|
3394
|
+
# eviction-signals
|
3395
|
+
# Corresponds to the JSON property `nodefsAvailable`
|
3396
|
+
# @return [String]
|
3397
|
+
attr_accessor :nodefs_available
|
3398
|
+
|
3399
|
+
# Optional. Minimum reclaim for eviction due to nodefs inodes free signal. Only
|
3400
|
+
# take percentage value for now. Sample format: "10%". Must be <=10%. See https:/
|
3401
|
+
# /kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#
|
3402
|
+
# eviction-signals
|
3403
|
+
# Corresponds to the JSON property `nodefsInodesFree`
|
3404
|
+
# @return [String]
|
3405
|
+
attr_accessor :nodefs_inodes_free
|
3406
|
+
|
3407
|
+
# Optional. Minimum reclaim for eviction due to pid available signal. Only take
|
3408
|
+
# percentage value for now. Sample format: "10%". Must be <=10%. See https://
|
3409
|
+
# kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#
|
3410
|
+
# eviction-signals
|
3411
|
+
# Corresponds to the JSON property `pidAvailable`
|
3412
|
+
# @return [String]
|
3413
|
+
attr_accessor :pid_available
|
3414
|
+
|
3415
|
+
def initialize(**args)
|
3416
|
+
update!(**args)
|
3417
|
+
end
|
3418
|
+
|
3419
|
+
# Update properties of this object
|
3420
|
+
def update!(**args)
|
3421
|
+
@imagefs_available = args[:imagefs_available] if args.key?(:imagefs_available)
|
3422
|
+
@imagefs_inodes_free = args[:imagefs_inodes_free] if args.key?(:imagefs_inodes_free)
|
3423
|
+
@memory_available = args[:memory_available] if args.key?(:memory_available)
|
3424
|
+
@nodefs_available = args[:nodefs_available] if args.key?(:nodefs_available)
|
3425
|
+
@nodefs_inodes_free = args[:nodefs_inodes_free] if args.key?(:nodefs_inodes_free)
|
3426
|
+
@pid_available = args[:pid_available] if args.key?(:pid_available)
|
3427
|
+
end
|
3428
|
+
end
|
3429
|
+
|
3430
|
+
# Eviction signals are the current state of a particular resource at a specific
|
3431
|
+
# point in time. The kubelet uses eviction signals to make eviction decisions by
|
3432
|
+
# comparing the signals to eviction thresholds, which are the minimum amount of
|
3433
|
+
# the resource that should be available on the node.
|
3434
|
+
class EvictionSignals
|
3435
|
+
include Google::Apis::Core::Hashable
|
3436
|
+
|
3437
|
+
# Optional. Amount of storage available on filesystem that container runtime
|
3438
|
+
# uses for storing images layers. If the container filesystem and image
|
3439
|
+
# filesystem are not separate, then imagefs can store both image layers and
|
3440
|
+
# writeable layers. Defines the amount of "imagefs.available" signal in kubelet.
|
3441
|
+
# Default is unset, if not specified in the kubelet config. Sample format: "30%".
|
3442
|
+
# Must be >= 15%. See https://kubernetes.io/docs/concepts/scheduling-eviction/
|
3443
|
+
# node-pressure-eviction/#eviction-signals
|
3444
|
+
# Corresponds to the JSON property `imagefsAvailable`
|
3445
|
+
# @return [String]
|
3446
|
+
attr_accessor :imagefs_available
|
3447
|
+
|
3448
|
+
# Optional. Amount of inodes available on filesystem that container runtime uses
|
3449
|
+
# for storing images layers. Defines the amount of "imagefs.inodesFree" signal
|
3450
|
+
# in kubelet. Default is unset, if not specified in the kubelet config. Linux
|
3451
|
+
# only. Sample format: "30%". Must be >= 5%. See https://kubernetes.io/docs/
|
3452
|
+
# concepts/scheduling-eviction/node-pressure-eviction/#eviction-signals
|
3453
|
+
# Corresponds to the JSON property `imagefsInodesFree`
|
3454
|
+
# @return [String]
|
3455
|
+
attr_accessor :imagefs_inodes_free
|
3456
|
+
|
3457
|
+
# Optional. Memory available (i.e. capacity - workingSet), in bytes. Defines the
|
3458
|
+
# amount of "memory.available" signal in kubelet. Default is unset, if not
|
3459
|
+
# specified in the kubelet config. Format: positive number + unit, e.g. 100Ki,
|
3460
|
+
# 10Mi, 5Gi. Valid units are Ki, Mi, Gi. Must be >= 100Mi and <= 50% of the node'
|
3461
|
+
# s memory. See https://kubernetes.io/docs/concepts/scheduling-eviction/node-
|
3462
|
+
# pressure-eviction/#eviction-signals
|
3463
|
+
# Corresponds to the JSON property `memoryAvailable`
|
3464
|
+
# @return [String]
|
3465
|
+
attr_accessor :memory_available
|
3466
|
+
|
3467
|
+
# Optional. Amount of storage available on filesystem that kubelet uses for
|
3468
|
+
# volumes, daemon logs, etc. Defines the amount of "nodefs.available" signal in
|
3469
|
+
# kubelet. Default is unset, if not specified in the kubelet config. Sample
|
3470
|
+
# format: "30%". Must be >= 10%. See https://kubernetes.io/docs/concepts/
|
3471
|
+
# scheduling-eviction/node-pressure-eviction/#eviction-signals
|
3472
|
+
# Corresponds to the JSON property `nodefsAvailable`
|
3473
|
+
# @return [String]
|
3474
|
+
attr_accessor :nodefs_available
|
3475
|
+
|
3476
|
+
# Optional. Amount of inodes available on filesystem that kubelet uses for
|
3477
|
+
# volumes, daemon logs, etc. Defines the amount of "nodefs.inodesFree" signal in
|
3478
|
+
# kubelet. Default is unset, if not specified in the kubelet config. Linux only.
|
3479
|
+
# It takses percentage value for now. Sample format: "30%". Must be >= 5% and <=
|
3480
|
+
# 50%. See https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-
|
3481
|
+
# eviction/#eviction-signals
|
3482
|
+
# Corresponds to the JSON property `nodefsInodesFree`
|
3483
|
+
# @return [String]
|
3484
|
+
attr_accessor :nodefs_inodes_free
|
3485
|
+
|
3486
|
+
# Optional. Amount of PID available for pod allocation. Defines the amount of "
|
3487
|
+
# pid.available" signal in kubelet. Default is unset, if not specified in the
|
3488
|
+
# kubelet config. Sample format: "30%". Must be >= 10%. See https://kubernetes.
|
3489
|
+
# io/docs/concepts/scheduling-eviction/node-pressure-eviction/#eviction-signals
|
3490
|
+
# Corresponds to the JSON property `pidAvailable`
|
3491
|
+
# @return [String]
|
3492
|
+
attr_accessor :pid_available
|
3493
|
+
|
3494
|
+
def initialize(**args)
|
3495
|
+
update!(**args)
|
3496
|
+
end
|
3497
|
+
|
3498
|
+
# Update properties of this object
|
3499
|
+
def update!(**args)
|
3500
|
+
@imagefs_available = args[:imagefs_available] if args.key?(:imagefs_available)
|
3501
|
+
@imagefs_inodes_free = args[:imagefs_inodes_free] if args.key?(:imagefs_inodes_free)
|
3502
|
+
@memory_available = args[:memory_available] if args.key?(:memory_available)
|
3503
|
+
@nodefs_available = args[:nodefs_available] if args.key?(:nodefs_available)
|
3504
|
+
@nodefs_inodes_free = args[:nodefs_inodes_free] if args.key?(:nodefs_inodes_free)
|
3505
|
+
@pid_available = args[:pid_available] if args.key?(:pid_available)
|
3506
|
+
end
|
3507
|
+
end
|
3508
|
+
|
3239
3509
|
# Configuration of Fast Socket feature.
|
3240
3510
|
class FastSocket
|
3241
3511
|
include Google::Apis::Core::Hashable
|
@@ -3289,6 +3559,11 @@ module Google
|
|
3289
3559
|
# @return [String]
|
3290
3560
|
attr_accessor :membership
|
3291
3561
|
|
3562
|
+
# The type of the cluster's fleet membership.
|
3563
|
+
# Corresponds to the JSON property `membershipType`
|
3564
|
+
# @return [String]
|
3565
|
+
attr_accessor :membership_type
|
3566
|
+
|
3292
3567
|
# Output only. Whether the cluster has been registered through the fleet API.
|
3293
3568
|
# Corresponds to the JSON property `preRegistered`
|
3294
3569
|
# @return [Boolean]
|
@@ -3309,6 +3584,7 @@ module Google
|
|
3309
3584
|
# Update properties of this object
|
3310
3585
|
def update!(**args)
|
3311
3586
|
@membership = args[:membership] if args.key?(:membership)
|
3587
|
+
@membership_type = args[:membership_type] if args.key?(:membership_type)
|
3312
3588
|
@pre_registered = args[:pre_registered] if args.key?(:pre_registered)
|
3313
3589
|
@project = args[:project] if args.key?(:project)
|
3314
3590
|
end
|
@@ -4291,16 +4567,38 @@ module Google
|
|
4291
4567
|
# the nodes. The following parameters are supported. net.core.busy_poll net.core.
|
4292
4568
|
# busy_read net.core.netdev_max_backlog net.core.rmem_max net.core.rmem_default
|
4293
4569
|
# net.core.wmem_default net.core.wmem_max net.core.optmem_max net.core.somaxconn
|
4294
|
-
# net.ipv4.tcp_rmem net.ipv4.tcp_wmem net.ipv4.tcp_tw_reuse net.
|
4295
|
-
#
|
4296
|
-
#
|
4297
|
-
# nf_conntrack_tcp_timeout_time_wait net.netfilter.
|
4570
|
+
# net.ipv4.tcp_rmem net.ipv4.tcp_wmem net.ipv4.tcp_tw_reuse net.ipv4.
|
4571
|
+
# tcp_max_orphans net.netfilter.nf_conntrack_max net.netfilter.
|
4572
|
+
# nf_conntrack_buckets net.netfilter.nf_conntrack_tcp_timeout_close_wait net.
|
4573
|
+
# netfilter.nf_conntrack_tcp_timeout_time_wait net.netfilter.
|
4298
4574
|
# nf_conntrack_tcp_timeout_established net.netfilter.nf_conntrack_acct kernel.
|
4299
|
-
# shmmni kernel.shmmax kernel.shmall
|
4575
|
+
# shmmni kernel.shmmax kernel.shmall fs.aio-max-nr fs.file-max fs.inotify.
|
4576
|
+
# max_user_instances fs.inotify.max_user_watches fs.nr_open vm.
|
4577
|
+
# dirty_background_ratio vm.dirty_expire_centisecs vm.dirty_ratio vm.
|
4578
|
+
# dirty_writeback_centisecs vm.max_map_count vm.overcommit_memory vm.
|
4579
|
+
# overcommit_ratio vm.vfs_cache_pressure vm.swappiness vm.watermark_scale_factor
|
4580
|
+
# vm.min_free_kbytes
|
4300
4581
|
# Corresponds to the JSON property `sysctls`
|
4301
4582
|
# @return [Hash<String,String>]
|
4302
4583
|
attr_accessor :sysctls
|
4303
4584
|
|
4585
|
+
# Optional. Defines the transparent hugepage defrag configuration on the node.
|
4586
|
+
# VM hugepage allocation can be managed by either limiting defragmentation for
|
4587
|
+
# delayed allocation or skipping it entirely for immediate allocation only. See
|
4588
|
+
# https://docs.kernel.org/admin-guide/mm/transhuge.html for more details.
|
4589
|
+
# Corresponds to the JSON property `transparentHugepageDefrag`
|
4590
|
+
# @return [String]
|
4591
|
+
attr_accessor :transparent_hugepage_defrag
|
4592
|
+
|
4593
|
+
# Optional. Transparent hugepage support for anonymous memory can be entirely
|
4594
|
+
# disabled (mostly for debugging purposes) or only enabled inside MADV_HUGEPAGE
|
4595
|
+
# regions (to avoid the risk of consuming more memory resources) or enabled
|
4596
|
+
# system wide. See https://docs.kernel.org/admin-guide/mm/transhuge.html for
|
4597
|
+
# more details.
|
4598
|
+
# Corresponds to the JSON property `transparentHugepageEnabled`
|
4599
|
+
# @return [String]
|
4600
|
+
attr_accessor :transparent_hugepage_enabled
|
4601
|
+
|
4304
4602
|
def initialize(**args)
|
4305
4603
|
update!(**args)
|
4306
4604
|
end
|
@@ -4310,6 +4608,8 @@ module Google
|
|
4310
4608
|
@cgroup_mode = args[:cgroup_mode] if args.key?(:cgroup_mode)
|
4311
4609
|
@hugepages = args[:hugepages] if args.key?(:hugepages)
|
4312
4610
|
@sysctls = args[:sysctls] if args.key?(:sysctls)
|
4611
|
+
@transparent_hugepage_defrag = args[:transparent_hugepage_defrag] if args.key?(:transparent_hugepage_defrag)
|
4612
|
+
@transparent_hugepage_enabled = args[:transparent_hugepage_enabled] if args.key?(:transparent_hugepage_enabled)
|
4313
4613
|
end
|
4314
4614
|
end
|
4315
4615
|
|
@@ -4564,6 +4864,34 @@ module Google
|
|
4564
4864
|
end
|
4565
4865
|
end
|
4566
4866
|
|
4867
|
+
# Configuration for the Lustre CSI driver.
|
4868
|
+
class LustreCsiDriverConfig
|
4869
|
+
include Google::Apis::Core::Hashable
|
4870
|
+
|
4871
|
+
# If set to true, the Lustre CSI driver will install Lustre kernel modules using
|
4872
|
+
# port 6988.
|
4873
|
+
# Corresponds to the JSON property `enableLegacyLustrePort`
|
4874
|
+
# @return [Boolean]
|
4875
|
+
attr_accessor :enable_legacy_lustre_port
|
4876
|
+
alias_method :enable_legacy_lustre_port?, :enable_legacy_lustre_port
|
4877
|
+
|
4878
|
+
# Whether the Lustre CSI driver is enabled for this cluster.
|
4879
|
+
# Corresponds to the JSON property `enabled`
|
4880
|
+
# @return [Boolean]
|
4881
|
+
attr_accessor :enabled
|
4882
|
+
alias_method :enabled?, :enabled
|
4883
|
+
|
4884
|
+
def initialize(**args)
|
4885
|
+
update!(**args)
|
4886
|
+
end
|
4887
|
+
|
4888
|
+
# Update properties of this object
|
4889
|
+
def update!(**args)
|
4890
|
+
@enable_legacy_lustre_port = args[:enable_legacy_lustre_port] if args.key?(:enable_legacy_lustre_port)
|
4891
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
4892
|
+
end
|
4893
|
+
end
|
4894
|
+
|
4567
4895
|
# Represents the Maintenance exclusion option.
|
4568
4896
|
class MaintenanceExclusionOptions
|
4569
4897
|
include Google::Apis::Core::Hashable
|
@@ -5234,6 +5562,11 @@ module Google
|
|
5234
5562
|
# @return [Google::Apis::ContainerV1beta1::AdvancedMachineFeatures]
|
5235
5563
|
attr_accessor :advanced_machine_features
|
5236
5564
|
|
5565
|
+
# BootDisk specifies the boot disk configuration for nodepools.
|
5566
|
+
# Corresponds to the JSON property `bootDisk`
|
5567
|
+
# @return [Google::Apis::ContainerV1beta1::BootDisk]
|
5568
|
+
attr_accessor :boot_disk
|
5569
|
+
|
5237
5570
|
# The Customer Managed Encryption Key used to encrypt the boot disk attached to
|
5238
5571
|
# each node in the node pool. This should be of the form projects/[
|
5239
5572
|
# KEY_PROJECT_ID]/locations/[LOCATION]/keyRings/[RING_NAME]/cryptoKeys/[KEY_NAME]
|
@@ -5256,8 +5589,7 @@ module Google
|
|
5256
5589
|
attr_accessor :containerd_config
|
5257
5590
|
|
5258
5591
|
# Size of the disk attached to each node, specified in GB. The smallest allowed
|
5259
|
-
# disk size is 10GB.
|
5260
|
-
# fields. If unspecified, the default disk size is 100GB.
|
5592
|
+
# disk size is 10GB. If unspecified, the default disk size is 100GB.
|
5261
5593
|
# Corresponds to the JSON property `diskSizeGb`
|
5262
5594
|
# @return [Fixnum]
|
5263
5595
|
attr_accessor :disk_size_gb
|
@@ -5550,6 +5882,7 @@ module Google
|
|
5550
5882
|
def update!(**args)
|
5551
5883
|
@accelerators = args[:accelerators] if args.key?(:accelerators)
|
5552
5884
|
@advanced_machine_features = args[:advanced_machine_features] if args.key?(:advanced_machine_features)
|
5885
|
+
@boot_disk = args[:boot_disk] if args.key?(:boot_disk)
|
5553
5886
|
@boot_disk_kms_key = args[:boot_disk_kms_key] if args.key?(:boot_disk_kms_key)
|
5554
5887
|
@confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
|
5555
5888
|
@containerd_config = args[:containerd_config] if args.key?(:containerd_config)
|
@@ -5706,6 +6039,34 @@ module Google
|
|
5706
6039
|
# @return [String]
|
5707
6040
|
attr_accessor :cpu_manager_policy
|
5708
6041
|
|
6042
|
+
# Optional. eviction_max_pod_grace_period_seconds is the maximum allowed grace
|
6043
|
+
# period (in seconds) to use when terminating pods in response to a soft
|
6044
|
+
# eviction threshold being met. This value effectively caps the Pod's
|
6045
|
+
# terminationGracePeriodSeconds value during soft evictions. Default: 0. Range: [
|
6046
|
+
# 0, 300].
|
6047
|
+
# Corresponds to the JSON property `evictionMaxPodGracePeriodSeconds`
|
6048
|
+
# @return [Fixnum]
|
6049
|
+
attr_accessor :eviction_max_pod_grace_period_seconds
|
6050
|
+
|
6051
|
+
# Eviction minimum reclaims are the resource amounts of minimum reclaims for
|
6052
|
+
# each eviction signal.
|
6053
|
+
# Corresponds to the JSON property `evictionMinimumReclaim`
|
6054
|
+
# @return [Google::Apis::ContainerV1beta1::EvictionMinimumReclaim]
|
6055
|
+
attr_accessor :eviction_minimum_reclaim
|
6056
|
+
|
6057
|
+
# Eviction signals are the current state of a particular resource at a specific
|
6058
|
+
# point in time. The kubelet uses eviction signals to make eviction decisions by
|
6059
|
+
# comparing the signals to eviction thresholds, which are the minimum amount of
|
6060
|
+
# the resource that should be available on the node.
|
6061
|
+
# Corresponds to the JSON property `evictionSoft`
|
6062
|
+
# @return [Google::Apis::ContainerV1beta1::EvictionSignals]
|
6063
|
+
attr_accessor :eviction_soft
|
6064
|
+
|
6065
|
+
# Eviction grace periods are grace periods for each eviction signal.
|
6066
|
+
# Corresponds to the JSON property `evictionSoftGracePeriod`
|
6067
|
+
# @return [Google::Apis::ContainerV1beta1::EvictionGracePeriod]
|
6068
|
+
attr_accessor :eviction_soft_grace_period
|
6069
|
+
|
5709
6070
|
# Optional. Defines the percent of disk usage after which image garbage
|
5710
6071
|
# collection is always run. The percent is calculated as this field value out of
|
5711
6072
|
# 100. The value must be between 10 and 85, inclusive and greater than
|
@@ -5750,6 +6111,14 @@ module Google
|
|
5750
6111
|
attr_accessor :insecure_kubelet_readonly_port_enabled
|
5751
6112
|
alias_method :insecure_kubelet_readonly_port_enabled?, :insecure_kubelet_readonly_port_enabled
|
5752
6113
|
|
6114
|
+
# Optional. Defines the maximum number of image pulls in parallel. The range is
|
6115
|
+
# 2 to 5, inclusive. The default value is 2 or 3 depending on the disk type. See
|
6116
|
+
# https://kubernetes.io/docs/concepts/containers/images/#maximum-parallel-image-
|
6117
|
+
# pulls for more details.
|
6118
|
+
# Corresponds to the JSON property `maxParallelImagePulls`
|
6119
|
+
# @return [Fixnum]
|
6120
|
+
attr_accessor :max_parallel_image_pulls
|
6121
|
+
|
5753
6122
|
# The option enables the Kubernetes NUMA-aware Memory Manager feature. Detailed
|
5754
6123
|
# description about the feature can be found [here](https://kubernetes.io/docs/
|
5755
6124
|
# tasks/administer-cluster/memory-manager/).
|
@@ -5792,11 +6161,16 @@ module Google
|
|
5792
6161
|
@cpu_cfs_quota = args[:cpu_cfs_quota] if args.key?(:cpu_cfs_quota)
|
5793
6162
|
@cpu_cfs_quota_period = args[:cpu_cfs_quota_period] if args.key?(:cpu_cfs_quota_period)
|
5794
6163
|
@cpu_manager_policy = args[:cpu_manager_policy] if args.key?(:cpu_manager_policy)
|
6164
|
+
@eviction_max_pod_grace_period_seconds = args[:eviction_max_pod_grace_period_seconds] if args.key?(:eviction_max_pod_grace_period_seconds)
|
6165
|
+
@eviction_minimum_reclaim = args[:eviction_minimum_reclaim] if args.key?(:eviction_minimum_reclaim)
|
6166
|
+
@eviction_soft = args[:eviction_soft] if args.key?(:eviction_soft)
|
6167
|
+
@eviction_soft_grace_period = args[:eviction_soft_grace_period] if args.key?(:eviction_soft_grace_period)
|
5795
6168
|
@image_gc_high_threshold_percent = args[:image_gc_high_threshold_percent] if args.key?(:image_gc_high_threshold_percent)
|
5796
6169
|
@image_gc_low_threshold_percent = args[:image_gc_low_threshold_percent] if args.key?(:image_gc_low_threshold_percent)
|
5797
6170
|
@image_maximum_gc_age = args[:image_maximum_gc_age] if args.key?(:image_maximum_gc_age)
|
5798
6171
|
@image_minimum_gc_age = args[:image_minimum_gc_age] if args.key?(:image_minimum_gc_age)
|
5799
6172
|
@insecure_kubelet_readonly_port_enabled = args[:insecure_kubelet_readonly_port_enabled] if args.key?(:insecure_kubelet_readonly_port_enabled)
|
6173
|
+
@max_parallel_image_pulls = args[:max_parallel_image_pulls] if args.key?(:max_parallel_image_pulls)
|
5800
6174
|
@memory_manager = args[:memory_manager] if args.key?(:memory_manager)
|
5801
6175
|
@pod_pids_limit = args[:pod_pids_limit] if args.key?(:pod_pids_limit)
|
5802
6176
|
@single_process_oom_kill = args[:single_process_oom_kill] if args.key?(:single_process_oom_kill)
|
@@ -6966,6 +7340,31 @@ module Google
|
|
6966
7340
|
end
|
6967
7341
|
end
|
6968
7342
|
|
7343
|
+
# PrivilegedAdmissionConfig stores the list of authorized allowlist paths for
|
7344
|
+
# the cluster.
|
7345
|
+
class PrivilegedAdmissionConfig
|
7346
|
+
include Google::Apis::Core::Hashable
|
7347
|
+
|
7348
|
+
# The customer allowlist Cloud Storage paths for the cluster. These paths are
|
7349
|
+
# used with the `--autopilot-privileged-admission` flag to authorize privileged
|
7350
|
+
# workloads in Autopilot clusters. Paths can be GKE-owned, in the format `gke:///
|
7351
|
+
# /`, or customer-owned, in the format `gs:///`. Wildcards (`*`) are supported
|
7352
|
+
# to authorize all allowlists under specific paths or directories. Example: `gs:/
|
7353
|
+
# /my-bucket/*` will authorize all allowlists under the `my-bucket` bucket.
|
7354
|
+
# Corresponds to the JSON property `allowlistPaths`
|
7355
|
+
# @return [Array<String>]
|
7356
|
+
attr_accessor :allowlist_paths
|
7357
|
+
|
7358
|
+
def initialize(**args)
|
7359
|
+
update!(**args)
|
7360
|
+
end
|
7361
|
+
|
7362
|
+
# Update properties of this object
|
7363
|
+
def update!(**args)
|
7364
|
+
@allowlist_paths = args[:allowlist_paths] if args.key?(:allowlist_paths)
|
7365
|
+
end
|
7366
|
+
end
|
7367
|
+
|
6969
7368
|
# ProtectConfig defines the flags needed to enable/disable features for the
|
6970
7369
|
# Protect API.
|
6971
7370
|
class ProtectConfig
|
@@ -8980,6 +9379,11 @@ module Google
|
|
8980
9379
|
# @return [Array<Google::Apis::ContainerV1beta1::AcceleratorConfig>]
|
8981
9380
|
attr_accessor :accelerators
|
8982
9381
|
|
9382
|
+
# BootDisk specifies the boot disk configuration for nodepools.
|
9383
|
+
# Corresponds to the JSON property `bootDisk`
|
9384
|
+
# @return [Google::Apis::ContainerV1beta1::BootDisk]
|
9385
|
+
attr_accessor :boot_disk
|
9386
|
+
|
8983
9387
|
# Deprecated. The name of the cluster to upgrade. This field has been deprecated
|
8984
9388
|
# and replaced by the name field.
|
8985
9389
|
# Corresponds to the JSON property `clusterId`
|
@@ -9228,6 +9632,7 @@ module Google
|
|
9228
9632
|
# Update properties of this object
|
9229
9633
|
def update!(**args)
|
9230
9634
|
@accelerators = args[:accelerators] if args.key?(:accelerators)
|
9635
|
+
@boot_disk = args[:boot_disk] if args.key?(:boot_disk)
|
9231
9636
|
@cluster_id = args[:cluster_id] if args.key?(:cluster_id)
|
9232
9637
|
@confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
|
9233
9638
|
@containerd_config = args[:containerd_config] if args.key?(:containerd_config)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContainerV1beta1
|
18
18
|
# Version of the google-apis-container_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.89.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 = "20250725"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -130,12 +130,6 @@ module Google
|
|
130
130
|
include Google::Apis::Core::JsonObjectSupport
|
131
131
|
end
|
132
132
|
|
133
|
-
class AutoscaledRolloutPolicy
|
134
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
|
-
|
136
|
-
include Google::Apis::Core::JsonObjectSupport
|
137
|
-
end
|
138
|
-
|
139
133
|
class AvailableVersion
|
140
134
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
141
135
|
|
@@ -172,6 +166,12 @@ module Google
|
|
172
166
|
include Google::Apis::Core::JsonObjectSupport
|
173
167
|
end
|
174
168
|
|
169
|
+
class BootDisk
|
170
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
|
+
|
172
|
+
include Google::Apis::Core::JsonObjectSupport
|
173
|
+
end
|
174
|
+
|
175
175
|
class CancelOperationRequest
|
176
176
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
177
|
|
@@ -346,6 +346,12 @@ module Google
|
|
346
346
|
include Google::Apis::Core::JsonObjectSupport
|
347
347
|
end
|
348
348
|
|
349
|
+
class DefaultComputeClassConfig
|
350
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
351
|
+
|
352
|
+
include Google::Apis::Core::JsonObjectSupport
|
353
|
+
end
|
354
|
+
|
349
355
|
class DefaultSnatStatus
|
350
356
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
351
357
|
|
@@ -394,6 +400,24 @@ module Google
|
|
394
400
|
include Google::Apis::Core::JsonObjectSupport
|
395
401
|
end
|
396
402
|
|
403
|
+
class EvictionGracePeriod
|
404
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
405
|
+
|
406
|
+
include Google::Apis::Core::JsonObjectSupport
|
407
|
+
end
|
408
|
+
|
409
|
+
class EvictionMinimumReclaim
|
410
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
411
|
+
|
412
|
+
include Google::Apis::Core::JsonObjectSupport
|
413
|
+
end
|
414
|
+
|
415
|
+
class EvictionSignals
|
416
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
417
|
+
|
418
|
+
include Google::Apis::Core::JsonObjectSupport
|
419
|
+
end
|
420
|
+
|
397
421
|
class FastSocket
|
398
422
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
399
423
|
|
@@ -652,6 +676,12 @@ module Google
|
|
652
676
|
include Google::Apis::Core::JsonObjectSupport
|
653
677
|
end
|
654
678
|
|
679
|
+
class LustreCsiDriverConfig
|
680
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
681
|
+
|
682
|
+
include Google::Apis::Core::JsonObjectSupport
|
683
|
+
end
|
684
|
+
|
655
685
|
class MaintenanceExclusionOptions
|
656
686
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
657
687
|
|
@@ -940,6 +970,12 @@ module Google
|
|
940
970
|
include Google::Apis::Core::JsonObjectSupport
|
941
971
|
end
|
942
972
|
|
973
|
+
class PrivilegedAdmissionConfig
|
974
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
975
|
+
|
976
|
+
include Google::Apis::Core::JsonObjectSupport
|
977
|
+
end
|
978
|
+
|
943
979
|
class ProtectConfig
|
944
980
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
945
981
|
|
@@ -1451,6 +1487,8 @@ module Google
|
|
1451
1487
|
|
1452
1488
|
property :kubernetes_dashboard, as: 'kubernetesDashboard', class: Google::Apis::ContainerV1beta1::KubernetesDashboard, decorator: Google::Apis::ContainerV1beta1::KubernetesDashboard::Representation
|
1453
1489
|
|
1490
|
+
property :lustre_csi_driver_config, as: 'lustreCsiDriverConfig', class: Google::Apis::ContainerV1beta1::LustreCsiDriverConfig, decorator: Google::Apis::ContainerV1beta1::LustreCsiDriverConfig::Representation
|
1491
|
+
|
1454
1492
|
property :network_policy_config, as: 'networkPolicyConfig', class: Google::Apis::ContainerV1beta1::NetworkPolicyConfig, decorator: Google::Apis::ContainerV1beta1::NetworkPolicyConfig::Representation
|
1455
1493
|
|
1456
1494
|
property :parallelstore_csi_driver_config, as: 'parallelstoreCsiDriverConfig', class: Google::Apis::ContainerV1beta1::ParallelstoreCsiDriverConfig, decorator: Google::Apis::ContainerV1beta1::ParallelstoreCsiDriverConfig::Representation
|
@@ -1498,6 +1536,7 @@ module Google
|
|
1498
1536
|
class AutoIpamConfig
|
1499
1537
|
# @private
|
1500
1538
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1539
|
+
property :enabled, as: 'enabled'
|
1501
1540
|
end
|
1502
1541
|
end
|
1503
1542
|
|
@@ -1522,6 +1561,8 @@ module Google
|
|
1522
1561
|
property :conversion_status, as: 'conversionStatus', class: Google::Apis::ContainerV1beta1::AutopilotConversionStatus, decorator: Google::Apis::ContainerV1beta1::AutopilotConversionStatus::Representation
|
1523
1562
|
|
1524
1563
|
property :enabled, as: 'enabled'
|
1564
|
+
property :privileged_admission_config, as: 'privilegedAdmissionConfig', class: Google::Apis::ContainerV1beta1::PrivilegedAdmissionConfig, decorator: Google::Apis::ContainerV1beta1::PrivilegedAdmissionConfig::Representation
|
1565
|
+
|
1525
1566
|
property :workload_policy_config, as: 'workloadPolicyConfig', class: Google::Apis::ContainerV1beta1::WorkloadPolicyConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadPolicyConfig::Representation
|
1526
1567
|
|
1527
1568
|
end
|
@@ -1573,12 +1614,6 @@ module Google
|
|
1573
1614
|
end
|
1574
1615
|
end
|
1575
1616
|
|
1576
|
-
class AutoscaledRolloutPolicy
|
1577
|
-
# @private
|
1578
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1579
|
-
end
|
1580
|
-
end
|
1581
|
-
|
1582
1617
|
class AvailableVersion
|
1583
1618
|
# @private
|
1584
1619
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1626,14 +1661,22 @@ module Google
|
|
1626
1661
|
class BlueGreenSettings
|
1627
1662
|
# @private
|
1628
1663
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1629
|
-
property :autoscaled_rollout_policy, as: 'autoscaledRolloutPolicy', class: Google::Apis::ContainerV1beta1::AutoscaledRolloutPolicy, decorator: Google::Apis::ContainerV1beta1::AutoscaledRolloutPolicy::Representation
|
1630
|
-
|
1631
1664
|
property :node_pool_soak_duration, as: 'nodePoolSoakDuration'
|
1632
1665
|
property :standard_rollout_policy, as: 'standardRolloutPolicy', class: Google::Apis::ContainerV1beta1::StandardRolloutPolicy, decorator: Google::Apis::ContainerV1beta1::StandardRolloutPolicy::Representation
|
1633
1666
|
|
1634
1667
|
end
|
1635
1668
|
end
|
1636
1669
|
|
1670
|
+
class BootDisk
|
1671
|
+
# @private
|
1672
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1673
|
+
property :disk_type, as: 'diskType'
|
1674
|
+
property :provisioned_iops, :numeric_string => true, as: 'provisionedIops'
|
1675
|
+
property :provisioned_throughput, :numeric_string => true, as: 'provisionedThroughput'
|
1676
|
+
property :size_gb, :numeric_string => true, as: 'sizeGb'
|
1677
|
+
end
|
1678
|
+
end
|
1679
|
+
|
1637
1680
|
class CancelOperationRequest
|
1638
1681
|
# @private
|
1639
1682
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1838,6 +1881,8 @@ module Google
|
|
1838
1881
|
property :autoprovisioning_node_pool_defaults, as: 'autoprovisioningNodePoolDefaults', class: Google::Apis::ContainerV1beta1::AutoprovisioningNodePoolDefaults, decorator: Google::Apis::ContainerV1beta1::AutoprovisioningNodePoolDefaults::Representation
|
1839
1882
|
|
1840
1883
|
property :autoscaling_profile, as: 'autoscalingProfile'
|
1884
|
+
property :default_compute_class_config, as: 'defaultComputeClassConfig', class: Google::Apis::ContainerV1beta1::DefaultComputeClassConfig, decorator: Google::Apis::ContainerV1beta1::DefaultComputeClassConfig::Representation
|
1885
|
+
|
1841
1886
|
property :enable_node_autoprovisioning, as: 'enableNodeAutoprovisioning'
|
1842
1887
|
collection :resource_limits, as: 'resourceLimits', class: Google::Apis::ContainerV1beta1::ResourceLimit, decorator: Google::Apis::ContainerV1beta1::ResourceLimit::Representation
|
1843
1888
|
|
@@ -2171,6 +2216,13 @@ module Google
|
|
2171
2216
|
end
|
2172
2217
|
end
|
2173
2218
|
|
2219
|
+
class DefaultComputeClassConfig
|
2220
|
+
# @private
|
2221
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2222
|
+
property :enabled, as: 'enabled'
|
2223
|
+
end
|
2224
|
+
end
|
2225
|
+
|
2174
2226
|
class DefaultSnatStatus
|
2175
2227
|
# @private
|
2176
2228
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2229,6 +2281,42 @@ module Google
|
|
2229
2281
|
end
|
2230
2282
|
end
|
2231
2283
|
|
2284
|
+
class EvictionGracePeriod
|
2285
|
+
# @private
|
2286
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2287
|
+
property :imagefs_available, as: 'imagefsAvailable'
|
2288
|
+
property :imagefs_inodes_free, as: 'imagefsInodesFree'
|
2289
|
+
property :memory_available, as: 'memoryAvailable'
|
2290
|
+
property :nodefs_available, as: 'nodefsAvailable'
|
2291
|
+
property :nodefs_inodes_free, as: 'nodefsInodesFree'
|
2292
|
+
property :pid_available, as: 'pidAvailable'
|
2293
|
+
end
|
2294
|
+
end
|
2295
|
+
|
2296
|
+
class EvictionMinimumReclaim
|
2297
|
+
# @private
|
2298
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2299
|
+
property :imagefs_available, as: 'imagefsAvailable'
|
2300
|
+
property :imagefs_inodes_free, as: 'imagefsInodesFree'
|
2301
|
+
property :memory_available, as: 'memoryAvailable'
|
2302
|
+
property :nodefs_available, as: 'nodefsAvailable'
|
2303
|
+
property :nodefs_inodes_free, as: 'nodefsInodesFree'
|
2304
|
+
property :pid_available, as: 'pidAvailable'
|
2305
|
+
end
|
2306
|
+
end
|
2307
|
+
|
2308
|
+
class EvictionSignals
|
2309
|
+
# @private
|
2310
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2311
|
+
property :imagefs_available, as: 'imagefsAvailable'
|
2312
|
+
property :imagefs_inodes_free, as: 'imagefsInodesFree'
|
2313
|
+
property :memory_available, as: 'memoryAvailable'
|
2314
|
+
property :nodefs_available, as: 'nodefsAvailable'
|
2315
|
+
property :nodefs_inodes_free, as: 'nodefsInodesFree'
|
2316
|
+
property :pid_available, as: 'pidAvailable'
|
2317
|
+
end
|
2318
|
+
end
|
2319
|
+
|
2232
2320
|
class FastSocket
|
2233
2321
|
# @private
|
2234
2322
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2247,6 +2335,7 @@ module Google
|
|
2247
2335
|
# @private
|
2248
2336
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2249
2337
|
property :membership, as: 'membership'
|
2338
|
+
property :membership_type, as: 'membershipType'
|
2250
2339
|
property :pre_registered, as: 'preRegistered'
|
2251
2340
|
property :project, as: 'project'
|
2252
2341
|
end
|
@@ -2521,6 +2610,8 @@ module Google
|
|
2521
2610
|
property :hugepages, as: 'hugepages', class: Google::Apis::ContainerV1beta1::HugepagesConfig, decorator: Google::Apis::ContainerV1beta1::HugepagesConfig::Representation
|
2522
2611
|
|
2523
2612
|
hash :sysctls, as: 'sysctls'
|
2613
|
+
property :transparent_hugepage_defrag, as: 'transparentHugepageDefrag'
|
2614
|
+
property :transparent_hugepage_enabled, as: 'transparentHugepageEnabled'
|
2524
2615
|
end
|
2525
2616
|
end
|
2526
2617
|
|
@@ -2606,6 +2697,14 @@ module Google
|
|
2606
2697
|
end
|
2607
2698
|
end
|
2608
2699
|
|
2700
|
+
class LustreCsiDriverConfig
|
2701
|
+
# @private
|
2702
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2703
|
+
property :enable_legacy_lustre_port, as: 'enableLegacyLustrePort'
|
2704
|
+
property :enabled, as: 'enabled'
|
2705
|
+
end
|
2706
|
+
end
|
2707
|
+
|
2609
2708
|
class MaintenanceExclusionOptions
|
2610
2709
|
# @private
|
2611
2710
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2797,6 +2896,8 @@ module Google
|
|
2797
2896
|
|
2798
2897
|
property :advanced_machine_features, as: 'advancedMachineFeatures', class: Google::Apis::ContainerV1beta1::AdvancedMachineFeatures, decorator: Google::Apis::ContainerV1beta1::AdvancedMachineFeatures::Representation
|
2799
2898
|
|
2899
|
+
property :boot_disk, as: 'bootDisk', class: Google::Apis::ContainerV1beta1::BootDisk, decorator: Google::Apis::ContainerV1beta1::BootDisk::Representation
|
2900
|
+
|
2800
2901
|
property :boot_disk_kms_key, as: 'bootDiskKmsKey'
|
2801
2902
|
property :confidential_nodes, as: 'confidentialNodes', class: Google::Apis::ContainerV1beta1::ConfidentialNodes, decorator: Google::Apis::ContainerV1beta1::ConfidentialNodes::Representation
|
2802
2903
|
|
@@ -2891,11 +2992,19 @@ module Google
|
|
2891
2992
|
property :cpu_cfs_quota, as: 'cpuCfsQuota'
|
2892
2993
|
property :cpu_cfs_quota_period, as: 'cpuCfsQuotaPeriod'
|
2893
2994
|
property :cpu_manager_policy, as: 'cpuManagerPolicy'
|
2995
|
+
property :eviction_max_pod_grace_period_seconds, as: 'evictionMaxPodGracePeriodSeconds'
|
2996
|
+
property :eviction_minimum_reclaim, as: 'evictionMinimumReclaim', class: Google::Apis::ContainerV1beta1::EvictionMinimumReclaim, decorator: Google::Apis::ContainerV1beta1::EvictionMinimumReclaim::Representation
|
2997
|
+
|
2998
|
+
property :eviction_soft, as: 'evictionSoft', class: Google::Apis::ContainerV1beta1::EvictionSignals, decorator: Google::Apis::ContainerV1beta1::EvictionSignals::Representation
|
2999
|
+
|
3000
|
+
property :eviction_soft_grace_period, as: 'evictionSoftGracePeriod', class: Google::Apis::ContainerV1beta1::EvictionGracePeriod, decorator: Google::Apis::ContainerV1beta1::EvictionGracePeriod::Representation
|
3001
|
+
|
2894
3002
|
property :image_gc_high_threshold_percent, as: 'imageGcHighThresholdPercent'
|
2895
3003
|
property :image_gc_low_threshold_percent, as: 'imageGcLowThresholdPercent'
|
2896
3004
|
property :image_maximum_gc_age, as: 'imageMaximumGcAge'
|
2897
3005
|
property :image_minimum_gc_age, as: 'imageMinimumGcAge'
|
2898
3006
|
property :insecure_kubelet_readonly_port_enabled, as: 'insecureKubeletReadonlyPortEnabled'
|
3007
|
+
property :max_parallel_image_pulls, as: 'maxParallelImagePulls'
|
2899
3008
|
property :memory_manager, as: 'memoryManager', class: Google::Apis::ContainerV1beta1::MemoryManager, decorator: Google::Apis::ContainerV1beta1::MemoryManager::Representation
|
2900
3009
|
|
2901
3010
|
property :pod_pids_limit, :numeric_string => true, as: 'podPidsLimit'
|
@@ -3202,6 +3311,13 @@ module Google
|
|
3202
3311
|
end
|
3203
3312
|
end
|
3204
3313
|
|
3314
|
+
class PrivilegedAdmissionConfig
|
3315
|
+
# @private
|
3316
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3317
|
+
collection :allowlist_paths, as: 'allowlistPaths'
|
3318
|
+
end
|
3319
|
+
end
|
3320
|
+
|
3205
3321
|
class ProtectConfig
|
3206
3322
|
# @private
|
3207
3323
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3713,6 +3829,8 @@ module Google
|
|
3713
3829
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3714
3830
|
collection :accelerators, as: 'accelerators', class: Google::Apis::ContainerV1beta1::AcceleratorConfig, decorator: Google::Apis::ContainerV1beta1::AcceleratorConfig::Representation
|
3715
3831
|
|
3832
|
+
property :boot_disk, as: 'bootDisk', class: Google::Apis::ContainerV1beta1::BootDisk, decorator: Google::Apis::ContainerV1beta1::BootDisk::Representation
|
3833
|
+
|
3716
3834
|
property :cluster_id, as: 'clusterId'
|
3717
3835
|
property :confidential_nodes, as: 'confidentialNodes', class: Google::Apis::ContainerV1beta1::ConfidentialNodes, decorator: Google::Apis::ContainerV1beta1::ConfidentialNodes::Representation
|
3718
3836
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-container_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.89.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_v1beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.89.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1beta1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|