Help improve this page
Want to contribute to this user guide? Scroll to the bottom of this page and select Edit this page on GitHub. Your contributions will help make our user guide better for everyone.
Update the CoreDNS Amazon EKS self-managed add-on
Important
We recommend adding the Amazon EKS type
of the add-on to your cluster instead of using the self-managed type of the add-on. If you're
not familiar with the difference between the types, see Amazon EKS add-ons. For more
information about adding an Amazon EKS add-on to your cluster, see Creating an Amazon EKS add-on.
If you're unable to use the Amazon EKS add-on, we encourage you to submit an issue about why you
can't to the Containers roadmap
GitHub repository
Before you begin, review the upgrade considerations. For more information, see Important CoreDNS upgrade considerations.
-
Confirm that you have the self-managed type of the add-on installed on your cluster. Replace
my-cluster
with the name of your cluster.aws eks describe-addon --cluster-name
my-cluster
--addon-name coredns --query addon.addonVersion --output textIf an error message is returned, you have the self-managed type of the add-on installed on your cluster. Complete the remaining steps in this procedure. If a version number is returned, you have the Amazon EKS type of the add-on installed on your cluster. To update the Amazon EKS type of the add-on, use the procedure in Update the CoreDNS Amazon EKS add-on, rather than using this procedure. If you're not familiar with the differences between the add-on types, see Amazon EKS add-ons.
-
See which version of the container image is currently installed on your cluster.
kubectl describe deployment coredns -n kube-system | grep Image | cut -d ":" -f 3
An example output is as follows.
v1.8.7-eksbuild.2
-
If your current CoreDNS version is
v1.5.0
or later, but earlier than the version listed in the CoreDNS versions table, then skip this step. If your current version is earlier than1.5.0
, then you need to modify theConfigMap
for CoreDNS to use the forward add-on, rather than the proxy add-on.-
Open the
ConfigMap
with the following command.kubectl edit configmap coredns -n kube-system
-
Replace
proxy
in the following line withforward
. Save the file and exit the editor.
. /etc/resolv.confproxy
-
-
If you originally deployed your cluster on Kubernetes
1.17
or earlier, then you may need to remove a discontinued line from your CoreDNS manifest.Important
You must complete this step before updating to CoreDNS version
1.7.0
, but it's recommended that you complete this step even if you're updating to an earlier version.-
Check to see if your CoreDNS manifest has the line.
kubectl get configmap coredns -n kube-system -o jsonpath='{$.data.Corefile}' | grep upstream
If no output is returned, your manifest doesn't have the line and you can skip to the next step to update CoreDNS. If output is returned, then you need to remove the line.
-
Edit the
ConfigMap
with the following command, removing the line in the file that has the wordupstream
in it. Do not change anything else in the file. Once the line is removed, save the changes.kubectl edit configmap coredns -n kube-system -o yaml
-
-
Retrieve your current CoreDNS image version:
kubectl describe deployment coredns -n kube-system | grep Image
An example output is as follows.
602401143452
.dkr.ecr.region-code
.amazonaws.com/eks/coredns:v1.8.7-eksbuild.2
-
If you're updating to CoreDNS
1.8.3
or later, then you need to add theendpointslices
permission to thesystem:coredns
Kubernetesclusterrole
.kubectl edit clusterrole system:coredns -n kube-system
Add the following lines under the existing permissions lines in the
rules
section of the file.[...]
- apiGroups: - discovery.k8s.io resources: - endpointslices verbs: - list - watch
[...] -
Update the CoreDNS add-on by replacing
and602401143452
with the values from the output returned in a previous step. Replaceregion-code
with the CoreDNS version listed in the latest versions table for your Kubernetes version.v1.11.3-eksbuild.1
kubectl set image deployment.apps/coredns -n kube-system coredns=
602401143452
.dkr.ecr.region-code
.amazonaws.com/eks/coredns:v1.11.3-eksbuild.1
An example output is as follows.
deployment.apps/coredns image updated
-
Check the container image version again to confirm that it was updated to the version that you specified in the previous step.
kubectl describe deployment coredns -n kube-system | grep Image | cut -d ":" -f 3
An example output is as follows.
v1.11.3-eksbuild.1