-
Notifications
You must be signed in to change notification settings - Fork 254
OpenStack Hibernation #2722
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
Open
msu8
wants to merge
9
commits into
openshift:master
Choose a base branch
from
msu8:openstack_hibernation
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
OpenStack Hibernation #2722
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
4e05854
Implement OpenStack hibernation support
msu8 d177558
Add tests, better error handling, resource checking, finalize scripts
msu8 07cf30b
add docs, more changes
msu8 f3004f0
Merge branch 'openshift:master' into openstack_hibernation
msu8 cd33a48
- Address first wave of review feedback
msu8 546b625
Merge branch 'openstack_hibernation' of github.com:msu8/hive into ope…
msu8 541b6dd
Remove quota validation, structs, client creation from upstream, snap…
msu8 f2ca9e3
Merge branch 'master' into openstack_hibernation
msu8 33efb34
fix missing func for testing, try to fix dependencies
msu8 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -151,10 +151,13 @@ require ( | |
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.30.3 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.34.0 | ||
github.com/aws/smithy-go v1.22.4 | ||
github.com/gophercloud/gophercloud v1.14.1 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: Any chance we could group all the gophercloud deps together? |
||
github.com/gophercloud/utils/v2 v2.0.0-20250212084022-725b94822eeb | ||
gopkg.in/evanphx/json-patch.v4 v4.12.0 | ||
) | ||
|
||
require github.com/gophercloud/utils v0.0.0-20231010081019-80377eca5d56 | ||
|
||
require ( | ||
4d63.com/gochecknoglobals v0.2.2 // indirect | ||
cel.dev/expr v0.19.1 // indirect | ||
|
@@ -259,7 +262,7 @@ require ( | |
github.com/google/btree v1.1.3 // indirect | ||
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect | ||
github.com/googleapis/gax-go/v2 v2.14.1 // indirect | ||
github.com/gophercloud/gophercloud/v2 v2.5.0 // indirect | ||
github.com/gophercloud/gophercloud/v2 v2.8.0 // indirect | ||
github.com/gordonklaus/ineffassign v0.1.0 // indirect | ||
github.com/gostaticanalysis/analysisutil v0.7.1 // indirect | ||
github.com/gostaticanalysis/comment v1.4.2 // indirect | ||
|
@@ -270,6 +273,7 @@ require ( | |
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect | ||
github.com/hashicorp/go-immutable-radix/v2 v2.1.0 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect | ||
github.com/hashicorp/go-uuid v1.0.3 // indirect | ||
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
|
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(Latent)