-
Notifications
You must be signed in to change notification settings - Fork 40k
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
azure disk: restrict length of name #40030
azure disk: restrict length of name #40030
Conversation
Jenkins Bazel Build failed for commit 34d1811d1c39e063a75d1f3b7258d99067636b12. Full PR test history. cc @colemickens The magic incantation to run this job again is 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/test-infra repository. I understand the commands that are listed here. |
Jenkins Kubemark GCE e2e failed for commit 34d1811d1c39e063a75d1f3b7258d99067636b12. Full PR test history. cc @colemickens The magic incantation to run this job again is 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/test-infra repository. I understand the commands that are listed here. |
Jenkins GCE Node e2e failed for commit 34d1811d1c39e063a75d1f3b7258d99067636b12. Full PR test history. cc @colemickens The magic incantation to run this job again is 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/test-infra repository. I understand the commands that are listed here. |
Jenkins kops AWS e2e failed for commit 34d1811d1c39e063a75d1f3b7258d99067636b12. Full PR test history. cc @colemickens The magic incantation to run this job again is 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/test-infra repository. I understand the commands that are listed here. |
Jenkins GKE smoke e2e failed for commit 34d1811d1c39e063a75d1f3b7258d99067636b12. Full PR test history. cc @colemickens The magic incantation to run this job again is 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/test-infra repository. I understand the commands that are listed here. |
Jenkins GCI GKE smoke e2e failed for commit 34d1811d1c39e063a75d1f3b7258d99067636b12. Full PR test history. cc @colemickens The magic incantation to run this job again is 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/test-infra repository. I understand the commands that are listed here. |
Jenkins GCE e2e failed for commit 34d1811d1c39e063a75d1f3b7258d99067636b12. Full PR test history. cc @colemickens The magic incantation to run this job again is 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/test-infra repository. I understand the commands that are listed here. |
Jenkins GCE etcd3 e2e failed for commit 34d1811d1c39e063a75d1f3b7258d99067636b12. Full PR test history. cc @colemickens The magic incantation to run this job again is 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/test-infra repository. I understand the commands that are listed here. |
Jenkins GCI GCE e2e failed for commit 34d1811d1c39e063a75d1f3b7258d99067636b12. Full PR test history. cc @colemickens The magic incantation to run this job again is 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/test-infra repository. I understand the commands that are listed here. |
Jenkins unit/integration failed for commit 34d1811d1c39e063a75d1f3b7258d99067636b12. Full PR test history. cc @colemickens The magic incantation to run this job again is 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/test-infra repository. I understand the commands that are listed here. |
Jenkins CRI GCE Node e2e failed for commit 34d1811d1c39e063a75d1f3b7258d99067636b12. Full PR test history. cc @colemickens The magic incantation to run this job again is 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/test-infra repository. I understand the commands that are listed here. |
34d1811
to
8adcf07
Compare
LGTM |
Jenkins verification failed for commit 34d1811d1c39e063a75d1f3b7258d99067636b12. Full PR test history. cc @colemickens The magic incantation to run this job again is 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/test-infra repository. I understand the commands that are listed here. |
/lgtm |
fwiw, we should consider adding an admission controller to test for this. If two names happen to truncate to the same first 75 letters it's going to give some pretty hard to track errors. |
(Not that I disagree, but I don't think this changes increases chances of collision though. The thing that winds up truncated here is the prefix, and it's the same for the entire cluster anyway.) |
Automatic merge from submit-queue (batch tested with PRs 39826, 40030) |
@saad-ali Are you in charge of cherry-picks for 1.5.x? Can this be marked as a cherry-pick? |
@colemickens Which behavior/bug does this PR fix? Complete failure to mount or something related to the time needed for attach/deatch? I'm asking because I may also want to cherry-pick this into my custom built branch for our deployments. |
@codablock Without this patch, if the clustername is too large, the PV created will have a Name that is longer than 79 character. The attach operation fails repeatedly in this case as the PUT is rejected. |
ping @saad-ali for a 1.5.x cherry-pick. |
Commit found in the "release-1.5" branch appears to be this PR. Removing the "cherrypick-candidate" label. If this is an error find help to get your PR picked. |
What this PR does / why we need it:
Fixes dynamic disk provisioning on Azure by properly truncating the disk name to conform to the Azure API spec.
Which issue this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close that issue when PR gets merged): fixes #n/a
Special notes for your reviewer:
n/a
Release note:
cc: @rootfs