File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ Each item should be a dict containing the following items:
56
56
- ` public_key_file ` : Path to the SSH public key on the control host.
57
57
- ` quotas ` : Optional dict mapping quota names to their values.
58
58
59
- ` os_projects_upper_constraints ` is a path to an upper constraints file which
59
+ ` os_projects_upper_constraints_file ` is a path to an upper constraints file which
60
60
is passed through to the role dependencies.
61
61
62
62
Dependencies
@@ -77,7 +77,7 @@ resources.
77
77
roles:
78
78
- role: stackhpc.openstack.os_projects
79
79
os_projects_venv: "~/os-projects-venv"
80
- os_projects_upper_constraints : "https://releases.openstack.org/constraints/upper/2023.1"
80
+ os_projects_upper_constraints_file : "https://releases.openstack.org/constraints/upper/2023.1"
81
81
os_projects_auth_type: "password"
82
82
os_projects_auth:
83
83
project_name: <keystone project>
Original file line number Diff line number Diff line change @@ -38,4 +38,4 @@ os_projects_domains: []
38
38
# - 'public_key_file': Path to the SSH public key on the control host.
39
39
# 'quotas': Optional dict mapping quota names to their values.
40
40
os_projects : [] # noqa var-naming[no-role-prefix]
41
- os_projects_upper_constraints : https://releases.openstack.org/constraints/upper/2023.1
41
+ os_projects_upper_constraints_file : https://releases.openstack.org/constraints/upper/2023.1
Original file line number Diff line number Diff line change 2
2
dependencies :
3
3
- role : stackhpc.openstack.os_openstacksdk
4
4
os_openstacksdk_venv : " {{ os_projects_venv }}"
5
- os_openstacksdk_upper_constraints_file : " {{ os_projects_upper_constraints | default(None) }}"
5
+ # Keep support for old naming scheme ``os_projects_upper_constraints``.
6
+ os_openstacksdk_upper_constraints_file : " {{ os_projects_upper_constraints_file | default(os_projects_upper_constraints) | default(None) }}"
6
7
7
8
- role : stackhpc.openstack.os_openstackclient
8
9
os_openstackclient_venv : " {{ os_projects_venv }}"
9
- os_openstackclient_upper_constraints_file : " {{ os_projects_upper_constraints | default(None) }}"
10
+ os_openstackclient_upper_constraints_file : " {{ os_projects_upper_constraints_file | default( os_projects_upper_constraints) | default(None) }}"
You can’t perform that action at this time.
0 commit comments