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
Description:
We’ve identified an issue with the CSI-Cinder plugin where it is sending requests to the wrong URL for the Cinder API. The plugin is using the URL: https://cinder_api_url:8776/ while the correct URL should include the /v3.
As a result, Cinder is responding with an HTTP 300 (Multiple Choices) error, which is overloading the Cinder API and, in some cases, leads to intermittent HTTP 503 (Service Unavailable) responses due to the high volume of requests being made to the wrong URL.
Steps to Reproduce:
Deploy CSI-Cinder plugin.
Observe the incoming requests to the Cinder API.
Notice that the plugin is using the incorrect URL without the /v3 path.
This results in Cinder responding with HTTP 300, leading to increased load and HTTP 503 responses.
Expected Behavior:
The CSI-Cinder plugin should be sending requests to the correct URL: https://cinder_api_url:8776/v3 , this will prevent HTTP 300 responses and the subsequent overload on the Cinder API
Actual Behavior:
The CSI-Cinder plugin is currently sending requests to this URL: https://cinder_api_url:8776/ , which does not include /v3
Impact:
This issue is causing the Cinder API to respond with HTTP 300, leading to high traffic and occasional HTTP 503 (Service Unavailable) responses, impacting the stability of the Cinder API.
Additional Information:
The issue only appears when requests are sent to the incorrect URL.
Monitoring and logs indicate a high number of HTTP 300 responses, followed by HTTP 503 due to load on the Cinder API.
Description:
We’ve identified an issue with the CSI-Cinder plugin where it is sending requests to the wrong URL for the Cinder API. The plugin is using the URL: https://cinder_api_url:8776/ while the correct URL should include the /v3.
As a result, Cinder is responding with an HTTP 300 (Multiple Choices) error, which is overloading the Cinder API and, in some cases, leads to intermittent HTTP 503 (Service Unavailable) responses due to the high volume of requests being made to the wrong URL.
Steps to Reproduce:
Expected Behavior:
The CSI-Cinder plugin should be sending requests to the correct URL: https://cinder_api_url:8776/v3 , this will prevent HTTP 300 responses and the subsequent overload on the Cinder API
Actual Behavior:
The CSI-Cinder plugin is currently sending requests to this URL: https://cinder_api_url:8776/ , which does not include /v3
Impact:
This issue is causing the Cinder API to respond with HTTP 300, leading to high traffic and occasional HTTP 503 (Service Unavailable) responses, impacting the stability of the Cinder API.
Additional Information:
Environment:
The text was updated successfully, but these errors were encountered: