google-apis-container_v1beta1 0.9.0 → 0.10.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b2e0d342010734d2714295a5d4101f133724802c1898be6bd5333f473d62533b
|
4
|
+
data.tar.gz: 8d772ed02127d0e7aa2a830fa7de8a5c37a02b64b937b4d92324047fb7bd35ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eb58a482a9f2863c3da99c6092328378d7b8a74570c9176f989586440d6fe70c56d67502608adf3aec69a621df4246a284d9f01f2de36e501ccfc7cfa1f693a5
|
7
|
+
data.tar.gz: ed5ca71eb0f26edcc0e738259f9d78543a293ef7929619442a17b016a0cef037baec051b1ba9fd787928dc8f0539e87461b7454dad23248db797f5abc6c10076
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-container_v1beta1
|
2
2
|
|
3
|
+
### v0.10.0 (2021-06-03)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210521
|
6
|
+
* Regenerated using generator version 0.3.0
|
7
|
+
|
3
8
|
### v0.9.0 (2021-05-26)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20210517
|
@@ -238,6 +238,11 @@ module Google
|
|
238
238
|
# @return [String]
|
239
239
|
attr_accessor :disk_type
|
240
240
|
|
241
|
+
# The image type to use for NAP created node.
|
242
|
+
# Corresponds to the JSON property `imageType`
|
243
|
+
# @return [String]
|
244
|
+
attr_accessor :image_type
|
245
|
+
|
241
246
|
# NodeManagement defines the set of node management services turned on for the
|
242
247
|
# node pool.
|
243
248
|
# Corresponds to the JSON property `management`
|
@@ -280,20 +285,7 @@ module Google
|
|
280
285
|
# @return [Google::Apis::ContainerV1beta1::ShieldedInstanceConfig]
|
281
286
|
attr_accessor :shielded_instance_config
|
282
287
|
|
283
|
-
#
|
284
|
-
# disruption caused by an upgrade. maxUnavailable controls the number of nodes
|
285
|
-
# that can be simultaneously unavailable. maxSurge controls the number of
|
286
|
-
# additional nodes that can be added to the node pool temporarily for the time
|
287
|
-
# of the upgrade to increase the number of available nodes. (maxUnavailable +
|
288
|
-
# maxSurge) determines the level of parallelism (how many nodes are being
|
289
|
-
# upgraded at the same time). Note: upgrades inevitably introduce some
|
290
|
-
# disruption since workloads need to be moved from old nodes to new, upgraded
|
291
|
-
# ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
|
292
|
-
# limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
|
293
|
-
# node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
|
294
|
-
# upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
|
295
|
-
# upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
|
296
|
-
# same time. This ensures that there are always at least 4 nodes available.
|
288
|
+
# Upgrade settings control disruption and speed of the upgrade.
|
297
289
|
# Corresponds to the JSON property `upgradeSettings`
|
298
290
|
# @return [Google::Apis::ContainerV1beta1::UpgradeSettings]
|
299
291
|
attr_accessor :upgrade_settings
|
@@ -307,6 +299,7 @@ module Google
|
|
307
299
|
@boot_disk_kms_key = args[:boot_disk_kms_key] if args.key?(:boot_disk_kms_key)
|
308
300
|
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
309
301
|
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
302
|
+
@image_type = args[:image_type] if args.key?(:image_type)
|
310
303
|
@management = args[:management] if args.key?(:management)
|
311
304
|
@min_cpu_platform = args[:min_cpu_platform] if args.key?(:min_cpu_platform)
|
312
305
|
@oauth_scopes = args[:oauth_scopes] if args.key?(:oauth_scopes)
|
@@ -1468,7 +1461,20 @@ module Google
|
|
1468
1461
|
# specification, under the control of the cluster master. They may have a set of
|
1469
1462
|
# Kubernetes labels applied to them, which may be used to reference them during
|
1470
1463
|
# pod scheduling. They may also be resized up or down, to accommodate the
|
1471
|
-
# workload.
|
1464
|
+
# workload. These upgrade settings control the level of parallelism and the
|
1465
|
+
# level of disruption caused by an upgrade. maxUnavailable controls the number
|
1466
|
+
# of nodes that can be simultaneously unavailable. maxSurge controls the number
|
1467
|
+
# of additional nodes that can be added to the node pool temporarily for the
|
1468
|
+
# time of the upgrade to increase the number of available nodes. (maxUnavailable
|
1469
|
+
# + maxSurge) determines the level of parallelism (how many nodes are being
|
1470
|
+
# upgraded at the same time). Note: upgrades inevitably introduce some
|
1471
|
+
# disruption since workloads need to be moved from old nodes to new, upgraded
|
1472
|
+
# ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
|
1473
|
+
# limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
|
1474
|
+
# node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
|
1475
|
+
# upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
|
1476
|
+
# upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
|
1477
|
+
# same time. This ensures that there are always at least 4 nodes available.
|
1472
1478
|
# Corresponds to the JSON property `nodePool`
|
1473
1479
|
# @return [Google::Apis::ContainerV1beta1::NodePool]
|
1474
1480
|
attr_accessor :node_pool
|
@@ -3168,7 +3174,20 @@ module Google
|
|
3168
3174
|
# specification, under the control of the cluster master. They may have a set of
|
3169
3175
|
# Kubernetes labels applied to them, which may be used to reference them during
|
3170
3176
|
# pod scheduling. They may also be resized up or down, to accommodate the
|
3171
|
-
# workload.
|
3177
|
+
# workload. These upgrade settings control the level of parallelism and the
|
3178
|
+
# level of disruption caused by an upgrade. maxUnavailable controls the number
|
3179
|
+
# of nodes that can be simultaneously unavailable. maxSurge controls the number
|
3180
|
+
# of additional nodes that can be added to the node pool temporarily for the
|
3181
|
+
# time of the upgrade to increase the number of available nodes. (maxUnavailable
|
3182
|
+
# + maxSurge) determines the level of parallelism (how many nodes are being
|
3183
|
+
# upgraded at the same time). Note: upgrades inevitably introduce some
|
3184
|
+
# disruption since workloads need to be moved from old nodes to new, upgraded
|
3185
|
+
# ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
|
3186
|
+
# limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
|
3187
|
+
# node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
|
3188
|
+
# upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
|
3189
|
+
# upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
|
3190
|
+
# same time. This ensures that there are always at least 4 nodes available.
|
3172
3191
|
class NodePool
|
3173
3192
|
include Google::Apis::Core::Hashable
|
3174
3193
|
|
@@ -3256,20 +3275,7 @@ module Google
|
|
3256
3275
|
# @return [String]
|
3257
3276
|
attr_accessor :status_message
|
3258
3277
|
|
3259
|
-
#
|
3260
|
-
# disruption caused by an upgrade. maxUnavailable controls the number of nodes
|
3261
|
-
# that can be simultaneously unavailable. maxSurge controls the number of
|
3262
|
-
# additional nodes that can be added to the node pool temporarily for the time
|
3263
|
-
# of the upgrade to increase the number of available nodes. (maxUnavailable +
|
3264
|
-
# maxSurge) determines the level of parallelism (how many nodes are being
|
3265
|
-
# upgraded at the same time). Note: upgrades inevitably introduce some
|
3266
|
-
# disruption since workloads need to be moved from old nodes to new, upgraded
|
3267
|
-
# ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
|
3268
|
-
# limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
|
3269
|
-
# node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
|
3270
|
-
# upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
|
3271
|
-
# upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
|
3272
|
-
# same time. This ensures that there are always at least 4 nodes available.
|
3278
|
+
# Upgrade settings control disruption and speed of the upgrade.
|
3273
3279
|
# Corresponds to the JSON property `upgradeSettings`
|
3274
3280
|
# @return [Google::Apis::ContainerV1beta1::UpgradeSettings]
|
3275
3281
|
attr_accessor :upgrade_settings
|
@@ -5133,20 +5139,7 @@ module Google
|
|
5133
5139
|
# @return [Google::Apis::ContainerV1beta1::NodeTaints]
|
5134
5140
|
attr_accessor :taints
|
5135
5141
|
|
5136
|
-
#
|
5137
|
-
# disruption caused by an upgrade. maxUnavailable controls the number of nodes
|
5138
|
-
# that can be simultaneously unavailable. maxSurge controls the number of
|
5139
|
-
# additional nodes that can be added to the node pool temporarily for the time
|
5140
|
-
# of the upgrade to increase the number of available nodes. (maxUnavailable +
|
5141
|
-
# maxSurge) determines the level of parallelism (how many nodes are being
|
5142
|
-
# upgraded at the same time). Note: upgrades inevitably introduce some
|
5143
|
-
# disruption since workloads need to be moved from old nodes to new, upgraded
|
5144
|
-
# ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
|
5145
|
-
# limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
|
5146
|
-
# node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
|
5147
|
-
# upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
|
5148
|
-
# upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
|
5149
|
-
# same time. This ensures that there are always at least 4 nodes available.
|
5142
|
+
# Upgrade settings control disruption and speed of the upgrade.
|
5150
5143
|
# Corresponds to the JSON property `upgradeSettings`
|
5151
5144
|
# @return [Google::Apis::ContainerV1beta1::UpgradeSettings]
|
5152
5145
|
attr_accessor :upgrade_settings
|
@@ -5281,20 +5274,7 @@ module Google
|
|
5281
5274
|
end
|
5282
5275
|
end
|
5283
5276
|
|
5284
|
-
#
|
5285
|
-
# disruption caused by an upgrade. maxUnavailable controls the number of nodes
|
5286
|
-
# that can be simultaneously unavailable. maxSurge controls the number of
|
5287
|
-
# additional nodes that can be added to the node pool temporarily for the time
|
5288
|
-
# of the upgrade to increase the number of available nodes. (maxUnavailable +
|
5289
|
-
# maxSurge) determines the level of parallelism (how many nodes are being
|
5290
|
-
# upgraded at the same time). Note: upgrades inevitably introduce some
|
5291
|
-
# disruption since workloads need to be moved from old nodes to new, upgraded
|
5292
|
-
# ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
|
5293
|
-
# limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
|
5294
|
-
# node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
|
5295
|
-
# upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
|
5296
|
-
# upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
|
5297
|
-
# same time. This ensures that there are always at least 4 nodes available.
|
5277
|
+
#
|
5298
5278
|
class UpgradeSettings
|
5299
5279
|
include Google::Apis::Core::Hashable
|
5300
5280
|
|
@@ -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.10.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.3.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210521"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -824,6 +824,7 @@ module Google
|
|
824
824
|
property :boot_disk_kms_key, as: 'bootDiskKmsKey'
|
825
825
|
property :disk_size_gb, as: 'diskSizeGb'
|
826
826
|
property :disk_type, as: 'diskType'
|
827
|
+
property :image_type, as: 'imageType'
|
827
828
|
property :management, as: 'management', class: Google::Apis::ContainerV1beta1::NodeManagement, decorator: Google::Apis::ContainerV1beta1::NodeManagement::Representation
|
828
829
|
|
829
830
|
property :min_cpu_platform, as: 'minCpuPlatform'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.10.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-06-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-container_v1beta1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.10.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-container_v1beta1
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|