| {%- if pillar.neutron.gateway is defined %} |
| {%- from "neutron/map.jinja" import gateway as neutron with context %} |
| {%- else %} |
| {%- from "neutron/map.jinja" import compute as neutron with context %} |
| {%- endif %} |
| [DEFAULT] |
| |
| # |
| # From neutron.metadata.agent |
| # |
| |
| # Location for Metadata Proxy UNIX domain socket. (string value) |
| #metadata_proxy_socket = $state_path/metadata_proxy |
| |
| # User (uid or name) running metadata proxy after its initialization (if empty: |
| # agent effective user). (string value) |
| #metadata_proxy_user = |
| |
| # Group (gid or name) running metadata proxy after its initialization (if |
| # empty: agent effective group). (string value) |
| #metadata_proxy_group = |
| |
| # Certificate Authority public key (CA cert) file for ssl (string value) |
| #auth_ca_cert = <None> |
| |
| # IP address or DNS name of Nova metadata server. (unknown value) |
| #nova_metadata_host = 127.0.0.1 |
| nova_metadata_host = {{ neutron.metadata.host }} |
| |
| # TCP Port used by Nova metadata server. (port value) |
| # Minimum value: 0 |
| # Maximum value: 65535 |
| #nova_metadata_port = 8775 |
| |
| # When proxying metadata requests, Neutron signs the Instance-ID header with a |
| # shared secret to prevent spoofing. You may select any string for a secret, |
| # but it must match here and in the configuration used by the Nova Metadata |
| # Server. NOTE: Nova uses the same config key, but in [neutron] section. |
| # (string value) |
| #metadata_proxy_shared_secret = |
| metadata_proxy_shared_secret = {{ neutron.metadata.password }} |
| |
| # Protocol to access nova metadata, http or https (string value) |
| # Possible values: |
| # http - <No description provided> |
| # https - <No description provided> |
| #nova_metadata_protocol = http |
| nova_metadata_protocol = http |
| |
| # Allow to perform insecure SSL (https) requests to nova metadata (boolean |
| # value) |
| #nova_metadata_insecure = false |
| |
| # Client certificate for nova metadata api server. (string value) |
| #nova_client_cert = |
| |
| # Private key of client certificate. (string value) |
| #nova_client_priv_key = |
| |
| # Metadata Proxy UNIX domain socket mode, 4 values allowed: 'deduce': deduce |
| # mode from metadata_proxy_user/group values, 'user': set metadata proxy socket |
| # mode to 0o644, to use when metadata_proxy_user is agent effective user or |
| # root, 'group': set metadata proxy socket mode to 0o664, to use when |
| # metadata_proxy_group is agent effective group or root, 'all': set metadata |
| # proxy socket mode to 0o666, to use otherwise. (string value) |
| # Allowed values: deduce, user, group, all |
| #metadata_proxy_socket_mode = deduce |
| |
| # Number of separate worker processes for metadata server (defaults to half of |
| # the number of CPUs) (integer value) |
| #metadata_workers = <num_of_cpus> / 2 |
| {%- if neutron.metadata.workers is defined %} |
| metadata_workers = {{ neutron.metadata.workers }} |
| {%- endif %} |
| |
| # Number of backlog requests to configure the metadata server socket with |
| # (integer value) |
| #metadata_backlog = 4096 |
| |
| {%- if neutron.logging is defined %} |
| {%- set _data = neutron.logging %} |
| {%- include "oslo_templates/files/queens/oslo/_log.conf" %} |
| {%- endif %} |
| |
| [agent] |
| |
| # |
| # From neutron.metadata.agent |
| # |
| |
| # Seconds between nodes reporting state to server; should be less than |
| # agent_down_time, best if it is half or less than agent_down_time. (floating |
| # point value) |
| #report_interval = 30 |
| |
| # Log agent heartbeats (boolean value) |
| #log_agent_heartbeats = false |
| |
| {%- if neutron.cache is defined %} |
| [cache] |
| {%- set _data = neutron.cache %} |
| {%- include "oslo_templates/files/queens/oslo/_cache.conf" %} |
| {%- endif %} |