-
Notifications
You must be signed in to change notification settings - Fork 2
Unset all upper constraints files #72
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?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,7 +3,7 @@ | |
| os_deploy_templates_venv: | ||
|
|
||
| # Upper constraints file for installation of Python dependencies. | ||
| os_deploy_templates_upper_constraints_file: https://releases.openstack.org/constraints/upper/2024.1 | ||
| os_deploy_templates_upper_constraints_file: | ||
|
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. For consistency with other variables in the collection (e.g., os_deploy_templates_upper_constraints_file: "" |
||
|
|
||
| # Authentication type. | ||
| os_deploy_templates_auth_type: | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,7 +13,7 @@ os_images_dib_venv: "{{ os_images_venv }}" | |
| os_images_package_state: present | ||
|
|
||
| # Use Caracal upper constraints | ||
| os_images_upper_constraints_file: https://releases.openstack.org/constraints/upper/2024.1 | ||
| os_images_upper_constraints_file: | ||
|
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. For consistency with os_images_upper_constraints_file: "" |
||
|
|
||
| # Upper constraints file for installation of DIB to build images. | ||
| os_images_dib_upper_constraints_file: "" | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -102,4 +102,4 @@ os_networks_security_groups: [] | |
| os_networks_rbac: [] | ||
|
|
||
| # Upper constraints file for installation of Python dependencies. | ||
| os_networks_upper_constraints_file: https://releases.openstack.org/constraints/upper/2024.1 | ||
| os_networks_upper_constraints_file: | ||
|
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. For consistency with other variables in the collection (e.g., os_networks_upper_constraints_file: "" |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,4 +14,4 @@ os_openstackclient_state: present | |
| # Version of python-openstackclient to install, or unrestricted if empty. | ||
| os_openstackclient_version: | ||
| # Upper constraints file for installation of openstackclient. | ||
| os_openstackclient_upper_constraints_file: https://releases.openstack.org/constraints/upper/2024.1 | ||
| os_openstackclient_upper_constraints_file: | ||
|
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. For consistency with other variables in the collection (e.g., os_openstackclient_upper_constraints_file: "" |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,4 +15,4 @@ os_openstacksdk_state: present | |
| # Version of openstacksdk to install, or unrestricted if empty. | ||
| os_openstacksdk_version: | ||
| # Upper constraints file for installation of openstacksdk. | ||
| os_openstacksdk_upper_constraints_file: https://releases.openstack.org/constraints/upper/2024.1 | ||
| os_openstacksdk_upper_constraints_file: | ||
|
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. For consistency with other variables in the collection (e.g., os_openstacksdk_upper_constraints_file: "" |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -38,4 +38,4 @@ os_projects_domains: [] | |
| # - 'public_key_file': Path to the SSH public key on the control host. | ||
| # 'quotas': Optional dict mapping quota names to their values. | ||
| os_projects: [] # noqa var-naming[no-role-prefix] | ||
| os_projects_upper_constraints_file: https://releases.openstack.org/constraints/upper/2024.1 | ||
| os_projects_upper_constraints_file: | ||
|
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. For consistency with other variables in the collection (e.g., os_projects_upper_constraints_file: "" |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,7 @@ | |
| # Path to a directory in which to create a virtualenv. | ||
| os_ratings_venv: | ||
| # Upper constraints file for installation of Python dependencies. | ||
| os_ratings_upper_constraints_file: https://releases.openstack.org/constraints/upper/2024.1 | ||
| os_ratings_upper_constraints_file: | ||
|
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. For consistency with other variables in the collection (e.g., os_ratings_upper_constraints_file: "" |
||
|
|
||
| # Environment variables for use with OpenStack CLI. | ||
| os_ratings_environment: {} | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -34,4 +34,4 @@ os_volumes: [] # noqa: var-naming[no-role-prefix] | |
| os_volumes_types: [] | ||
|
|
||
| # A file or URL containing Python upper constraints. | ||
| os_volumes_upper_constraints_file: https://releases.openstack.org/constraints/upper/2024.1 | ||
| os_volumes_upper_constraints_file: | ||
|
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. For consistency with other variables in the collection (e.g., os_volumes_upper_constraints_file: "" |
||
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.
For consistency with other variables in the collection (e.g.,
os_images_dib_upper_constraints_fileinroles/os_images/defaults/main.yml), it would be better to explicitly set this to an empty string ("") rather thannull(which is what an empty value becomes in YAML). This makes the intent clearer and maintains a consistent style across the roles.