-
Notifications
You must be signed in to change notification settings - Fork 3.4k
ci: fix deployment issue with multiple clusters in same region #29427
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ci: fix deployment issue with multiple clusters in same region #29427
Conversation
Currently, the tests `ci-eks` & `ci-aws-cni` fail due to issues deploying multiple clusters with the same name in the same region. Therefore, this commit uses a different region for k8s version v1.24 to ensure that only one cluster gets deployed per region. Fixes: cilium#29004 Signed-off-by: Marco Hofstetter <marco.hofstetter@isovalent.com>
/test |
Nice find!
@mhofstetter Could you create a GH issue? 🍕 |
@mhofstetter Do we need to backport it to stable branches? |
Already there: #29426
IMO this should not be necessary as long as the PR introducing the overlapping clusters in the same region #29004 doesn't get backported. |
Your "Fixes" comment in the PR description will close it. |
Yep, I reopened it with a comment :) |
Currently, the tests
ci-eks
&ci-aws-cni
fail due to issues deploying multiple clusters with the same name in the same region.Therefore, this commit uses a different region for k8s version v1.24 to ensure that only one cluster gets deployed per region.
Note: This is the quick fix. As mentioned in the related issue, it might be better to ensure a unique name via other measures.
Fixes: #29004
Fixes: #29426