Skip to content

Commit

Permalink
feat: add Provisioning Request API
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 583194664
  • Loading branch information
Google APIs authored and Copybara-Service committed Nov 17, 2023
1 parent 04b0501 commit a241916
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions google/container/v1/cluster_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -3478,6 +3478,14 @@ message NodePool {
string policy_name = 3;
}

// QueuedProvisioning defines the queued provisioning used by the node pool.
message QueuedProvisioning {
// Denotes that this nodepool is QRM specific, meaning nodes can be only
// obtained through queuing via the Cluster Autoscaler ProvisioningRequest
// API.
bool enabled = 1;
}

// The name of the node pool.
string name = 1;

Expand Down Expand Up @@ -3561,6 +3569,9 @@ message NodePool {
// up-to-date value before proceeding.
string etag = 110;

// Specifies the configuration of queued provisioning.
QueuedProvisioning queued_provisioning = 112;

// Enable best effort provisioning for nodes
BestEffortProvisioning best_effort_provisioning = 113;
}
Expand Down

0 comments on commit a241916

Please sign in to comment.