You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the StorageClass definition you're missing an important setting of WaitForFirstConsumer.
This resolves the issue of topology constrained storage backends (such as AWS EBS).
The main cause of this would be where the instance using the volume is restarted for some reason onto a different availability zone. The above mitigates that and constrains the pod to be more accurately restricted to being in the same zone as the storage (AWS prohibits cross zone EBS bindings).
The text was updated successfully, but these errors were encountered:
In the StorageClass definition you're missing an important setting of WaitForFirstConsumer.
This resolves the issue of topology constrained storage backends (such as AWS EBS).
as per: https://kubernetes.io/docs/concepts/storage/storage-classes/
The main cause of this would be where the instance using the volume is restarted for some reason onto a different availability zone. The above mitigates that and constrains the pod to be more accurately restricted to being in the same zone as the storage (AWS prohibits cross zone EBS bindings).
The text was updated successfully, but these errors were encountered: