Delete an Amazon EKS add-on.
When you remove the add-on, it will also be deleted from the cluster. You can always manually start an add-on on the cluster using the Kubernetes API.
eks_delete_addon(clusterName, addonName)
A list with the following syntax:
list(
addon = list(
addonName = "string",
clusterName = "string",
status = "CREATING"|"ACTIVE"|"CREATE_FAILED"|"UPDATING"|"DELETING"|"DELETE_FAILED"|"DEGRADED",
addonVersion = "string",
health = list(
issues = list(
list(
code = "AccessDenied"|"InternalFailure"|"ClusterUnreachable"|"InsufficientNumberOfReplicas"|"ConfigurationConflict",
message = "string",
resourceIds = list(
"string"
)
)
)
),
addonArn = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
modifiedAt = as.POSIXct(
"2015-01-01"
),
serviceAccountRoleArn = "string",
tags = list(
"string"
)
)
)
[required] The name of the cluster to delete the add-on from.
[required] The name of the add-on. The name must match one of the names returned by
list_addons
.
svc$delete_addon(
clusterName = "string",
addonName = "string"
)