-
Notifications
You must be signed in to change notification settings - Fork 807
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
Support for multi-regional kubernetes clusters #1402
Comments
The Kubernetes project currently lacks enough contributors to adequately respond to all issues and PRs. This bot triages issues and PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
Curious what the use case for this is. An instance and its volumes needs to be even in the same AZ. And K8s itself doesn't support multi-region (see e.g kubernetes/cloud-provider#35). |
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues and PRs. This bot triages issues and PRs 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/test-infra repository. |
Is your feature request related to a problem? Please describe.
We have few k8s clusters spanning across multiple regions, and it is currently impossible to deploy
aws-ebs-csi-driver
there as::Describe the solution you'd like in detail
I suggest a combination of the following changes:
Cloud
client for non-default regionVolumeID
(in a form of$volumeID/$region
) so that proper per-regionCloud
client can be used in csi requests which have access toVolumeID
only (likeDeleteVolume
)For backward compatibility, if
$region
is not present in theVolumeID
, we can use "default region" as its value (which is derived using current implementation fromAWS_REGION
env variable or instance metadata query).Describe alternatives you've considered
Additional context
The text was updated successfully, but these errors were encountered: