-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
Inconsistencies between qualified names on AWS nodes #16349
Comments
This relates to kubernetes/kubernetes#121018 and the e2e test logic could be updated to handle either qualified or unqualified /kind office-hours |
The Kubernetes project currently lacks enough contributors to adequately respond to all issues. This bot triages un-triaged issues according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues. This bot triages un-triaged issues according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle rotten |
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues and PRs. This bot triages issues according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /close not-planned |
@k8s-triage-robot: Closing this issue, marking it as "Not Planned". In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
/kind bug
/kind failing-test
Our grid jobs for RHEL-based distros are failing a test that was recently unskipped for unrelated reasons (#16176)
https://testgrid.k8s.io/kops-grid#kops-grid-cilium-amzn2-k28
https://prow.k8s.io/view/gs/kubernetes-jenkins/logs/e2e-kops-grid-cilium-amzn2-k28/1756260864102502400
This test expects unqualified names but is actually receiving fully qualified names. The test code's expected data comes from the
kubernetes.io/hostname
label on nodes (also the node name itself) which we see is the unqualified instance ID.The test's actual data comes from running the
hostname
command on a hostNetwork pod.A list of our distros and whether
hostname
returns a fully qualified name:I think our best path forward would be to configure the RHEL-based distros to return the unqualified name for
hostname
. This would match behavior with the other distros.Alternatively we could make all node names fully qualified like
i-03fbc6f079db37ce7.eu-west-1.compute.internal
but this feels more disruptive.The text was updated successfully, but these errors were encountered: