Skip to content

Commit

Permalink
docs: ✏️ upgrade addons (#5288)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaskaransarkaria authored Feb 13, 2024
1 parent 2d8cb3d commit 0d01a60
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions runbooks/source/upgrade-eks-addons.html.md.erb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: Upgrade EKS addons
weight: 53
last_reviewed_on: 2024-01-24
review_in: 3 months
last_reviewed_on: 2024-02-13
review_in: 6 months
---

# Upgrade EKS addons
Expand Down Expand Up @@ -35,6 +35,16 @@ Run the following command to get a list of supported addon version for the Kuber
eksctl utils describe-addon-versions --kubernetes-version [k8s-version] --name [addon name: kube-proxy/vpc-cni/coredns] | grep AddonVersion
```

#### Error: error creating EKS Add-On (cluster-name:addon-name): InvalidParameterException: Addon version specified is not supported

If you come across this error, it is possible that the aws ui has incorrectly informed you about the supported version. To figure out which version is supported run the following command:

```
aws eks describe-addon-versions --kubernetes-version=$K8S_VERSION | jq '.addons[] | select(.addonName==$ADDON_NAME) | .addonVersions[] | select(.compatibilities[] | .defaultVersion==true)'
```

this will pull out the default compatible value for the k8s version for your addon.

## Preparing for upgrade

Check the changelog for each of the addons and determine if there are any breaking changes.
Expand Down

0 comments on commit 0d01a60

Please sign in to comment.