ServerConfig

Kubernetes Engine service configuration.

JSON representation
{
  "defaultClusterVersion": string,
  "validNodeVersions": [
    string
  ],
  "defaultImageType": string,
  "validImageTypes": [
    string
  ],
  "validMasterVersions": [
    string
  ],
  "channels": [
    {
      object (ReleaseChannelConfig)
    }
  ],
  "windowsVersionMaps": {
    string: {
      object (WindowsVersions)
    },
    ...
  }
}
Fields
defaultClusterVersion

string

Version of Kubernetes the service deploys by default.

validNodeVersions[]

string

List of valid node upgrade target versions, in descending order.

defaultImageType

string

Default image type.

validImageTypes[]

string

List of valid image types.

validMasterVersions[]

string

List of valid master versions, in descending order.

channels[]

object (ReleaseChannelConfig)

List of release channel configurations.

windowsVersionMaps

map (key: string, value: object (WindowsVersions))

Maps of Kubernetes version and supported Windows server versions.

An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

ReleaseChannelConfig

ReleaseChannelConfig exposes configuration for a release channel.

JSON representation
{
  "channel": enum (Channel),
  "defaultVersion": string,
  "availableVersions": [
    {
      object (AvailableVersion)
    }
  ],
  "validVersions": [
    string
  ]
}
Fields
channel

enum (Channel)

The release channel this configuration applies to.

defaultVersion

string

The default version for newly created clusters on the channel.

availableVersions[]
(deprecated)

object (AvailableVersion)

Deprecated. This field has been deprecated and replaced with the validVersions field.

validVersions[]

string

List of valid versions for the channel.

AvailableVersion

Deprecated.

JSON representation
{
  "version": string,
  "reason": string
}
Fields
version

string

Kubernetes version.

reason

string

Reason for availability.