We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I've encountered that while running CI with the following error:
TASK [stackhpc.openstack.os_projects : Ensure quotas are set] ****************** ... "msg": "BadRequestException: 400: Client Error for url: <redacted, Invalid input for field/attribute quota_set. Value: {'fixed_ips': -1, 'injected_file_content_bytes': -1}. Additional properties are not allowed ('fixed_ips' was unexpected)"}
Fixed IP quotas work only up to version 2.35 as per documentation: https://docs.ansible.com/ansible/latest/collections/openstack/cloud/quota_module.html#parameter-fixed_ips
Solution: export OS_COMPUTE_API_VERSION=2.3
export OS_COMPUTE_API_VERSION=2.3
The text was updated successfully, but these errors were encountered:
Merge pull request #32 from /issues/31
4dfa47d
os_projects: Remove fixed_ips quota
No branches or pull requests
I've encountered that while running CI with the following error:
TASK [stackhpc.openstack.os_projects : Ensure quotas are set] ****************** ... "msg": "BadRequestException: 400: Client Error for url: <redacted, Invalid input for field/attribute quota_set. Value: {'fixed_ips': -1, 'injected_file_content_bytes': -1}. Additional properties are not allowed ('fixed_ips' was unexpected)"}
Fixed IP quotas work only up to version 2.35 as per documentation:
https://docs.ansible.com/ansible/latest/collections/openstack/cloud/quota_module.html#parameter-fixed_ips
Solution:
export OS_COMPUTE_API_VERSION=2.3
The text was updated successfully, but these errors were encountered: