Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add optional secondary_boot_disk_update_strategy field to NodePool API #25423

Merged
merged 2 commits into from
Mar 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,9 @@ class NodeKubeletConfig
# @!attribute [rw] secondary_boot_disks
# @return [::Array<::Google::Cloud::Container::V1beta1::SecondaryBootDisk>]
# List of secondary boot disks attached to the nodes.
# @!attribute [rw] secondary_boot_disk_update_strategy
# @return [::Google::Cloud::Container::V1beta1::SecondaryBootDiskUpdateStrategy]
# Secondary boot disk update strategy.
class NodeConfig
include ::Google::Protobuf::MessageExts
extend ::Google::Protobuf::MessageExts::ClassMethods
Expand Down Expand Up @@ -2436,6 +2439,9 @@ class NodePoolAutoConfig
# @return [::Google::Cloud::Container::V1beta1::HostMaintenancePolicy]
# HostMaintenancePolicy contains the desired maintenance policy for the
# Google Compute Engine hosts.
# @!attribute [rw] desired_enable_multi_networking
# @return [::Boolean]
# Enable/Disable Multi-Networking for the cluster
# @!attribute [rw] desired_node_pool_auto_config_resource_manager_tags
# @return [::Google::Cloud::Container::V1beta1::ResourceManagerTags]
# The desired resource manager tags that apply to all auto-provisioned node
Expand Down Expand Up @@ -6144,6 +6150,13 @@ module Mode
end
end

# SecondaryBootDiskUpdateStrategy is a placeholder which will be extended
# in the future to define different options for updating secondary boot disks.
class SecondaryBootDiskUpdateStrategy
include ::Google::Protobuf::MessageExts
extend ::Google::Protobuf::MessageExts::ClassMethods
end

# PrivateIPv6GoogleAccess controls whether and how the pods can communicate
# with Google Services through gRPC over IPv6.
module PrivateIPv6GoogleAccess
Expand Down