-
Notifications
You must be signed in to change notification settings - Fork 2
Jd bgp works #76
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
base: main
Are you sure you want to change the base?
Jd bgp works #76
Conversation
Summary of ChangesHello @darmach, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request significantly extends the OpenStack network automation capabilities within the 'os_networks' Ansible role. It introduces new functionalities for provisioning and managing OpenStack address scopes and subnet pools, which are fundamental for advanced IP address management. Furthermore, it enhances subnet creation by allowing the specification of 'prefix_length' and provides explicit control over Source Network Address Translation (SNAT) for OpenStack routers. A minor correction to a parameter name in the subnet module ensures better alignment with OpenStack's API. While the PR title "Jd bgp works" suggests a broader goal, these changes specifically focus on robust OpenStack network resource orchestration. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
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.
Code Review
This pull request adds support for OpenStack address scopes, subnet pools, and other networking features, likely for BGP support. The changes are functionally useful, but there are several areas for improvement. The new variables os_address_scopes and os_subnet_pools lack default values, which will cause playbook failures if they are not defined; I've added comments with fixes. Additionally, the new features are not documented in README.md or defaults/main.yml, and a bug fix introduces a breaking change (subnetpool -> subnet_pool) that should be communicated. For future maintainability, consider using module_defaults to reduce the duplication of authentication parameters across tasks.
| name: "{{ item.name }}" | ||
| shared: "{{ item.shared | default(omit) }}" | ||
| ip_version: "{{ item.ip_version | default(omit) }}" | ||
| with_items: "{{ os_address_scopes }}" |
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.
The variable os_address_scopes is not defined in the role's defaults. If it's not provided by the user, this task will fail. To make it optional and prevent errors, please provide a default value. This will make the role more robust by simply skipping the loop if the variable is not defined.
with_items: "{{ os_address_scopes | default([]) }}"| shared: "{{ item.shared | default(omit) }}" | ||
| prefixes: "{{ item.prefixes }}" | ||
| address_scope: "{{ item.address_scope }}" | ||
| with_items: "{{ os_subnet_pools }}" |
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.
| name: "{{ item.name }}" | ||
| shared: "{{ item.shared | default(omit) }}" | ||
| ip_version: "{{ item.ip_version | default(omit) }}" | ||
| with_items: "{{ os_address_scopes }}" |
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.
loop: instead of with_items:
| shared: "{{ item.shared | default(omit) }}" | ||
| prefixes: "{{ item.prefixes }}" | ||
| address_scope: "{{ item.address_scope }}" | ||
| with_items: "{{ os_subnet_pools }}" |
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.
ditto
| ipv6_address_mode: "{{ item.1.ipv6_address_mode | default(omit) }}" | ||
| ipv6_ra_mode: "{{ item.1.ipv6_ra_mode | default(omit) }}" | ||
| use_default_subnetpool: "{{ item.1.use_default_subnetpool | default(omit) }}" | ||
| subnetpool: "{{ item.1.subnetpool | default(omit) }}" |
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 does this come from?
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.
Looks incompatible backwards
No description provided.