-
Notifications
You must be signed in to change notification settings - Fork 14
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
removing Volume Modules, Redirecting in runtime.yml #95
base: main
Are you sure you want to change the base?
Conversation
recheck |
I needed to change the volume_backup_info integration test as it was looking whether "backups" is defined and the native openstack module calls it "volume_backups" so it was failing. This may have impact on older Scripts and it may need another workaround |
recheck |
1 similar comment
recheck |
recheck |
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.
except of need to drop too much rerouting (for things not even existing in OTC) and merge conflict - good to go
meta/runtime.yml
Outdated
redirect: openstack.cloud.volume_snapshot_info | ||
auth: | ||
redirect: openstack.cloud.auth | ||
baremetal_inspect: |
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.
baremetal things are not necessary for us
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.
Done
meta/runtime.yml
Outdated
redirect: openstack.cloud.catalog_endpoint | ||
catalog_service: | ||
redirect: openstack.cloud.catalog_service | ||
coe_cluster: |
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.
not required
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.
Done
meta/runtime.yml
Outdated
redirect: openstack.cloud.catalog_service | ||
coe_cluster: | ||
redirect: openstack.cloud.coe_cluster | ||
coe_cluster_template: |
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.
not required
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.
Done
meta/runtime.yml
Outdated
redirect: openstack.cloud.config | ||
endpoint: | ||
redirect: openstack.cloud.endpoint | ||
federation_idp: |
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.
all federation is not working as intended - remove it
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.
Done
meta/runtime.yml
Outdated
redirect: openstack.cloud.federation_mapping_info | ||
group_assignment: | ||
redirect: openstack.cloud.group_assignment | ||
host_aggregate: |
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.
not required
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.
Done.
meta/runtime.yml
Outdated
redirect: openstack.cloud.keypair | ||
keypair_info: | ||
redirect: openstack.cloud.keypair_info | ||
keystone_federation_protocol: |
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.
not required
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.
Done.
meta/runtime.yml
Outdated
redirect: openstack.cloud.volume_info | ||
volume_snapshot: | ||
redirect: openstack.cloud.volume_snapshot | ||
|
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.
where is volume backup?
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.
ah, it is at the top - please move it here (alphabetical)
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.
Done.
recheck |
recheck |
1 similar comment
recheck |
Build failed.
|
Build failed.
|
I removed all volume_xx modules as they were replaced by openstack native ones #89
I redirected all modules we don't have in our collection to native openstack ones so that it's not necessary to use the full FQDN now. For example Instead of
openstack.cloud.server
you can now just writeserver
in integration tests oropentelekomcloud.cloud.server
which makes it simpler to use the modules.Closes #89