Skip to content

Commit 32cca06

Browse files
Update coredns addon version to 1.26 compatible (#71)
Description of changes: The current main branch is failing tests with the following error message: ``` InvalidParameterException: Addon version specified is not supported ``` This pull request updates the tested coredns add-on version from the [AWS documentation](https://docs.aws.amazon.com/eks/latest/userguide/managing-coredns.html). By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent f94e542 commit 32cca06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/e2e/tests/test_addon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def wait_for_addon_deleted(eks_client, cluster_name, addon_name):
4040
@pytest.fixture
4141
def coredns_addon(eks_client, simple_cluster) -> Tuple[k8s.CustomResourceReference, Dict]:
4242
addon_name = "coredns"
43-
addon_version = "v1.8.7-eksbuild.3"
43+
addon_version = "v1.9.3-eksbuild.3"
4444
configuration_values = json.dumps(
4545
{"resources": {"limits": {"memory": "64Mi"}, "requests": {"cpu": "10m", "memory": "64Mi"}}})
4646
resolve_conflicts = "OVERWRITE"

0 commit comments

Comments
 (0)