-
Notifications
You must be signed in to change notification settings - Fork 0
Add support for missing services #3
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
60 commits
Select commit
Hold shift + click to select a range
b1e1624
update project structure and apply some fixes
287c9fd
update golangci-lint version in test workflow
73ecab3
bump google.golang.org/grpc and golang.org/x/net
1399eab
add baremetal/drivers and blockstorage/snapshots
ecdd35d
update baremetal drivers
41460ea
add baremetal tables
4b0f3da
add blockstorage/qos
d7b2de7
add availabiilty zones, backups, limits and qos for blockstorage
26238b3
fix spec and baremetal microversion
1ecfa74
add blockstorage/limits
1881c27
add compute/images
fbaa606
add service info in table names
431c8c8
add compute/limits
01795ce
add compute/network
9d6ae8f
apply formatting
99a028f
add compute/secgroups and small fix on compute/limits
83cf966
implement spec validation and comment tables without resource
4af157e
fix blockstorage/limits columns types
ba7a3f4
use gophercloud blockstorage/limits struct
17c1416
add compute/tenantnetworks and compute/serverusage
3f3659a
add blockstorage/quotasets and blockstorage/services
378b61b
add blockstorage/quotasets_usage
3cda75e
fix blockstorage/volumes_backups and compute/limits
6a93f4d
update error handling
765f6a8
apply formatting
f46f3fd
add identity/domains, tenants and imageservice members
f832cfc
add identity/services
b30a03b
fix small bugs
19fa3ed
change endpoint names
ae888ed
update dependecies and apply formatting
89ba6cd
use tagtype from utils
d97acdb
add include/exclude tables in spec. With @gambu94
7b69d22
fix match func, add some additional tests. With @gambu94
7dbac8f
apply formatting
e411e67
chore: remove unused func, add all available tables changing the spec…
f87a210
new destination DB URI and minor fixes on limits to solve incremental…
e52ad38
chore: update deps
479f824
chore: revert api naming
357ddad
fix: image service renaming
3bb09fe
fix: remove x := x in for loops, reduntant with Go1.22
f085d76
fix: client getTables method
e39f4a2
update goreleaser ldflags
8cceeec
fix: add kind to plugin init and change to var for ldflags to work
90e2302
fix: remove deprecated API
97b1c35
fix: remove commented code and apply formatting
d724a46
fix: image members and instance security groups
292da01
add: identity groups, regions, registeredlimits and roles
978a353
replace internals with cq-plugin-utils lib
2a58b04
add identity catalog
640f5db
fix: identity/services and remove catalog
1798a29
bump to plugin-sdk v4.32.1 and gophercloud v1.11.0
b573d6f
add checks on input spec
0853ff7
add check on spec at plugin loading time
7ac5c76
fix: check spec endpoint is not nil
42122b0
chore: update cq-plugin-utils
6ca84bb
fix: update .gjthub ci
c803aa2
update .gitignore
c422a96
fix: prevent go doc fail when spec is empty
e225263
fix: change from goreleaser to makefile.
c5ceee3
fix: golangci-lint workflow
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
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 |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| package plugin | ||
|
|
||
| var ( | ||
| Name = "dihedron-openstack" | ||
| Kind = "source" | ||
| Version = "development" | ||
| ) |
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 |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| package resources | ||
| package utils | ||
|
|
||
| import ( | ||
| "fmt" | ||
|
|
||
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 |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| package resources | ||
| package utils | ||
|
|
||
| import ( | ||
| "encoding/json" | ||
|
|
||
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
2 changes: 1 addition & 1 deletion
2
resources/attachment_hosts.go → ...services/blockstorage/attachment_hosts.go
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 |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| package resources | ||
| package blockstorage | ||
|
|
||
| import ( | ||
| "context" | ||
|
|
||
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
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
2 changes: 1 addition & 1 deletion
2
resources/aggregates.go → resources/services/compute/aggregates.go
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 |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| package resources | ||
| package compute | ||
|
|
||
| import ( | ||
| "context" | ||
|
|
||
2 changes: 1 addition & 1 deletion
2
resources/flavor_accesses.go → ...urces/services/compute/flavor_accesses.go
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 |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| package resources | ||
| package compute | ||
|
|
||
| import ( | ||
| "context" | ||
|
|
||
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 |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| package resources | ||
| package compute | ||
|
|
||
| import ( | ||
| "context" | ||
|
|
||
2 changes: 1 addition & 1 deletion
2
resources/hypervisors.go → resources/services/compute/hypervisors.go
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 |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| package resources | ||
| package compute | ||
|
|
||
| import ( | ||
| "context" | ||
|
|
||
2 changes: 1 addition & 1 deletion
2
resources/instance_addresses.go → ...es/services/compute/instance_addresses.go
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 |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| package resources | ||
| package compute | ||
|
|
||
| import ( | ||
| "context" | ||
|
|
||
2 changes: 1 addition & 1 deletion
2
resources/instance_attached_volumes.go → ...ices/compute/instance_attached_volumes.go
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 |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| package resources | ||
| package compute | ||
|
|
||
| import ( | ||
| "context" | ||
|
|
||
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
2 changes: 1 addition & 1 deletion
2
resources/instance_flavors.go → ...rces/services/compute/instance_flavors.go
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 |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| package resources | ||
| package compute | ||
|
|
||
| import ( | ||
| "context" | ||
|
|
||
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
2 changes: 1 addition & 1 deletion
2
resources/instance_security_groups.go → ...vices/compute/instance_security_groups.go
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 |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| package resources | ||
| package compute | ||
|
|
||
| import ( | ||
| "context" | ||
|
|
||
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.
Uh oh!
There was an error while loading. Please reload this page.