Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,9 @@ message NodeConfig {
map<string, string> metadata = 4;

// The image type to use for this node. Note that for a given image type,
// the latest version of it will be used.
// the latest version of it will be used. Please see
// https://cloud.google.com/kubernetes-engine/docs/concepts/node-images for
// available image types.
string image_type = 5;

// The map of Kubernetes labels (key/value pairs) to be applied to each node.
Expand Down Expand Up @@ -2299,7 +2301,9 @@ message UpdateNodePoolRequest {
// - "-": picks the Kubernetes master version
string node_version = 5 [(google.api.field_behavior) = REQUIRED];

// Required. The desired image type for the node pool.
// Required. The desired image type for the node pool. Please see
// https://cloud.google.com/kubernetes-engine/docs/concepts/node-images for
// available image types.
string image_type = 6 [(google.api.field_behavior) = REQUIRED];

// The name (project, location, cluster, node pool) of the node pool to
Expand Down Expand Up @@ -3527,7 +3531,9 @@ message AutoprovisioningNodePoolDefaults {
// https://cloud.google.com/compute/docs/disks/customer-managed-encryption
string boot_disk_kms_key = 9;

// The image type to use for NAP created node.
// The image type to use for NAP created node. Please see
// https://cloud.google.com/kubernetes-engine/docs/concepts/node-images for
// available image types.
string image_type = 10;
}

Expand Down Expand Up @@ -4596,7 +4602,8 @@ enum DatapathProvider {

// Strategy used for node pool update.
enum NodePoolUpdateStrategy {
// Default value.
// Default value if unset. GKE internally defaults the update strategy to
// SURGE for unspecified strategies.
NODE_POOL_UPDATE_STRATEGY_UNSPECIFIED = 0;

// blue-green upgrade.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,9 @@ message NodeConfig {
map<string, string> metadata = 4;

// The image type to use for this node. Note that for a given image type,
// the latest version of it will be used.
// the latest version of it will be used. Please see
// https://cloud.google.com/kubernetes-engine/docs/concepts/node-images for
// available image types.
string image_type = 5;

// The map of Kubernetes labels (key/value pairs) to be applied to each node.
Expand Down Expand Up @@ -2558,7 +2560,9 @@ message UpdateNodePoolRequest {
// - "-": picks the Kubernetes master version
string node_version = 5 [(google.api.field_behavior) = REQUIRED];

// Required. The desired image type for the node pool.
// Required. The desired image type for the node pool. Please see
// https://cloud.google.com/kubernetes-engine/docs/concepts/node-images for
// available image types.
string image_type = 6 [(google.api.field_behavior) = REQUIRED];

// The desired list of Google Compute Engine
Expand Down Expand Up @@ -3876,7 +3880,9 @@ message AutoprovisioningNodePoolDefaults {
// https://cloud.google.com/compute/docs/disks/customer-managed-encryption
string boot_disk_kms_key = 9;

// The image type to use for NAP created node.
// The image type to use for NAP created node. Please see
// https://cloud.google.com/kubernetes-engine/docs/concepts/node-images for
// available image types.
string image_type = 10;
}

Expand Down Expand Up @@ -4987,7 +4993,8 @@ message IdentityServiceConfig {

// Strategy used for node pool update.
enum NodePoolUpdateStrategy {
// Default value.
// Default value if unset. GKE internally defaults the update strategy to
// SURGE for unspecified strategies.
NODE_POOL_UPDATE_STRATEGY_UNSPECIFIED = 0;

// blue-green upgrade.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ function main(nodeVersion, imageType) {
*/
// const nodeVersion = 'abc123'
/**
* Required. The desired image type for the node pool.
* Required. The desired image type for the node pool. Please see
* https://cloud.google.com/kubernetes-engine/docs/concepts/node-images for
* available image types.
*/
// const imageType = 'abc123'
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@
"segments": [
{
"start": 25,
"end": 154,
"end": 156,
"type": "FULL"
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ function main(projectId, zone, clusterId, nodePoolId, nodeVersion, imageType) {
*/
// const nodeVersion = 'abc123'
/**
* Required. The desired image type for the node pool.
* Required. The desired image type for the node pool. Please see
* https://cloud.google.com/kubernetes-engine/docs/concepts/node-images for
* available image types.
*/
// const imageType = 'abc123'
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@
"segments": [
{
"start": 25,
"end": 158,
"end": 160,
"type": "FULL"
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -791,7 +791,9 @@ export class ClusterManagerClient {
* - "1.X.Y-gke.N": picks an explicit Kubernetes version
* - "-": picks the Kubernetes master version
* @param {string} request.imageType
* Required. The desired image type for the node pool.
* Required. The desired image type for the node pool. Please see
* https://cloud.google.com/kubernetes-engine/docs/concepts/node-images for
* available image types.
* @param {string} request.name
* The name (project, location, cluster, node pool) of the node pool to
* update. Specified in the format
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,9 @@ export class ClusterManagerClient {
* - "1.X.Y-gke.N": picks an explicit Kubernetes version
* - "-": picks the Kubernetes master version
* @param {string} request.imageType
* Required. The desired image type for the node pool.
* Required. The desired image type for the node pool. Please see
* https://cloud.google.com/kubernetes-engine/docs/concepts/node-images for
* available image types.
* @param {string[]} request.locations
* The desired list of Google Compute Engine
* [zones](https://cloud.google.com/compute/docs/zones#available) in which the
Expand Down