Execution
Date
08 Dec 2025 13:39:52 +0000
Duration
00:35:02.03
Controller
aio1.openstack.local
User
root
Versions
Ansible
2.18.6
ara
1.7.4 / 1.7.4
Python
3.12.3
Summary
2
Hosts
1377
Tasks
1365
Results
104
Plays
504
Files
0
Records
File: /home/zuul/src/opendev.org/openstack/openstack-ansible-os_adjutant/defaults/main.yml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 | --- # Copyright 2016, Rackspace US, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. ## Verbosity Options debug: false # Set the package install state for distribution packages # Options are 'present' and 'latest' adjutant_package_state: "{{ package_state | default('latest') }}" adjutant_service_user_name: adjutant adjutant_system_group_name: adjutant adjutant_system_user_name: adjutant adjutant_system_comment: adjutant system user adjutant_system_shell: /bin/false adjutant_system_home_folder: "/var/lib/{{ adjutant_system_user_name }}" adjutant_venv_tag: "{{ venv_tag | default('untagged') }}" adjutant_bin: "/openstack/venvs/adjutant-{{ adjutant_venv_tag }}/bin" adjutant_git_repo: https://opendev.org/openstack/adjutant adjutant_git_install_branch: master adjutant_upper_constraints_url: >- {{ requirements_git_url | default('https://releases.openstack.org/constraints/upper/' ~ requirements_git_install_branch | default('master')) }} adjutant_git_constraints: - "--constraint {{ adjutant_upper_constraints_url }}" adjutant_user_domain_name: Default adjutant_user_domain_id: default adjutant_keystone_auth_plugin: password adjutant_galera_address: "{{ galera_address | default('127.0.0.1') }}" adjutant_galera_database: adjutant adjutant_galera_user: adjutant adjutant_galera_use_ssl: "{{ galera_use_ssl | default(False) }}" adjutant_galera_ssl_ca_cert: "{{ galera_ssl_ca_cert | default('/etc/ssl/certs/galera-ca.pem') }}" adjutant_galera_port: "{{ galera_port | default('3306') }}" adjutant_galera_setup_host: "{{ openstack_db_setup_host | default('localhost') }}" adjutant_galera_setup_python_interpreter: >- {{ openstack_db_setup_python_interpreter | default( (adjutant_galera_setup_host == 'localhost') | ternary(ansible_playbook_python, ansible_python['executable'])) }} ## Service Type and Data adjutant_role_name: admin adjutant_service_region: "{{ service_region | default('RegionOne') }}" adjutant_service_name: adjutant adjutant_service_type: registration adjutant_service_description: "Adjutant Registration Service" adjutant_service_port: 5050 adjutant_service_project_name: service adjutant_service_in_ldap: "{{ service_ldap_backend_enabled | default(False) }}" adjutant_service_setup_host: "{{ openstack_service_setup_host | default('localhost') }}" adjutant_service_setup_host_python_interpreter: >- {{ openstack_service_setup_host_python_interpreter | default( (adjutant_service_setup_host == 'localhost') | ternary(ansible_playbook_python, ansible_python['executable'])) }} adjutant_bind_address: "{{ openstack_service_bind_address | default('0.0.0.0') }}" adjutant_service_proto: http adjutant_service_publicuri_proto: "{{ openstack_service_publicuri_proto | default(adjutant_service_proto) }}" adjutant_service_adminuri_proto: "{{ openstack_service_adminuri_proto | default(adjutant_service_proto) }}" adjutant_service_internaluri_proto: "{{ openstack_service_internaluri_proto | default(adjutant_service_proto) }}" adjutant_service_publicuri: "{{ adjutant_service_publicuri_proto }}://{{ external_lb_vip_address }}:{{ adjutant_service_port }}" adjutant_service_publicurl: "{{ adjutant_service_publicuri }}/v1/" adjutant_service_adminuri: "{{ adjutant_service_adminuri_proto }}://{{ internal_lb_vip_address }}:{{ adjutant_service_port }}" adjutant_service_adminurl: "{{ adjutant_service_adminuri }}/v1/" adjutant_service_internaluri: "{{ adjutant_service_internaluri_proto }}://{{ internal_lb_vip_address }}:{{ adjutant_service_port }}" adjutant_service_internalurl: "{{ adjutant_service_internaluri }}/v1/" adjutant_horizon_publicurl: "{{ openstack_service_publicuri_proto | default(adjutant_service_proto) }}://{{ external_lb_vip_address }}/" # uWSGI settings adjutant_wsgi_threads: 1 adjutant_wsgi_processes_max: 16 adjutant_wsgi_processes: >- {{ [[(ansible_facts['processor_vcpus'] // ansible_facts['processor_threads_per_core']) | default(1), 1] | max * 2, adjutant_wsgi_processes_max] | min }} adjutant_use_uwsgi: true adjutant_uwsgi_tls: crt: "{{ adjutant_ssl_cert }}" key: "{{ adjutant_ssl_key }}" adjutant_email_backend: django.core.mail.backends.smtp.EmailBackend adjutant_email_host: localhost adjutant_email_port: 587 adjutant_email_host_user: adjutant adjutant_email_use_tls: true adjutant_email_use_ssl: false adjutant_email_reply_address: no-reply@example.com adjutant_email_from_address: bounce+%(task_uuid)s@example.com adjutant_email_notification_address: example@example.com adjutant_email_signups_notification_address: signups@example.com adjutant_active_delegate_apis: - RoleList - SignUp - UpdateProjectQuotas - UserDetail - UserList - UserResetPassword - UserRoles - UserUpdateEmail adjutant_role_mapping: admin: - project_admin - project_mod - heat_stack_owner - member project_admin: - project_admin - project_mod - heat_stack_owner - member project_mod: - project_mod - heat_stack_owner - member adjutant_blacklisted_roles: - admin - rating adjutant_default_users_to_project_action: [] adjutant_default_roles_to_project_action: [] adjutant_default_quota_size: small adjutant_signup_allow_auto_approve: false adjutant_quota_allow_auto_approve: false adjutant_quota_size_difference_threshold: 0.1 adjutant_quota_auto_approve_days: 30 adjutant_quota_sizes: small: cinder: gigabytes: 5000 snapshots: 50 volumes: 20 neutron: floatingip: 10 network: 3 port: 50 router: 3 security_group: 20 security_group_rule: 100 subnet: 3 nova: cores: 20 fixed_ips: 0 floating_ips: 10 injected_file_content_bytes: 10240 injected_files: 5 instances: 10 key_pairs: 50 metadata_items: 128 ram: 65536 security_group_rules: 100 security_groups: 20 octavia: health_monitor: 5 listener: 1 load_balancer: 1 member: 2 pool: 1 medium: cinder: gigabytes: 10000 snapshots: 300 volumes: 100 neutron: floatingip: 25 network: 5 port: 250 router: 5 security_group: 50 security_group_rule: 400 subnet: 5 nova: cores: 100 fixed_ips: 0 floating_ips: 25 injected_file_content_bytes: 10240 injected_files: 5 instances: 50 key_pairs: 50 metadata_items: 128 ram: 327680 security_group_rules: 400 security_groups: 50 octavia: health_monitor: 50 listener: 5 load_balancer: 5 member: 5 pool: 5 large: cinder: gigabytes: 50000 snapshots: 600 volumes: 200 neutron: floatingip: 50 network: 10 port: 500 router: 10 security_group: 100 security_group_rule: 800 subnet: 10 nova: cores: 200 fixed_ips: 0 floating_ips: 50 injected_file_content_bytes: 10240 injected_files: 5 instances: 100 key_pairs: 50 metadata_items: 128 ram: 655360 security_group_rules: 800 security_groups: 100 octavia: health_monitor: 100 listener: 10 load_balancer: 10 member: 10 pool: 10 adjutant_quota_sizes_asc: - small - medium - large adjutant_quota_services: "*": - cinder - neutron - nova # Additonal Quota Service # - octavia adjutant_adjutant_conf_overrides: {} adjutant_api_uwsgi_ini_overrides: {} adjutant_api_init_overrides: {} ## Service Name-Group Mapping adjutant_services: adjutant-api: group: adjutant_api service_name: adjutant-api service_enabled: true init_config_overrides: "{{ adjutant_api_init_overrides }}" execstarts: "{{ adjutant_bin }}/adjutant-api" wsgi_app: "{{ adjutant_use_uwsgi }}" wsgi_name: adjutant-api-wsgi uwsgi_overrides: "{{ adjutant_api_uwsgi_ini_overrides }}" uwsgi_bind_address: "{{ adjutant_bind_address }}" uwsgi_port: "{{ adjutant_service_port }}" uwsgi_tls: "{{ adjutant_backend_ssl | ternary(adjutant_uwsgi_tls, {}) }}" adjutant_pip_install_args: "{{ pip_install_options | default('') }}" adjutant_venv_python_executable: "{{ openstack_venv_python_executable | default('python3') }}" adjutant_pip_packages: - "git+{{ adjutant_git_repo }}@{{ adjutant_git_install_branch }}#egg=python-adjutant" - cryptography - systemd-python adjutant_pip_extra_packages: - mysqlclient ### ### Backend TLS ### # Define if communication between haproxy and service backends should be # encrypted with TLS. adjutant_backend_ssl: "{{ openstack_service_backend_ssl | default(False) }}" # Storage location for SSL certificate authority adjutant_pki_dir: "{{ openstack_pki_dir | default('/etc/openstack_deploy/pki') }}" # Delegated host for operating the certificate authority adjutant_pki_setup_host: "{{ openstack_pki_setup_host | default('localhost') }}" # adjutant server certificate adjutant_pki_keys_path: "{{ adjutant_pki_dir ~ '/certs/private/' }}" adjutant_pki_certs_path: "{{ adjutant_pki_dir ~ '/certs/certs/' }}" adjutant_pki_intermediate_cert_name: "{{ openstack_pki_service_intermediate_cert_name | default('ExampleCorpIntermediate') }}" adjutant_pki_regen_cert: "" adjutant_pki_san: "{{ openstack_pki_san | default('DNS:' ~ ansible_facts['hostname'] ~ ',IP:' ~ management_address) }}" adjutant_pki_certificates: - name: "adjutant_{{ ansible_facts['hostname'] }}" provider: ownca cn: "{{ ansible_facts['hostname'] }}" san: "{{ adjutant_pki_san }}" signed_by: "{{ adjutant_pki_intermediate_cert_name }}" # adjutant destination files for SSL certificates adjutant_ssl_cert: /etc/adjutant/adjutant.pem adjutant_ssl_key: /etc/adjutant/adjutant.key # Installation details for SSL certificates adjutant_pki_install_certificates: - src: "{{ adjutant_user_ssl_cert | default(adjutant_pki_certs_path ~ 'adjutant_' ~ ansible_facts['hostname'] ~ '-chain.crt') }}" dest: "{{ adjutant_ssl_cert }}" owner: "{{ adjutant_system_user_name }}" group: "{{ adjutant_system_user_name }}" mode: "0644" - src: "{{ adjutant_user_ssl_key | default(adjutant_pki_keys_path ~ 'adjutant_' ~ ansible_facts['hostname'] ~ '.key.pem') }}" dest: "{{ adjutant_ssl_key }}" owner: "{{ adjutant_system_user_name }}" group: "{{ adjutant_system_user_name }}" mode: "0600" # Define user-provided SSL certificates # adjutant_user_ssl_cert: <path to cert on ansible deployment host> # adjutant_user_ssl_key: <path to cert on ansible deployment host> |