Describe Addon
eks_describe_addon | R Documentation |
Describes an Amazon EKS add-on¶
Description¶
Describes an Amazon EKS add-on.
Usage¶
Arguments¶
clusterName
[required] The name of your cluster.
addonName
[required] The name of the add-on. The name must match one of the names returned by
list_addons
.
Value¶
A list with the following syntax:
list(
addon = list(
addonName = "string",
clusterName = "string",
status = "CREATING"|"ACTIVE"|"CREATE_FAILED"|"UPDATING"|"DELETING"|"DELETE_FAILED"|"DEGRADED"|"UPDATE_FAILED",
addonVersion = "string",
health = list(
issues = list(
list(
code = "AccessDenied"|"InternalFailure"|"ClusterUnreachable"|"InsufficientNumberOfReplicas"|"ConfigurationConflict"|"AdmissionRequestDenied"|"UnsupportedAddonModification"|"K8sResourceNotFound"|"AddonSubscriptionNeeded"|"AddonPermissionFailure",
message = "string",
resourceIds = list(
"string"
)
)
)
),
addonArn = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
modifiedAt = as.POSIXct(
"2015-01-01"
),
serviceAccountRoleArn = "string",
tags = list(
"string"
),
publisher = "string",
owner = "string",
marketplaceInformation = list(
productId = "string",
productUrl = "string"
),
configurationValues = "string",
podIdentityAssociations = list(
"string"
)
)
)