Skip to content

Describe Cluster Versions

eks_describe_cluster_versions R Documentation

Lists available Kubernetes versions for Amazon EKS clusters

Description

Lists available Kubernetes versions for Amazon EKS clusters.

Usage

eks_describe_cluster_versions(clusterType, maxResults, nextToken,
  defaultOnly, includeAll, clusterVersions, status)

Arguments

clusterType

The type of cluster to filter versions by.

maxResults

Maximum number of results to return.

nextToken

Pagination token for the next set of results.

defaultOnly

Filter to show only default versions.

includeAll

Include all available versions in the response.

clusterVersions

List of specific cluster versions to describe.

status

Filter versions by their current status.

Value

A list with the following syntax:

list(
  nextToken = "string",
  clusterVersions = list(
    list(
      clusterVersion = "string",
      clusterType = "string",
      defaultPlatformVersion = "string",
      defaultVersion = TRUE|FALSE,
      releaseDate = as.POSIXct(
        "2015-01-01"
      ),
      endOfStandardSupportDate = as.POSIXct(
        "2015-01-01"
      ),
      endOfExtendedSupportDate = as.POSIXct(
        "2015-01-01"
      ),
      status = "unsupported"|"standard-support"|"extended-support",
      kubernetesPatchVersion = "string"
    )
  )
)

Request syntax

svc$describe_cluster_versions(
  clusterType = "string",
  maxResults = 123,
  nextToken = "string",
  defaultOnly = TRUE|FALSE,
  includeAll = TRUE|FALSE,
  clusterVersions = list(
    "string"
  ),
  status = "unsupported"|"standard-support"|"extended-support"
)