Cinder compatibility expansion#10
Draft
JSYoo5B wants to merge 9 commits into
Draft
Conversation
JSYoo5B
commented
Jul 2, 2026
| AttachStatus string | ||
| } | ||
|
|
||
| func (s *Service) Attach(id string, input AttachVolume) error { |
Owner
Author
There was a problem hiding this comment.
Volume actions are currently modeled as direct state transitions on the volume repository. This keeps the MVP lightweight, but this file is where future backend/provider behavior would likely attach.
JSYoo5B
commented
Jul 2, 2026
| return s.setVolumeStatus(id, "available") | ||
| } | ||
|
|
||
| func (s *Service) ExtendSize(id string, newSize int) error { |
Owner
Author
There was a problem hiding this comment.
Extend updates size and timestamp without modeling asynchronous resize progress. That is a deliberate compatibility shortcut to keep this slice focused on API shape and observable state.
JSYoo5B
commented
Jul 2, 2026
| return s.setVolumeStatus(id, input.Status) | ||
| } | ||
|
|
||
| func (s *Service) setVolumeStatus(id string, status string) error { |
Owner
Author
There was a problem hiding this comment.
setVolumeStatus centralizes the simple status-only actions. Similar action handlers in the API layer can be reviewed by checking which action maps to which status transition here.
a23d09d to
ac36a97
Compare
6c507e9 to
9ee66c6
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Main Review Points
Verification