
It provides an easy to exploit DoS opportunity. Change-Id: I3839e9930511ff2d3a6b69bef5ae898d92a21ff1
73 lines
2.2 KiB
YAML
73 lines
2.2 KiB
YAML
---
|
|
keystone_source_install: true
|
|
# *_git_url can be overridden by local clones for offline installs
|
|
keystone_git_url: https://opendev.org/openstack/keystone
|
|
keystone_git_folder: /opt/stack/keystone
|
|
|
|
keystone_lockout_security_attempts: -1
|
|
keystone_lockout_duration: 1800
|
|
|
|
skip_install: False
|
|
# set to true to skip installing ironic dependencies
|
|
skip_package_install: False
|
|
# set to true to skip generation of configs and ironic db configuration
|
|
skip_bootstrap: False
|
|
# set to true to skip starting ironic services and dependencies
|
|
skip_start: False
|
|
|
|
# Parameters for connecting to mysql for database manipulation.
|
|
mysql_username: "root"
|
|
mysql_password: ""
|
|
|
|
# Support for CORS configuration
|
|
# By default CORS support is disabled.
|
|
enable_cors: false
|
|
# Origin to accept for CORS requests
|
|
cors_allowed_origin: "http://localhost:8000"
|
|
# bifrost utilizes noauth mode by default and as such
|
|
# the setting should be set to false. This setting should
|
|
# not need to be modified by the user.
|
|
enable_cors_credential_support: false
|
|
|
|
network_interface: "virbr0"
|
|
ans_network_interface: "{{ network_interface | replace('-', '_') }}"
|
|
internal_ip: "{{ hostvars[inventory_hostname]['ansible_' + ans_network_interface]['ipv4']['address'] }}"
|
|
|
|
# Defaults required by this role that are normally inherited via
|
|
# other roles.
|
|
file_url_port: 8080
|
|
http_boot_folder: /httpboot
|
|
|
|
# Settings related to installing bifrost in a virtual environment
|
|
enable_venv: true
|
|
bifrost_venv_dir: "{{ lookup('env', 'VENV') or '/opt/stack/bifrost' }}"
|
|
bifrost_venv_env:
|
|
VIRTUAL_ENV: "{{ bifrost_venv_dir }}"
|
|
PATH: "{{ bifrost_venv_dir }}/bin:{{ ansible_env.PATH }}" # include regular path via lookup env
|
|
pydoc: "python -m pydoc"
|
|
|
|
|
|
keystone:
|
|
debug: true
|
|
bootstrap:
|
|
enabled: true
|
|
username: admin
|
|
password: ChangeThisPa55w0rd
|
|
project_name: admin
|
|
admin_url: "http://127.0.0.1:35357/v3/"
|
|
public_url: "http://127.0.0.1:5000/v3/"
|
|
internal_url: "http://127.0.0.1:5000/v3/"
|
|
region_name: "RegionOne"
|
|
message_queue:
|
|
username: keystone
|
|
password: ChangeThisPa55w0rd
|
|
host: localhost
|
|
port: 5672
|
|
database:
|
|
name: keystone
|
|
username: keystone
|
|
password: ChangeThisPa55w0rd
|
|
host: localhost
|
|
|
|
pip_opts: "{{ lookup('env', 'PIP_OPTS') | default('') }}"
|