openstack-manuals/doc/common/locale/common.pot

33408 lines
1.4 MiB
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2014-09-17 06:14+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. When image changes, this message will be marked fuzzy or untranslated for you.
#. It doesn't matter what you translate it to: it's not used at all.
#: ./doc/common/section_getstart_dashboard.xml:16(None)
msgid "@@image: 'figures/horizon-screenshot.jpg'; md5=9471047adf0d93713be7f54b9db2b53c"
msgstr ""
#: ./doc/common/section_getstart_dashboard.xml:7(title)
msgid "OpenStack dashboard"
msgstr ""
#: ./doc/common/section_getstart_dashboard.xml:8(para)
msgid "The OpenStack dashboard is a modular <link href=\"https://www.djangoproject.com/\">Django web application</link> that provides a graphical interface to OpenStack services."
msgstr ""
#: ./doc/common/section_getstart_dashboard.xml:20(para)
msgid "The dashboard is usually deployed through <link href=\"http://code.google.com/p/modwsgi/\">mod_wsgi</link> in Apache. You can modify the dashboard code to make it suitable for different sites."
msgstr ""
#: ./doc/common/section_getstart_dashboard.xml:24(para)
msgid "From a network architecture point of view, this service must be accessible to customers and the public API for each OpenStack service. To use the administrator functionality for other services, it must also connect to Admin API endpoints, which should not be accessible by customers."
msgstr ""
#: ./doc/common/section_dashboard-configure-http.xml:7(title)
msgid "Configure the dashboard for HTTP"
msgstr ""
#: ./doc/common/section_dashboard-configure-http.xml:9(para)
msgid "You can configure the dashboard for a simple HTTP deployment. The standard installation uses a non-encrypted HTTP channel."
msgstr ""
#: ./doc/common/section_dashboard-configure-http.xml:13(para)
msgid "Specify the host for your OpenStack Identity Service endpoint in the <filename>/etc/openstack-dashboard/local_settings.py</filename> file with the <literal>OPENSTACK_HOST</literal> setting."
msgstr ""
#: ./doc/common/section_dashboard-configure-http.xml:18(para)
msgid "The following example shows this setting:"
msgstr ""
#: ./doc/common/section_dashboard-configure-http.xml:20(para)
msgid "The service catalog configuration in the Identity Service determines whether a service appears in the dashboard. For the full listing, see <link href=\"http://docs.openstack.org/developer/horizon/topics/settings.html\">Horizon Settings and Configuration</link>."
msgstr ""
#: ./doc/common/section_dashboard-configure-http.xml:29(para)
msgid "Restart Apache http server. For Ubuntu/Debian/SUSE:"
msgstr ""
#: ./doc/common/section_dashboard-configure-http.xml:31(para)
msgid "or for Fedora/RHEL/CentOS:"
msgstr ""
#: ./doc/common/section_dashboard-configure-http.xml:33(para)
msgid "Next, restart memcached:"
msgstr ""
#: ./doc/common/section_keystone-concepts-user-management.xml:7(title)
msgid "User management"
msgstr ""
#: ./doc/common/section_keystone-concepts-user-management.xml:8(para)
msgid "The main components of Identity user management are:"
msgstr ""
#: ./doc/common/section_keystone-concepts-user-management.xml:11(para)
msgid "<emphasis role=\"bold\">User</emphasis>. Represents a human user. Has associated information such as user name, password, and email. This example creates a user named <literal>alice</literal>:"
msgstr ""
#: ./doc/common/section_keystone-concepts-user-management.xml:18(para)
msgid "<emphasis role=\"bold\">Tenant</emphasis>. A project, group, or organization. When you make requests to OpenStack services, you must specify a tenant. For example, if you query the Compute service for a list of running instances, you get a list of all running instances in the tenant that you specified in your query. This example creates a tenant named <literal>acme</literal>:"
msgstr ""
#: ./doc/common/section_keystone-concepts-user-management.xml:28(para)
msgid "Because the term <emphasis>project</emphasis> was used instead of <emphasis>tenant</emphasis> in earlier versions of OpenStack Compute, some command-line tools use <literal>--project_id</literal> instead of <literal>--tenant-id</literal> or <literal>--os-tenant-id</literal> to refer to a tenant ID."
msgstr ""
#: ./doc/common/section_keystone-concepts-user-management.xml:39(para)
msgid "<emphasis role=\"bold\">Role</emphasis>. Captures the operations that a user can perform in a given tenant."
msgstr ""
#: ./doc/common/section_keystone-concepts-user-management.xml:41(para)
msgid "This example creates a role named <literal>compute-user</literal>:"
msgstr ""
#: ./doc/common/section_keystone-concepts-user-management.xml:45(para)
msgid "Individual services, such as Compute and the Image Service, assign meaning to roles. In the Identity Service, a role is simply a name."
msgstr ""
#: ./doc/common/section_keystone-concepts-user-management.xml:52(para)
msgid "The Identity Service assigns a tenant and a role to a user. You might assign the <literal>compute-user</literal> role to the <literal>alice</literal> user in the <literal>acme</literal> tenant:"
msgstr ""
#: ./doc/common/section_keystone-concepts-user-management.xml:75(para)
msgid "A user can have different roles in different tenants. For example, Alice might also have the <literal>admin</literal> role in the <literal>Cyberdyne</literal> tenant. A user can also have multiple roles in the same tenant."
msgstr ""
#: ./doc/common/section_keystone-concepts-user-management.xml:79(para)
msgid "The <filename>/etc/<replaceable>[SERVICE_CODENAME]</replaceable>/policy.json</filename> file controls the tasks that users can perform for a given service. For example, <filename>/etc/nova/policy.json</filename> specifies the access policy for the Compute service, <filename>/etc/glance/policy.json</filename> specifies the access policy for the Image Service, and <filename>/etc/keystone/policy.json</filename> specifies the access policy for the Identity Service."
msgstr ""
#: ./doc/common/section_keystone-concepts-user-management.xml:89(para)
msgid "The default <filename>policy.json</filename> files in the Compute, Identity, and Image Service recognize only the <literal>admin</literal> role: all operations that do not require the <literal>admin</literal> role are accessible by any user that has any role in a tenant."
msgstr ""
#: ./doc/common/section_keystone-concepts-user-management.xml:94(para)
msgid "If you wish to restrict users from performing operations in, say, the Compute service, you need to create a role in the Identity Service and then modify <filename>/etc/nova/policy.json</filename> so that this role is required for Compute operations."
msgstr ""
#: ./doc/common/section_keystone-concepts-user-management.xml:100(para)
msgid "For example, this line in <filename>/etc/nova/policy.json</filename> specifies that there are no restrictions on which users can create volumes: if the user has any role in a tenant, they can create volumes in that tenant."
msgstr ""
#: ./doc/common/section_keystone-concepts-user-management.xml:106(para)
msgid "To restrict creation of volumes to users who had the <literal>compute-user</literal> role in a particular tenant, you would add <literal>\"role:compute-user\"</literal>, like so:"
msgstr ""
#: ./doc/common/section_keystone-concepts-user-management.xml:111(para)
msgid "To restrict all Compute service requests to require this role, the resulting file would look like:"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:7(title)
msgid "Manage Compute service quotas"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:8(para)
msgid "As an administrative user, you can use the <placeholder-1/> commands, which are provided by the <literal>python-novaclient</literal> package, to update the Compute service quotas for a specific tenant or tenant user, as well as update the quota defaults for a new tenant."
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:13(caption)
msgid "Compute quota descriptions"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:18(th)
msgid "Quota name"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:21(th) ./doc/common/section_cli_nova_customize_flavors.xml:52(td) ./doc/common/section_cli_overview.xml:43(th) ./doc/common/section_cli_install.xml:31(th) ./doc/common/ch_getstart.xml:32(th) ./doc/common/tables/ceilometer-database.xml:13(th) ./doc/common/tables/neutron-openvswitch_agent.xml:13(th) ./doc/common/tables/heat-clients.xml:13(th) ./doc/common/tables/cinder-solidfire.xml:13(th) ./doc/common/tables/neutron-rpc.xml:13(th) ./doc/common/tables/trove-db_percona.xml:13(th) ./doc/common/tables/nova-periodic.xml:13(th) ./doc/common/tables/keystone-auth.xml:13(th) ./doc/common/tables/keystone-policy.xml:13(th) ./doc/common/tables/glance-auth_token.xml:13(th) ./doc/common/tables/cinder-netapp_7mode_nfs.xml:13(th) ./doc/common/tables/cinder-nimble.xml:13(th) ./doc/common/tables/swift-container-server-container-sync.xml:15(th) ./doc/common/tables/swift-proxy-server-DEFAULT.xml:15(th) ./doc/common/tables/cinder-zoning_fabric.xml:13(th) ./doc/common/tables/ceilometer-redis.xml:13(th) ./doc/common/tables/cinder-storage_ceph.xml:13(th) ./doc/common/tables/ceilometer-vmware.xml:13(th) ./doc/common/tables/neutron-cisco.xml:13(th) ./doc/common/tables/nova-testing.xml:13(th) ./doc/common/tables/nova-metadata.xml:13(th) ./doc/common/tables/heat-clients_nova.xml:13(th) ./doc/common/tables/cinder-hp3par.xml:13(th) ./doc/common/tables/keystone-misc.xml:13(th) ./doc/common/tables/swift-proxy-server-filter-cname_lookup.xml:15(th) ./doc/common/tables/glance-ca.xml:13(th) ./doc/common/tables/neutron-scheduler.xml:13(th) ./doc/common/tables/glance-rbd.xml:13(th) ./doc/common/tables/cinder-fusionio.xml:13(th) ./doc/common/tables/cinder-storage_xen.xml:13(th) ./doc/common/tables/ceilometer-common.xml:13(th) ./doc/common/tables/cinder-pure.xml:13(th) ./doc/common/tables/swift-container-reconciler-filter-catch_errors.xml:15(th) ./doc/common/tables/cinder-database.xml:13(th) ./doc/common/tables/ceilometer-logging.xml:13(th) ./doc/common/tables/heat-common.xml:13(th) ./doc/common/tables/nova-ipv6.xml:13(th) ./doc/common/tables/sahara-zeromq.xml:13(th) ./doc/common/tables/nova-vnc.xml:13(th) ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:13(th) ./doc/common/tables/ceilometer-nova_cells.xml:13(th) ./doc/common/tables/swift-container-reconciler-app-proxy-server.xml:15(th) ./doc/common/tables/trove-qpid.xml:13(th) ./doc/common/tables/keystone-api.xml:13(th) ./doc/common/tables/swift-object-expirer-pipeline-main.xml:15(th) ./doc/common/tables/nova-ironic.xml:13(th) ./doc/common/tables/swift-container-server-container-auditor.xml:15(th) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:15(th) ./doc/common/tables/glance-rpc.xml:13(th) ./doc/common/tables/neutron-policy.xml:13(th) ./doc/common/tables/glance-database.xml:13(th) ./doc/common/tables/nova-spice.xml:13(th) ./doc/common/tables/heat-clients_heat.xml:13(th) ./doc/common/tables/nova-xen.xml:13(th) ./doc/common/tables/trove-amqp.xml:13(th) ./doc/common/tables/glance-matchmaker.xml:13(th) ./doc/common/tables/ceilometer-auth_token.xml:13(th) ./doc/common/tables/nova-rabbitmq.xml:13(th) ./doc/common/tables/sahara-database.xml:13(th) ./doc/common/tables/neutron-ml2_cisco.xml:13(th) ./doc/common/tables/nova-policy.xml:13(th) ./doc/common/tables/keystone-identity.xml:13(th) ./doc/common/tables/ceilometer-inspector.xml:13(th) ./doc/common/tables/cinder-scheduler.xml:13(th) ./doc/common/tables/trove-db_cassandra.xml:13(th) ./doc/common/tables/neutron-logging.xml:13(th) ./doc/common/tables/nova-availabilityzones.xml:13(th) ./doc/common/tables/keystone-catalog.xml:13(th) ./doc/common/tables/cinder-netapp_eseries_iscsi.xml:13(th) ./doc/common/tables/neutron-ml2_fslsdn.xml:13(th) ./doc/common/tables/neutron-rootwrap.xml:13(th) ./doc/common/tables/cinder-auth.xml:13(th) ./doc/common/tables/swift-swift-swift-constraints.xml:15(th) ./doc/common/tables/heat-qpid.xml:13(th) ./doc/common/tables/swift-object-expirer-filter-catch_errors.xml:15(th) ./doc/common/tables/swift-proxy-server-filter-slo.xml:15(th) ./doc/common/tables/nova-zookeeper.xml:13(th) ./doc/common/tables/nova-keymgr.xml:13(th) ./doc/common/tables/neutron-auth_token.xml:13(th) ./doc/common/tables/swift-swift-storage-policy-0.xml:15(th) ./doc/common/tables/swift-proxy-server-filter-cache.xml:15(th) ./doc/common/tables/nova-ldap.xml:13(th) ./doc/common/tables/swift-container-server-filter-recon.xml:15(th) ./doc/common/tables/sahara-debug.xml:13(th) ./doc/common/tables/swift-proxy-server-pipeline-main.xml:15(th) ./doc/common/tables/ceilometer-auth.xml:13(th) ./doc/common/tables/cinder-quota.xml:13(th) ./doc/common/tables/swift-proxy-server-filter-account-quotas.xml:15(th) ./doc/common/tables/keystone-os_inherit.xml:13(th) ./doc/common/tables/neutron-sdnve.xml:13(th) ./doc/common/tables/nova-compute.xml:13(th) ./doc/common/tables/nova-scheduler.xml:13(th) ./doc/common/tables/cinder-backups_ceph.xml:13(th) ./doc/common/tables/nova-vmware.xml:13(th) ./doc/common/tables/heat-cfn_api.xml:13(th) ./doc/common/tables/neutron-vmware.xml:13(th) ./doc/common/tables/nova-rdp.xml:13(th) ./doc/common/tables/trove-ca.xml:13(th) ./doc/common/tables/keystone-assignment.xml:13(th) ./doc/common/tables/cinder-zfssa.xml:13(th) ./doc/common/tables/nova-zeromq.xml:13(th) ./doc/common/tables/cinder-storage.xml:13(th) ./doc/common/tables/glance-registry.xml:13(th) ./doc/common/tables/swift-swift-storage-policy-1.xml:15(th) ./doc/common/tables/neutron-embrane.xml:13(th) ./doc/common/tables/heat-quota.xml:13(th) ./doc/common/tables/trove-network.xml:13(th) ./doc/common/tables/swift-account-server-filter-healthcheck.xml:15(th) ./doc/common/tables/nova-common.xml:13(th) ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:15(th) ./doc/common/tables/nova-volumes.xml:13(th) ./doc/common/tables/neutron-redis.xml:13(th) ./doc/common/tables/trove-db_mysql.xml:13(th) ./doc/common/tables/neutron-dvr.xml:13(th) ./doc/common/tables/heat-zeromq.xml:13(th) ./doc/common/tables/heat-amqp.xml:13(th) ./doc/common/tables/neutron-linuxbridge_agent.xml:13(th) ./doc/common/tables/cinder-logging.xml:13(th) ./doc/common/tables/nova-redis.xml:13(th) ./doc/common/tables/swift-container-server-DEFAULT.xml:15(th) ./doc/common/tables/glance-rabbitmq.xml:13(th) ./doc/common/tables/neutron-l3_agent.xml:13(th) ./doc/common/tables/swift-container-server-pipeline-main.xml:15(th) ./doc/common/tables/glance-policy.xml:13(th) ./doc/common/tables/nova-neutron.xml:13(th) ./doc/common/tables/sahara-redis.xml:13(th) ./doc/common/tables/cinder-backups.xml:13(th) ./doc/common/tables/cinder-keymgr.xml:13(th) ./doc/common/tables/keystone-ldap.xml:13(th) ./doc/common/tables/trove-db_postgresql.xml:13(th) ./doc/common/tables/glance-vmware.xml:13(th) ./doc/common/tables/swift-account-server-filter-xprofile.xml:15(th) ./doc/common/tables/ceilometer-xenapi.xml:13(th) ./doc/common/tables/swift-proxy-server-filter-xprofile.xml:15(th) ./doc/common/tables/swift-proxy-server-filter-container-quotas.xml:15(th) ./doc/common/tables/cinder-zoning.xml:13(th) ./doc/common/tables/heat-notification.xml:13(th) ./doc/common/tables/swift-container-server-filter-healthcheck.xml:15(th) ./doc/common/tables/nova-vpn.xml:13(th) ./doc/common/tables/neutron-vpn.xml:13(th) ./doc/common/tables/swift-object-server-filter-xprofile.xml:15(th) ./doc/common/tables/swift-object-expirer-object-expirer.xml:15(th) ./doc/common/tables/trove-common.xml:13(th) ./doc/common/tables/trove-api.xml:13(th) ./doc/common/tables/cinder-zadara.xml:13(th) ./doc/common/tables/swift-object-server-filter-healthcheck.xml:15(th) ./doc/common/tables/nova-conductor.xml:13(th) ./doc/common/tables/swift-object-server-app-object-server.xml:15(th) ./doc/common/tables/swift-proxy-server-filter-catch_errors.xml:15(th) ./doc/common/tables/nova-livemigration.xml:13(th) ./doc/common/tables/swift-container-reconciler-container-reconciler.xml:15(th) ./doc/common/tables/heat-rabbitmq.xml:13(th) ./doc/common/tables/swift-proxy-server-filter-keystoneauth.xml:15(th) ./doc/common/tables/keystone-amqp.xml:13(th) ./doc/common/tables/keystone-rpc.xml:13(th) ./doc/common/tables/swift-object-server-DEFAULT.xml:15(th) ./doc/common/tables/cinder-zones.xml:13(th) ./doc/common/tables/cinder-scality.xml:13(th) ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:15(th) ./doc/common/tables/neutron-agent.xml:13(th) ./doc/common/tables/cinder-emc.xml:13(th) ./doc/common/tables/cinder-vmware.xml:13(th) ./doc/common/tables/neutron-ml2_flat.xml:13(th) ./doc/common/tables/heat-metadata_api.xml:13(th) ./doc/common/tables/trove-rabbitmq.xml:13(th) ./doc/common/tables/nova-upgrade_levels.xml:13(th) ./doc/common/tables/cinder-netapp_cdot_iscsi.xml:13(th) ./doc/common/tables/neutron-ml2_ofa.xml:13(th) ./doc/common/tables/glance-api.xml:13(th) ./doc/common/tables/heat-waitcondition_api.xml:13(th) ./doc/common/tables/swift-proxy-server-filter-gatekeeper.xml:15(th) ./doc/common/tables/swift-rsyncd-container.xml:15(th) ./doc/common/tables/cinder-storwize.xml:13(th) ./doc/common/tables/cinder-hplefthand.xml:13(th) ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:15(th) ./doc/common/tables/sahara-auth_token.xml:13(th) ./doc/common/tables/neutron-ipv6_ra.xml:13(th) ./doc/common/tables/glance-s3.xml:13(th) ./doc/common/tables/nova-rootwrap.xml:13(th) ./doc/common/tables/heat-loadbalancer.xml:13(th) ./doc/common/tables/ceilometer-api.xml:13(th) ./doc/common/tables/ceilometer-exchange.xml:13(th) ./doc/common/tables/cinder-lvm.xml:13(th) ./doc/common/tables/trove-dns.xml:13(th) ./doc/common/tables/sahara-amqp.xml:13(th) ./doc/common/tables/swift-container-reconciler-filter-proxy-logging.xml:15(th) ./doc/common/tables/nova-cells.xml:13(th) ./doc/common/tables/trove-volume.xml:13(th) ./doc/common/tables/heat-auth_token.xml:13(th) ./doc/common/tables/neutron-quotas.xml:13(th) ./doc/common/tables/nova-auth_token.xml:13(th) ./doc/common/tables/cinder-storage_nfs.xml:13(th) ./doc/common/tables/cinder-hds-hnas.xml:13(th) ./doc/common/tables/heat-api.xml:13(th) ./doc/common/tables/swift-proxy-server-filter-tempurl.xml:15(th) ./doc/common/tables/heat-clients_ceilometer.xml:13(th) ./doc/common/tables/neutron-ryu.xml:13(th) ./doc/common/tables/glance-logging.xml:13(th) ./doc/common/tables/cinder-swift.xml:13(th) ./doc/common/tables/swift-rsyncd-account.xml:15(th) ./doc/common/tables/neutron-metering_agent.xml:13(th) ./doc/common/tables/neutron-zeromq.xml:13(th) ./doc/common/tables/heat-clients_glance.xml:13(th) ./doc/common/tables/cinder-storage_glusterfs.xml:13(th) ./doc/common/tables/cinder-common.xml:13(th) ./doc/common/tables/glance-swift.xml:13(th) ./doc/common/tables/trove-quota.xml:13(th) ./doc/common/tables/trove-clients.xml:13(th) ./doc/common/tables/cinder-auth_token.xml:13(th) ./doc/common/tables/ceilometer-alarm.xml:13(th) ./doc/common/tables/ceilometer-events.xml:13(th) ./doc/common/tables/neutron-lbaas_haproxy.xml:13(th) ./doc/common/tables/cinder-xiv.xml:13(th) ./doc/common/tables/swift-proxy-server-filter-name_check.xml:15(th) ./doc/common/tables/neutron-sriov.xml:13(th) ./doc/common/tables/neutron-ml2_bigswitch.xml:13(th) ./doc/common/tables/nova-glance.xml:13(th) ./doc/common/tables/neutron-database.xml:13(th) ./doc/common/tables/keystone-auth_token.xml:13(th) ./doc/common/tables/nova-s3.xml:13(th) ./doc/common/tables/nova-serial_console.xml:13(th) ./doc/common/tables/nova-pci.xml:13(th) ./doc/common/tables/swift-account-server-filter-recon.xml:15(th) ./doc/common/tables/heat-clients_cinder.xml:13(th) ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:15(th) ./doc/common/tables/keystone-revoke.xml:13(th) ./doc/common/tables/sahara-common.xml:13(th) ./doc/common/tables/cinder-api.xml:13(th) ./doc/common/tables/trove-db_couchbase.xml:13(th) ./doc/common/tables/heat-clients_trove.xml:13(th) ./doc/common/tables/swift-account-server-account-replicator.xml:15(th) ./doc/common/tables/neutron-plumgrid.xml:13(th) ./doc/common/tables/trove-heat.xml:13(th) ./doc/common/tables/glance-sheepdog.xml:13(th) ./doc/common/tables/keystone-mapping.xml:13(th) ./doc/common/tables/swift-container-sync-realms-DEFAULT.xml:15(th) ./doc/common/tables/cinder-windows.xml:13(th) ./doc/common/tables/cinder-san-solaris.xml:13(th) ./doc/common/tables/neutron-nuage.xml:13(th) ./doc/common/tables/keystone-rabbitmq.xml:13(th) ./doc/common/tables/keystone-zeromq.xml:13(th) ./doc/common/tables/glance-zeromq.xml:13(th) ./doc/common/tables/neutron-bigswitch.xml:13(th) ./doc/common/tables/neutron-cfg_agent.xml:13(th) ./doc/common/tables/ceilometer-rpc.xml:13(th) ./doc/common/tables/swift-container-server-container-updater.xml:15(th) ./doc/common/tables/trove-db_mongodb.xml:13(th) ./doc/common/tables/swift-object-server-object-replicator.xml:15(th) ./doc/common/tables/glance-filesystem.xml:13(th) ./doc/common/tables/trove-rpc.xml:13(th) ./doc/common/tables/ceilometer-swift.xml:13(th) ./doc/common/tables/trove-backup.xml:13(th) ./doc/common/tables/nova-network.xml:13(th) ./doc/common/tables/glance-redis.xml:13(th) ./doc/common/tables/keystone-ssl.xml:13(th) ./doc/common/tables/cinder-prophetstor_dpl.xml:13(th) ./doc/common/tables/nova-ca.xml:13(th) ./doc/common/tables/neutron-l3_arista.xml:13(th) ./doc/common/tables/neutron-dhcp_agent.xml:13(th) ./doc/common/tables/ceilometer-collector.xml:13(th) ./doc/common/tables/cinder-hds-hus.xml:13(th) ./doc/common/tables/cinder-netapp_7mode_iscsi.xml:13(th) ./doc/common/tables/swift-swift-swift-hash.xml:15(th) ./doc/common/tables/neutron-ml2_gre.xml:13(th) ./doc/common/tables/neutron-varmour.xml:13(th) ./doc/common/tables/heat-debug.xml:13(th) ./doc/common/tables/swift-proxy-server-filter-dlo.xml:15(th) ./doc/common/tables/nova-kombu.xml:13(th) ./doc/common/tables/trove-guestagent.xml:13(th) ./doc/common/tables/nova-qpid.xml:13(th) ./doc/common/tables/glance-qpid.xml:13(th) ./doc/common/tables/sahara-rpc.xml:13(th) ./doc/common/tables/neutron-lbaas_radware.xml:13(th) ./doc/common/tables/neutron-ml2_sriov.xml:13(th) ./doc/common/tables/neutron-ml2_l2pop.xml:13(th) ./doc/common/tables/cinder-ibmnas.xml:13(th) ./doc/common/tables/glance-amqp.xml:13(th) ./doc/common/tables/neutron-embrane_lb.xml:13(th) ./doc/common/tables/cinder-fujitsu_eternus_dx.xml:13(th) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:15(th) ./doc/common/tables/sahara-logging.xml:13(th) ./doc/common/tables/swift-proxy-server-filter-authtoken.xml:15(th) ./doc/common/tables/neutron-testing.xml:13(th) ./doc/common/tables/swift-object-server-pipeline-main.xml:15(th) ./doc/common/tables/swift-memcache-memcache.xml:15(th) ./doc/common/tables/neutron-ca.xml:13(th) ./doc/common/tables/ceilometer-debug.xml:13(th) ./doc/common/tables/swift-account-server-app-account-server.xml:15(th) ./doc/common/tables/swift-proxy-server-filter-formpost.xml:15(th) ./doc/common/tables/trove-compute.xml:13(th) ./doc/common/tables/sahara-rabbitmq.xml:13(th) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:15(th) ./doc/common/tables/swift-container-server-filter-xprofile.xml:15(th) ./doc/common/tables/swift-object-expirer-filter-cache.xml:15(th) ./doc/common/tables/trove-db_redis.xml:13(th) ./doc/common/tables/cinder-rpc.xml:13(th) ./doc/common/tables/swift-container-sync-realms-realm2.xml:15(th) ./doc/common/tables/cinder-hpmsa.xml:13(th) ./doc/common/tables/nova-apiv3.xml:13(th) ./doc/common/tables/keystone-oauth.xml:13(th) ./doc/common/tables/cinder-storage_gpfs.xml:13(th) ./doc/common/tables/neutron-ml2_vlan.xml:13(th) ./doc/common/tables/swift-object-server-object-auditor.xml:15(th) ./doc/common/tables/trove-zeromq.xml:13(th) ./doc/common/tables/neutron-lbaas.xml:13(th) ./doc/common/tables/swift-container-reconciler-filter-cache.xml:15(th) ./doc/common/tables/cinder-backups_swift.xml:13(th) ./doc/common/tables/trove-database.xml:13(th) ./doc/common/tables/swift-container-server-app-container-server.xml:15(th) ./doc/common/tables/nova-authentication.xml:13(th) ./doc/common/tables/neutron-nvsd.xml:13(th) ./doc/common/tables/cinder-ca.xml:13(th) ./doc/common/tables/swift-account-server-pipeline-main.xml:15(th) ./doc/common/tables/glance-gridfs.xml:13(th) ./doc/common/tables/neutron-notifier.xml:13(th) ./doc/common/tables/nova-rpc_all.xml:13(th) ./doc/common/tables/neutron-hyperv_agent.xml:13(th) ./doc/common/tables/ceilometer-tripleo.xml:13(th) ./doc/common/tables/keystone-federation.xml:13(th) ./doc/common/tables/cinder-eqlx.xml:13(th) ./doc/common/tables/heat-redis.xml:13(th) ./doc/common/tables/nova-ec2.xml:13(th) ./doc/common/tables/keystone-credential.xml:13(th) ./doc/common/tables/cinder-block-device.xml:13(th) ./doc/common/tables/neutron-metadata.xml:13(th) ./doc/common/tables/neutron-lbaas_netscaler.xml:13(th) ./doc/common/tables/nova-fping.xml:13(th) ./doc/common/tables/swift-proxy-server-filter-staticweb.xml:15(th) ./doc/common/tables/trove-cluster.xml:13(th) ./doc/common/tables/swift-container-server-container-replicator.xml:15(th) ./doc/common/tables/sahara-qpid.xml:13(th) ./doc/common/tables/neutron-ml2_ncs.xml:13(th) ./doc/common/tables/neutron-ml2_arista.xml:13(th) ./doc/common/tables/nova-trustedcomputing.xml:13(th) ./doc/common/tables/swift-proxy-server-filter-bulk.xml:15(th) ./doc/common/tables/swift-object-expirer-app-proxy-server.xml:15(th) ./doc/common/tables/neutron-compute.xml:13(th) ./doc/common/tables/glance-imagecache.xml:13(th) ./doc/common/tables/neutron-ml2_brocade.xml:13(th) ./doc/common/tables/swift-account-server-account-auditor.xml:15(th) ./doc/common/tables/cinder-nas.xml:13(th) ./doc/common/tables/cinder-netapp_cdot_nfs.xml:13(th) ./doc/common/tables/heat-clients_swift.xml:13(th) ./doc/common/tables/keystone-logging.xml:13(th) ./doc/common/tables/neutron-brocade.xml:13(th) ./doc/common/tables/neutron-ml2_odl.xml:13(th) ./doc/common/tables/swift-object-server-filter-recon.xml:15(th) ./doc/common/tables/heat-rpc.xml:13(th) ./doc/common/tables/trove-taskmanager.xml:13(th) ./doc/common/tables/heat-cloudwatch_api.xml:13(th) ./doc/common/tables/cinder-hitachi.xml:13(th) ./doc/common/tables/cinder-images.xml:13(th) ./doc/common/tables/cinder-huawei.xml:13(th) ./doc/common/tables/nova-console.xml:13(th) ./doc/common/tables/cinder-profiler.xml:13(th) ./doc/common/tables/neutron-fwaas.xml:13(th) ./doc/common/tables/cinder-nexenta_nfs.xml:13(th) ./doc/common/tables/nova-database.xml:13(th) ./doc/common/tables/nova-quota.xml:13(th) ./doc/common/tables/heat-logging.xml:13(th) ./doc/common/tables/trove-redis.xml:13(th) ./doc/common/tables/keystone-stats.xml:13(th) ./doc/common/tables/heat-crypt.xml:13(th) ./doc/common/tables/neutron-midonet.xml:13(th) ./doc/common/tables/cinder-coraid.xml:13(th) ./doc/common/tables/neutron-wsgi.xml:13(th) ./doc/common/tables/cinder-compute.xml:13(th) ./doc/common/tables/swift-rsyncd-object.xml:15(th) ./doc/common/tables/glance-wsgi.xml:13(th) ./doc/common/tables/swift-drive-audit-drive-audit.xml:15(th) ./doc/common/tables/nova-baremetal.xml:13(th) ./doc/common/tables/neutron-qpid.xml:13(th) ./doc/common/tables/nova-rpc.xml:13(th) ./doc/common/tables/cinder-backups_tsm.xml:13(th) ./doc/common/tables/cinder-san.xml:13(th) ./doc/common/tables/nova-logging.xml:13(th) ./doc/common/tables/neutron-nec.xml:13(th) ./doc/common/tables/keystone-security.xml:13(th) ./doc/common/tables/heat-clients_neutron.xml:13(th) ./doc/common/tables/nova-api.xml:13(th) ./doc/common/tables/neutron-opencontrail.xml:13(th) ./doc/common/tables/neutron-ml2_mlnx.xml:13(th) ./doc/common/tables/trove-auth_token.xml:13(th) ./doc/common/tables/keystone-trust.xml:13(th) ./doc/common/tables/swift-container-reconciler-pipeline-main.xml:15(th) ./doc/common/tables/glance-cinder.xml:13(th) ./doc/common/tables/swift-object-server-object-updater.xml:15(th) ./doc/common/tables/glance-common.xml:13(th) ./doc/common/tables/neutron-ml2_vxlan.xml:13(th) ./doc/common/tables/swift-dispersion-dispersion.xml:15(th) ./doc/common/tables/swift-account-server-DEFAULT.xml:15(th) ./doc/common/tables/swift-proxy-server-filter-domain_remap.xml:15(th) ./doc/common/tables/trove-nova.xml:13(th) ./doc/common/tables/neutron-meta.xml:13(th) ./doc/common/tables/neutron-rabbitmq.xml:13(th) ./doc/common/tables/keystone-ec2.xml:13(th) ./doc/common/tables/heat-clients_keystone.xml:13(th) ./doc/common/tables/neutron-api.xml:13(th) ./doc/common/tables/trove-logging.xml:13(th) ./doc/common/tables/keystone-kvs.xml:13(th) ./doc/common/tables/keystone-redis.xml:13(th) ./doc/common/tables/nova-xvpnvncproxy.xml:13(th) ./doc/common/tables/glance-paste.xml:13(th) ./doc/common/tables/swift-proxy-server-filter-list-endpoints.xml:15(th) ./doc/common/tables/swift-account-server-account-reaper.xml:15(th) ./doc/common/tables/nova-hyperv.xml:13(th) ./doc/common/tables/swift-proxy-server-filter-container_sync.xml:15(th) ./doc/common/tables/heat-clients_backends.xml:13(th) ./doc/common/tables/glance-testing.xml:13(th) ./doc/common/tables/neutron-common.xml:13(th) ./doc/common/tables/nova-hypervisor.xml:13(th) ./doc/common/tables/keystone-qpid.xml:13(th) ./doc/common/tables/swift-container-sync-realms-realm1.xml:15(th) ./doc/common/tables/swift-proxy-server-filter-healthcheck.xml:15(th) ./doc/common/tables/nova-wsgi.xml:13(th) ./doc/common/tables/keystone-cache.xml:13(th) ./doc/common/tables/nova-ephemeral_storage_encryption.xml:13(th) ./doc/common/tables/nova-configdrive.xml:13(th) ./doc/common/tables/keystone-token.xml:13(th) ./doc/common/tables/ceilometer-qpid.xml:13(th) ./doc/common/tables/cinder-datera.xml:13(th) ./doc/common/tables/heat-database.xml:13(th) ./doc/common/tables/ceilometer-rabbitmq.xml:13(th) ./doc/common/tables/neutron-ml2.xml:13(th) ./doc/common/tables/keystone-database.xml:13(th) ./doc/common/tables/glance-profiler.xml:13(th) ./doc/common/tables/keystone-memcache.xml:13(th) ./doc/common/tables/trove-debug.xml:13(th) ./doc/common/tables/trove-swift.xml:13(th) ./doc/common/tables/nova-tilera.xml:13(th) ./doc/common/tables/nova-libvirt.xml:13(th) ./doc/common/tables/neutron-mlnx.xml:13(th) ./doc/common/tables/cinder-zoning_manager.xml:13(th) ./doc/common/tables/ceilometer-amqp.xml:13(th) ./doc/common/tables/ceilometer-glance.xml:13(th) ./doc/common/tables/neutron-securitygroups.xml:13(th) ./doc/common/tables/keystone-debug.xml:13(th) ./doc/common/tables/cinder-rootwrap.xml:13(th) ./doc/common/tables/cinder-nexenta_iscsi.xml:13(th)
msgid "Description"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:30(systemitem)
msgid "cores"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:34(para)
msgid "Number of instance cores (VCPUs) allowed per tenant."
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:42(systemitem)
msgid "fixed-ips"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:46(para)
msgid "Number of fixed IP addresses allowed per tenant. This number must be equal to or greater than the number of allowed instances."
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:56(systemitem)
msgid "floating-ips"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:60(para)
msgid "Number of floating IP addresses allowed per tenant."
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:68(systemitem)
msgid "injected-file-content-bytes"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:72(para)
msgid "Number of content bytes allowed per injected file."
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:80(systemitem)
msgid "injected-file-path-bytes"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:84(para)
msgid "Length of injected file path."
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:92(systemitem)
msgid "injected-files"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:96(para)
msgid "Number of injected files allowed per tenant."
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:105(systemitem)
msgid "instances"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:109(para)
msgid "Number of instances allowed per tenant."
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:117(systemitem)
msgid "key-pairs"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:121(para)
msgid "Number of key pairs allowed per user."
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:129(systemitem)
msgid "metadata-items"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:133(para)
msgid "Number of metadata items allowed per instance."
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:141(systemitem)
msgid "ram"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:145(para)
msgid "Megabytes of instance ram allowed per tenant."
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:153(systemitem)
msgid "security-groups"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:157(para)
msgid "Number of security groups per tenant."
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:165(systemitem)
msgid "security-group-rules"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:169(para)
msgid "Number of rules per security group."
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:178(title)
msgid "View and update Compute quotas for a tenant (project)"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:180(title)
msgid "To view and update default quota values"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:182(para)
msgid "List all default quotas for all tenants, as follows:"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:184(para) ./doc/common/section_cli_nova_quotas.xml:208(para) ./doc/common/section_cli_nova_quotas.xml:222(para) ./doc/common/section_cli_nova_quotas.xml:250(para) ./doc/common/section_cli_nova_quotas.xml:293(para) ./doc/common/section_cli_nova_quotas.xml:325(para) ./doc/common/section_objectstorage-ringbuilder.xml:83(para) ./doc/common/section_keystone_certificates-for-pki.xml:182(para) ./doc/common/section_cli_nova_boot_from_volume.xml:191(para) ./doc/common/section_cli_cinder_manage_volumes.xml:336(para) ./doc/common/section_cli_cinder_manage_volumes.xml:350(para) ./doc/common/section_cli_cinder_manage_volumes.xml:394(para)
msgid "For example:"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:205(para)
msgid "Update a default value for a new tenant, as follows:"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:207(replaceable)
msgid "key"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:207(replaceable)
msgid "value"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:214(title)
msgid "To view quota values for an existing tenant (project)"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:215(para)
msgid "Place the tenant ID in a usable variable, as follows:"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:216(replaceable) ./doc/common/section_cli_nova_quotas.xml:245(replaceable) ./doc/common/section_cli_nova_quotas.xml:287(replaceable) ./doc/common/section_cli_nova_quotas.xml:357(replaceable)
msgid "tenantName"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:219(para)
msgid "List the currently set quota values for a tenant, as follows:"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:243(title)
msgid "To update quota values for an existing tenant (project)"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:244(para)
msgid "Obtain the tenant ID, as follows:"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:248(para) ./doc/common/section_cli_nova_quotas.xml:323(para)
msgid "Update a particular quota value, as follows:"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:249(replaceable) ./doc/common/section_cli_nova_quotas.xml:324(replaceable)
msgid "quotaName"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:249(replaceable) ./doc/common/section_cli_nova_quotas.xml:324(replaceable)
msgid "quotaValue"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:249(replaceable)
msgid "tenantID"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:271(para) ./doc/common/section_cli_nova_quotas.xml:346(para)
msgid "To view a list of options for the <placeholder-1/> command, run:"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:279(title)
msgid "View and update Compute quotas for a tenant user"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:281(title)
msgid "To view quota values for a tenant user"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:282(para) ./doc/common/section_cli_nova_quotas.xml:316(para)
msgid "Place the user ID in a usable variable, as follows:"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:283(replaceable) ./doc/common/section_cli_nova_quotas.xml:317(replaceable) ./doc/common/section_cli_nova_quotas.xml:320(replaceable)
msgid "userName"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:286(para) ./doc/common/section_cli_nova_quotas.xml:319(para)
msgid "Place the user's tenant ID in a usable variable, as follows:"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:290(para)
msgid "List the currently set quota values for a tenant user, as follows:"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:315(title)
msgid "To update quota values for a tenant user"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:353(title)
msgid "To display the current quota usage for a tenant user"
msgstr ""
#: ./doc/common/section_cli_nova_quotas.xml:355(para)
msgid "Use <placeholder-1/> to get a list of the current quota values and the current quota usage."
msgstr ""
#: ./doc/common/section_user-data.xml:7(title)
msgid "Configure instances at boot"
msgstr ""
#: ./doc/common/section_user-data.xml:8(para)
msgid "When you boot instances in an OpenStack cloud, you can use user data or <package>cloud-init</package> to automatically configure instances at boot time. You might want to install some packages, start services, or manage your instance by using a <link href=\"http://puppetlabs.com/puppet/puppet-open-source\">Puppet</link> or <link href=\"http://getchef.com\">Chef</link> server."
msgstr ""
#: ./doc/common/section_user-data.xml:14(title)
msgid "User data"
msgstr ""
#: ./doc/common/section_user-data.xml:15(para)
msgid "User data is the mechanism by which a user can pass information contained in a local file to an instance at launch time. The typical use case is to pass something like a shell script or a configuration file as user data."
msgstr ""
#: ./doc/common/section_user-data.xml:20(para)
msgid "User data is sent using the <literal>--user-data <replaceable>/path/to/filename</replaceable></literal> option when calling <placeholder-1/>. This example creates a text file and sends its contents as user data to the instance:"
msgstr ""
#: ./doc/common/section_user-data.xml:27(para)
msgid "The instance can get user data by querying the metadata service through either the OpenStack metadata API or the EC2 compatibility API:"
msgstr ""
#: ./doc/common/section_user-data.xml:35(para)
msgid "The Compute service treats user data as a blob. While the previous example uses a text file, user data can be in any format."
msgstr ""
#: ./doc/common/section_user-data.xml:39(para)
msgid "For more information, see <xref linkend=\"config-drive\"/>."
msgstr ""
#: ./doc/common/section_user-data.xml:43(package)
msgid "cloud-init"
msgstr ""
#: ./doc/common/section_user-data.xml:44(para)
msgid "To do something useful with the user data, you must configure the virtual machine image to run a service on boot that gets user data from the metadata service and takes some action based on the contents of the data. The <package>cloud-init</package> package does exactly this. This package is compatible with the Compute metadata service and the Compute configuration drive."
msgstr ""
#: ./doc/common/section_user-data.xml:52(para)
msgid "The <package>cloud-init</package> package supports multiple cloud providers. You can use the same virtual machine image in different clouds without modification. The <package>cloud-init</package> package is an open source project and the source code is available on <link href=\"http://launchpad.net/cloud-init\">Launchpad</link>. It is maintained by Canonical, the company that runs the Ubuntu project. All Ubuntu cloud images come pre-installed with <package>cloud-init</package>. However, <package>cloud-init</package> is not designed to be Ubuntu-specific and has been successfully ported to several other platforms including Fedora."
msgstr ""
#: ./doc/common/section_user-data.xml:67(para)
msgid "Even if you do not use user data to configure instance behavior at boot time, install <package>cloud-init</package> on images that you create because this package provides useful functionality. For example, the <package>cloud-init</package> package enables you to copy the public key to an account (the <literal>ubuntu</literal> account by default on Ubuntu instances, the <literal>ec2-user</literal> by default in Fedora instances)."
msgstr ""
#: ./doc/common/section_user-data.xml:76(para)
msgid "If you do not have <package>cloud-init</package> installed, you must manually configure your image to get the public key from the metadata service on boot and copy it to the appropriate account."
msgstr ""
#: ./doc/common/section_user-data.xml:82(title)
msgid "<package>cloud-init</package> supported formats and documentation"
msgstr ""
#: ./doc/common/section_user-data.xml:84(para)
msgid "Look at the <package>cloud-init</package><link href=\"http://bazaar.launchpad.net/~cloud-init-dev/cloud-init/trunk/view/head:/doc/userdata.txt\">doc/userdata.txt</link> file the <link href=\"http://bazaar.launchpad.net/~cloud-init-dev/cloud-init/trunk/files/head:/doc/examples/\">examples</link> directory and the <link href=\"https://help.ubuntu.com/community/CloudInit\">Ubuntu community documentation</link> for details about how to use <package>cloud-init</package>. Some basic examples are provided here."
msgstr ""
#: ./doc/common/section_user-data.xml:94(para)
msgid "<package>cloud-init</package> supports several input formats for user data. Two commonly used formats are:"
msgstr ""
#: ./doc/common/section_user-data.xml:99(para)
msgid "Shell scripts (starts with <literal>#!</literal>)"
msgstr ""
#: ./doc/common/section_user-data.xml:103(para)
msgid "Cloud config files (starts with <literal>#cloud-config</literal>)"
msgstr ""
#: ./doc/common/section_user-data.xml:109(title)
msgid "Run a shell script on boot"
msgstr ""
#: ./doc/common/section_user-data.xml:110(para)
msgid "Assuming you have <package>cloud-init</package> installed, the simplest way to configure an instance on boot is to pass a shell script as user data. The shell file must begin with <literal>#!</literal> in order for <package>cloud-init</package> to recognize it as a shell script. This example shows a script that creates a <literal>clouduser</literal> account:"
msgstr ""
#: ./doc/common/section_user-data.xml:119(para)
msgid "Sending a shell script as user data has a similar effect to writing an <filename>/etc/rc.local</filename> script: it executes very late in the boot sequence as root."
msgstr ""
#: ./doc/common/section_user-data.xml:124(title)
msgid "Cloud-config format"
msgstr ""
#: ./doc/common/section_user-data.xml:125(para)
msgid "<package>cloud-init</package> supports a YAML-based config format that allows the user to configure a large number of options on a system. User data that begins with <literal>#cloud-config</literal> will be interpreted by <package>cloud-init</package> as cloud-config format."
msgstr ""
#: ./doc/common/section_user-data.xml:133(title)
msgid "Example: Set the host name"
msgstr ""
#: ./doc/common/section_user-data.xml:134(para)
msgid "This <package>cloud-init</package> user data example sets the hostname and the FQDN, as well as updating <filename>/etc/hosts</filename> on the instance:"
msgstr ""
#: ./doc/common/section_user-data.xml:146(title)
msgid "Example: Configure instances with Puppet"
msgstr ""
#: ./doc/common/section_user-data.xml:147(para)
msgid "This <package>cloud-init</package> user data example, based on <link href=\"http://bazaar.launchpad.net/~cloud-init-dev/cloud-init/trunk/view/head:/doc/examples/cloud-config-puppet.txt\">doc/examples/cloud-config-puppet.txt</link>, would configure the instance to contact a Puppet server at puppetmaster.example.org and verify its identity by using a certificate."
msgstr ""
#: ./doc/common/section_user-data.xml:175(title)
msgid "Example: Configure instances with Chef"
msgstr ""
#: ./doc/common/section_user-data.xml:176(para)
msgid "This <package>cloud-init</package> user data example, based on <link href=\"http://bazaar.launchpad.net/~cloud-init-dev/cloud-init/trunk/view/head:/doc/examples/cloud-config-chef.txt\">doc/examples/cloud-config/chef.txt</link> and intended for use in an Ubuntu image, adds the Chef apt repository, installs Chef, connects to a Chef server at <literal>https://chefserver.example.com:4000</literal>, and installs Apache:"
msgstr ""
#. When image changes, this message will be marked fuzzy or untranslated for you.
#. It doesn't matter what you translate it to: it's not used at all.
#: ./doc/common/section_getstart_conceptual_arch.xml:17(None)
msgid "@@image: 'figures/openstack_havana_conceptual_arch.png'; md5=96e1d5492d4c865fc9145710bb294a91"
msgstr ""
#: ./doc/common/section_getstart_conceptual_arch.xml:7(title)
msgid "Conceptual architecture"
msgstr ""
#: ./doc/common/section_getstart_conceptual_arch.xml:8(para)
msgid "The following diagram shows the relationships among the OpenStack services:"
msgstr ""
#: ./doc/common/section_getstart_conceptual_arch.xml:12(title)
msgid "OpenStack conceptual architecture"
msgstr ""
#: ./doc/common/section_keystone-concepts-service-management.xml:7(title)
msgid "Service management"
msgstr ""
#: ./doc/common/section_keystone-concepts-service-management.xml:8(para)
msgid "The Identity Service provides identity, token, catalog, and policy services. It consists of:"
msgstr ""
#: ./doc/common/section_keystone-concepts-service-management.xml:13(para)
msgid "<systemitem class=\"service\">keystone-all</systemitem>. Starts both the service and administrative APIs in a single process to provide Catalog, Authorization, and Authentication services for OpenStack."
msgstr ""
#: ./doc/common/section_keystone-concepts-service-management.xml:19(para)
msgid "Identity Service functions. Each has a pluggable back end that allows different ways to use the particular service. Most support standard back ends like LDAP or SQL."
msgstr ""
#: ./doc/common/section_keystone-concepts-service-management.xml:25(para)
msgid "The Identity Service also maintains a user that corresponds to each service, such as, a user named <emphasis>nova</emphasis> for the Compute service, and a special service tenant called <emphasis>service</emphasis>."
msgstr ""
#: ./doc/common/section_keystone-concepts-service-management.xml:30(para)
msgid "For information about how to create services and endpoints, see the <link href=\"http://docs.openstack.org/user-guide-admin/content/index.html\"><citetitle>OpenStack Admin User Guide</citetitle></link>."
msgstr ""
#: ./doc/common/section_cli_nova_images.xml:7(title)
msgid "Manage images with the nova client"
msgstr ""
#: ./doc/common/section_cli_nova_images.xml:8(para)
msgid "You can use the nova client to list images, set and delete image metadata, delete images, and take a snapshot of a running instance to create an image."
msgstr ""
#: ./doc/common/section_cli_nova_images.xml:11(para)
msgid "The safest approach is to shut down the instance before you take a snapshot."
msgstr ""
#: ./doc/common/section_cli_nova_images.xml:13(para) ./doc/common/section_cli_nova_images.xml:129(para)
msgid "You cannot create a snapshot from an instance that has an attached volume. Detach the volume, create the image, and re-mount the volume."
msgstr ""
#: ./doc/common/section_cli_nova_images.xml:17(title)
msgid "To create an image"
msgstr ""
#: ./doc/common/section_cli_nova_images.xml:19(para) ./doc/common/section_cli_nova_manage_images.xml:11(para)
msgid "Write any buffered data to disk."
msgstr ""
#: ./doc/common/section_cli_nova_images.xml:20(para)
msgid "For more information, see the <link href=\"http://docs.openstack.org/openstack-ops/content/snapshots.html\">Taking Snapshots</link> in the <citetitle>OpenStack Operations Guide</citetitle>."
msgstr ""
#: ./doc/common/section_cli_nova_images.xml:27(para)
msgid "To create the image, list instances to get the server ID:"
msgstr ""
#: ./doc/common/section_cli_nova_images.xml:35(para)
msgid "In this example, the server is named <literal>myCirrosServer</literal>. Use this server to create a snapshot, as follows: <placeholder-1/>The command creates a qemu snapshot and automatically uploads the image to your repository. Only the tenant that creates the image has access to it."
msgstr ""
#: ./doc/common/section_cli_nova_images.xml:44(para) ./doc/common/section_cli_nova_manage_images.xml:51(para)
msgid "Get details for your image to check its status:"
msgstr ""
#: ./doc/common/section_cli_nova_images.xml:46(replaceable)
msgid "IMAGE"
msgstr ""
#: ./doc/common/section_cli_nova_images.xml:80(para) ./doc/common/section_cli_nova_manage_images.xml:86(para)
msgid "The image status changes from <literal>SAVING</literal> to <literal>ACTIVE</literal>. Only the tenant who creates the image has access to it."
msgstr ""
#: ./doc/common/section_cli_nova_images.xml:87(title)
msgid "To launch an instance from your image"
msgstr ""
#: ./doc/common/section_cli_nova_images.xml:90(para)
msgid "To launch an instance from your image, include the image ID and flavor ID, as follows:"
msgstr ""
#: ./doc/common/section_cli_nova_images.xml:126(title) ./doc/common/section_cli_glance_manage_images.xml:412(title)
msgid "Troubleshoot image creation"
msgstr ""
#: ./doc/common/section_cli_nova_images.xml:134(para)
msgid "Make sure the version of qemu you are using is version 0.14 or greater. Older versions of qemu result in an \"<literal>unknown option -s</literal>\" error message in the <filename>nova-compute.log</filename>."
msgstr ""
#: ./doc/common/section_cli_nova_images.xml:141(para) ./doc/common/section_cli_glance_manage_images.xml:422(para)
msgid "Examine the <filename>/var/log/nova-api.log</filename> and <filename>/var/log/nova-compute.log</filename> log files for error messages."
msgstr ""
#: ./doc/common/section_dochistory.xml:7(title)
msgid "Document change history"
msgstr ""
#: ./doc/common/section_dochistory.xml:9(para)
msgid "This version of the guide replaces and obsoletes all earlier versions."
msgstr ""
#: ./doc/common/section_dochistory.xml:10(para)
msgid "The following table describes the most recent changes:"
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:7(title)
msgid "Create and manage networks"
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:8(para)
msgid "Before you run commands, set the following environment variables:"
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:15(title)
msgid "Create networks"
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:18(para)
msgid "List the extensions of the system:"
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:34(para)
msgid "Create a network:"
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:53(para)
msgid "Some fields of the created network are invisible to non-admin users."
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:58(para)
msgid "Create a network with specified provider network type:"
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:77(para)
msgid "Just as shown previously, the unknown option <literal>--provider:network-type</literal> is used to create a <literal>local</literal> provider network."
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:85(title)
msgid "Create subnets"
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:88(para)
msgid "Create a subnet:"
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:106(para)
msgid "The <placeholder-1/> command has the following positional and optional parameters:"
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:111(para)
msgid "The name or ID of the network to which the subnet belongs."
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:113(para)
msgid "In this example, <literal>net1</literal> is a positional argument that specifies the network name."
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:118(para)
msgid "The CIDR of the subnet."
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:119(para)
msgid "In this example, <literal>192.168.2.0/24</literal> is a positional argument that specifies the CIDR."
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:125(para)
msgid "The subnet name, which is optional."
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:127(para)
msgid "In this example, <literal>--name subnet1</literal> specifies the name of the subnet."
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:136(title)
msgid "Create routers"
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:139(para)
msgid "Create a router:"
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:140(replaceable)
msgid "router1"
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:152(para)
msgid "Take note of the unique router identifier returned, this will be required in subsequent steps."
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:156(para)
msgid "Link the router to the external provider network:"
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:157(replaceable) ./doc/common/section_cli_neutron_manage_networks.xml:164(replaceable)
msgid "ROUTER"
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:157(replaceable)
msgid "NETWORK"
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:158(para)
msgid "Replace <replaceable>ROUTER</replaceable> with the unique identifier of the router, replace <replaceable>NETWORK</replaceable> with the unique identifier of the external provider network."
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:163(para)
msgid "Link the router to the subnet:"
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:164(replaceable)
msgid "SUBNET"
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:165(para)
msgid "Replace <replaceable>ROUTER</replaceable> with the unique identifier of the router, replace <replaceable>SUBNET</replaceable> with the unique identifier of the subnet."
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:172(title)
msgid "Create ports"
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:175(para)
msgid "Create a port with specified IP address:"
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:194(para)
msgid "In the previous command, <literal>net1</literal> is the network name, which is a positional argument. <literal>--fixed-ip ip_address=192.168.2.40</literal> is an option, which specifies the port's fixed IP address we wanted."
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:201(para)
msgid "When creating a port, you can specify any unallocated IP in the subnet even if the address is not in a pre-defined pool of allocated IP addresses (set by your cloud provider)."
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:208(para)
msgid "Create a port without specified IP address:"
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:229(para)
msgid "Note that the system allocates one IP address if you do not specify an IP address in the <placeholder-1/> command."
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:234(para)
msgid "Query ports with specified fixed IP addresses:"
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:243(para)
msgid "<literal>--fixed-ips ip_address=192.168.2.2 ip_address=192.168.2.40</literal> is one unknown option."
msgstr ""
#: ./doc/common/section_cli_neutron_manage_networks.xml:246(para)
msgid "<emphasis role=\"bold\">How to find unknown options?</emphasis> The unknown options can be easily found by watching the output of <literal>create_xxx</literal> or <literal>show_xxx</literal> command. For example, in the port creation command, we see the fixed_ips fields, which can be used as an unknown option."
msgstr ""
#. When image changes, this message will be marked fuzzy or untranslated for you.
#. It doesn't matter what you translate it to: it's not used at all.
#: ./doc/common/section_objectstorage-arch.xml:23(None)
msgid "@@image: '../common/figures/objectstorage-arch.png'; md5=90f6c7cf3947d7987eeb55d657cdc927"
msgstr ""
#. When image changes, this message will be marked fuzzy or untranslated for you.
#. It doesn't matter what you translate it to: it's not used at all.
#: ./doc/common/section_objectstorage-arch.xml:60(None)
msgid "@@image: '../common/figures/objectstorage-nodes.png'; md5=2aa7eb3bddcf6826f33469920dc2a9c3"
msgstr ""
#: ./doc/common/section_objectstorage-arch.xml:11(title)
msgid "Cluster architecture"
msgstr ""
#: ./doc/common/section_objectstorage-arch.xml:13(title)
msgid "Access tier"
msgstr ""
#: ./doc/common/section_objectstorage-arch.xml:14(para)
msgid "Large-scale deployments segment off an access tier, which is considered the Object Storage system's central hub. The access tier fields the incoming API requests from clients and moves data in and out of the system. This tier consists of front-end load balancers, ssl-terminators, and authentication services. It runs the (distributed) brain of the Object Storage system: the proxy server processes."
msgstr ""
#: ./doc/common/section_objectstorage-arch.xml:20(title)
msgid "Object Storage architecture"
msgstr ""
#: ./doc/common/section_objectstorage-arch.xml:27(para)
msgid "Because access servers are collocated in their own tier, you can scale out read/write access regardless of the storage capacity. For example, if a cluster is on the public Internet, requires SSL termination, and has a high demand for data access, you can provision many access servers. However, if the cluster is on a private network and used primarily for archival purposes, you need fewer access servers."
msgstr ""
#: ./doc/common/section_objectstorage-arch.xml:32(para)
msgid "Since this is an HTTP addressable storage service, you may incorporate a load balancer into the access tier."
msgstr ""
#: ./doc/common/section_objectstorage-arch.xml:34(para)
msgid "Typically, the tier consists of a collection of 1U servers. These machines use a moderate amount of RAM and are network I/O intensive. Since these systems field each incoming API request, you should provision them with two high-throughput (10GbE) interfaces - one for the incoming \"front-end\" requests and the other for the \"back-end\" access to the object storage nodes to put and fetch data."
msgstr ""
#: ./doc/common/section_objectstorage-arch.xml:40(title) ./doc/common/section_objectstorage-arch.xml:69(title)
msgid "Factors to consider"
msgstr ""
#: ./doc/common/section_objectstorage-arch.xml:41(para)
msgid "For most publicly facing deployments as well as private deployments available across a wide-reaching corporate network, you use SSL to encrypt traffic to the client. SSL adds significant processing load to establish sessions between clients, which is why you have to provision more capacity in the access layer. SSL may not be required for private deployments on trusted networks."
msgstr ""
#: ./doc/common/section_objectstorage-arch.xml:49(title)
msgid "Storage nodes"
msgstr ""
#: ./doc/common/section_objectstorage-arch.xml:50(para)
msgid "In most configurations, each of the five zones should have an equal amount of storage capacity. Storage nodes use a reasonable amount of memory and CPU. Metadata needs to be readily available to return objects quickly. The object stores run services not only to field incoming requests from the access tier, but to also run replicators, auditors, and reapers. You can provision object stores provisioned with single gigabit or 10 gigabit network interface depending on the expected workload and desired performance."
msgstr ""
#: ./doc/common/section_objectstorage-arch.xml:57(title) ./doc/common/section_objectstorage-characteristics.xml:46(title) ./doc/common/section_storage-concepts.xml:22(td)
msgid "Object Storage (swift)"
msgstr ""
#: ./doc/common/section_objectstorage-arch.xml:64(para)
msgid "Currently, a 2TB or 3TB SATA disk delivers good performance for the price. You can use desktop-grade drives if you have responsive remote hands in the datacenter and enterprise-grade drives if you don't."
msgstr ""
#: ./doc/common/section_objectstorage-arch.xml:70(para)
msgid "You should keep in mind the desired I/O performance for single-threaded requests . This system does not use RAID, so a single disk handles each request for an object. Disk performance impacts single-threaded response rates."
msgstr ""
#: ./doc/common/section_objectstorage-arch.xml:73(para)
msgid "To achieve apparent higher throughput, the object storage system is designed to handle concurrent uploads/downloads. The network I/O capacity (1GbE, bonded 1GbE pair, or 10GbE) should match your desired concurrent throughput needs for reads and writes."
msgstr ""
#: ./doc/common/section_cli_keystone_example_usage.xml:7(title)
msgid "keystone command-line client example usage"
msgstr ""
#: ./doc/common/section_cli_keystone_example_usage.xml:8(para)
msgid "Before you can use keystone client commands, you must download and source an OpenStack RC file. For information, see the <citetitle>OpenStack Admin User Guide</citetitle>."
msgstr ""
#: ./doc/common/section_cli_keystone_example_usage.xml:11(para)
msgid "The keystone command-line client uses the following syntax:"
msgstr ""
#: ./doc/common/section_cli_keystone_example_usage.xml:13(replaceable)
msgid "PARAMETER"
msgstr ""
#: ./doc/common/section_cli_keystone_example_usage.xml:13(replaceable)
msgid "COMMAND"
msgstr ""
#: ./doc/common/section_cli_keystone_example_usage.xml:13(replaceable)
msgid "ARGUMENT"
msgstr ""
#: ./doc/common/section_cli_keystone_example_usage.xml:14(para)
msgid "For example, you can run the <placeholder-1/> and <placeholder-2/> commands, as follows:"
msgstr ""
#: ./doc/common/section_cli_keystone_example_usage.xml:23(replaceable) ./doc/common/section_cli_keystone_example_usage.xml:24(replaceable)
msgid "token"
msgstr ""
#: ./doc/common/section_cli_keystone_example_usage.xml:23(replaceable) ./doc/common/section_cli_keystone_example_usage.xml:24(replaceable)
msgid "endpoint"
msgstr ""
#: ./doc/common/section_cli_keystone_example_usage.xml:32(replaceable)
msgid "id"
msgstr ""
#: ./doc/common/section_cli_keystone_example_usage.xml:35(para)
msgid "For information about using the keystone client commands to create and manage users, roles, and projects, see the <citetitle>OpenStack Admin User Guide</citetitle>."
msgstr ""
#: ./doc/common/section_identity-troubleshooting.xml:7(title)
msgid "Troubleshoot the Identity service"
msgstr ""
#: ./doc/common/section_identity-troubleshooting.xml:8(para)
msgid "To troubleshoot the Identity service, review the logs in the <filename>/var/log/keystone/keystone.log</filename> file."
msgstr ""
#: ./doc/common/section_identity-troubleshooting.xml:11(para)
msgid "Use the <filename>/etc/keystone/logging.conf</filename> file to configure the location of log files."
msgstr ""
#: ./doc/common/section_identity-troubleshooting.xml:14(para)
msgid "The logs show the components that have come in to the WSGI request, and ideally show an error that explains why an authorization request failed. If you do not see the request in the logs, run keystone with <parameter>--debug</parameter> parameter. Pass the <parameter>--debug</parameter> parameter before the command parameters."
msgstr ""
#: ./doc/common/section_identity-troubleshooting.xml:21(title)
msgid "Debug PKI middleware"
msgstr ""
#: ./doc/common/section_identity-troubleshooting.xml:22(para)
msgid "If you receive an <literal>Invalid OpenStack Identity Credentials</literal> message when you talk to an OpenStack service, it might be caused by the changeover from UUID tokens to PKI tokens in the Grizzly release. Learn how to troubleshoot this error."
msgstr ""
#: ./doc/common/section_identity-troubleshooting.xml:27(para)
msgid "The PKI-based token validation scheme relies on certificates from Identity that are fetched through HTTP and stored in a local directory. The location for this directory is specified by the <literal>signing_dir</literal> configuration option. In your services configuration file, look for a section like this:"
msgstr ""
#: ./doc/common/section_identity-troubleshooting.xml:42(para)
msgid "If your service lacks this stanza, the <link href=\"https://github.com/openstack/python-keystoneclient/blob/master/keystoneclient/middleware/auth_token.py#L198\">keystoneclient/middleware/auth_token.py</link> file specifies the defaults. If no value is specified for this directory, it <link href=\"https://github.com/openstack/python-keystoneclient/blob/master/keystoneclient/middleware/auth_token.py#L299\">defaults to a secure temporary directory.</link> Initialization code for the service checks that the directory exists and is writable. If it does not exist, the code tries to create it. If this fails, the service fails to start. However, it often succeeds but problems occur later."
msgstr ""
#: ./doc/common/section_identity-troubleshooting.xml:54(para)
msgid "The first thing to check is that the <literal>signing_dir</literal> does, in fact, exist. If it does, check for the presence of the certificate files inside there:"
msgstr ""
#: ./doc/common/section_identity-troubleshooting.xml:65(para)
msgid "This directory contains two certificates and the token revocation list. If these files are not present, your service cannot fetch them from Identity. To troubleshoot, try to talk to Identity to make sure it correctly serves files, as follows:"
msgstr ""
#: ./doc/common/section_identity-troubleshooting.xml:71(para)
msgid "This command fetches the signing certificate:"
msgstr ""
#: ./doc/common/section_identity-troubleshooting.xml:82(para)
msgid "Note the expiration dates of the certificate:"
msgstr ""
#: ./doc/common/section_identity-troubleshooting.xml:85(para)
msgid "The token revocation list is updated once a minute, but the certificates are not. One possible problem is that the certificates are the wrong files or garbage. You can remove these files and run another command against your server: They are fetched on demand."
msgstr ""
#: ./doc/common/section_identity-troubleshooting.xml:90(para)
msgid "The Identity service log should show the access of the certificate files. You might have to turn up your logging levels. Set <literal>debug = True</literal> and <literal>verbose = True</literal> in your Identity configuration file and restart the Identity server."
msgstr ""
#: ./doc/common/section_identity-troubleshooting.xml:99(para)
msgid "If the files do not appear in your directory after this, it is likely one of the following issues:"
msgstr ""
#: ./doc/common/section_identity-troubleshooting.xml:103(para)
msgid "Your service is configured incorrectly and cannot talk to Identity. Check the <literal>auth_port</literal> and <literal>auth_host</literal> values and make sure that you can talk to that service through cURL, as shown previously."
msgstr ""
#: ./doc/common/section_identity-troubleshooting.xml:111(para)
msgid "Your signing directory is not writable. Use the <placeholder-1/> command to change its permissions so that the service (POSIX) user can write to it. Verify the change through <placeholder-2/> and <placeholder-3/> commands."
msgstr ""
#: ./doc/common/section_identity-troubleshooting.xml:119(para)
msgid "The SELinux policy is denying access to the directory."
msgstr ""
#: ./doc/common/section_identity-troubleshooting.xml:123(para)
msgid "SELinux troubles often occur when you use Fedora/RHEL-based packages and you choose configuration options that do not match the standard policy. Run the <placeholder-1/> command. If that makes a difference, you should relabel the directory. If you are using a sub-directory of the <filename>/var/cache/</filename> directory, run the following command:"
msgstr ""
#: ./doc/common/section_identity-troubleshooting.xml:132(para)
msgid "If you are not using a <filename>/var/cache</filename> sub-directory, you should. Modify the <literal>signing_dir</literal> configuration option for your service and restart."
msgstr ""
#: ./doc/common/section_identity-troubleshooting.xml:136(para)
msgid "Set back to <literal>setenforce enforcing</literal> to confirm that your changes solve the problem."
msgstr ""
#: ./doc/common/section_identity-troubleshooting.xml:138(para)
msgid "If your certificates are fetched on demand, the PKI validation is working properly. Most likely, the token from Identity is not valid for the operation you are attempting to perform, and your user needs a different role for the operation."
msgstr ""
#: ./doc/common/section_identity-troubleshooting.xml:145(title)
msgid "Debug signing key file errors"
msgstr ""
#: ./doc/common/section_identity-troubleshooting.xml:146(para)
msgid "If an error occurs when the signing key file opens, it is possible that the person who ran the <placeholder-1/> command to generate certificates and keys did not use the correct user. When you run the <placeholder-2/> command, Identity generates a set of certificates and keys in <filename>/etc/keystone/ssl*</filename>, which is owned by root:root."
msgstr ""
#: ./doc/common/section_identity-troubleshooting.xml:155(para)
msgid "This can present a problem when you run the Identity daemon under the keystone user account (nologin) when you try to run PKI. Unless you run the <placeholder-1/> command against the files keystone:keystone or run the <placeholder-2/> command with the <parameter>--keystone-user</parameter> and <parameter>--keystone-group</parameter> parameters, you get an error, as follows:"
msgstr ""
#: ./doc/common/section_identity-troubleshooting.xml:173(title)
msgid "Flush expired tokens from the token database table"
msgstr ""
#: ./doc/common/section_identity-troubleshooting.xml:175(para)
msgid "As you generate tokens, the token database table on the Identity server grows. To clear the token table, an administrative user must run the <placeholder-1/> command to flush the tokens. When you flush tokens, expired tokens are deleted and traceability is eliminated."
msgstr ""
#: ./doc/common/section_identity-troubleshooting.xml:181(para)
msgid "Use <placeholder-1/> to schedule this command to run frequently based on your workload. For large workloads, running it every minute is recommended."
msgstr ""
#: ./doc/common/section_getstart_trove.xml:7(title)
msgid "Database service overview"
msgstr ""
#: ./doc/common/section_getstart_trove.xml:8(para)
msgid "The Database service provides scalable and reliable cloud provisioning functionality for both relational and non-relational database engines. Users can quickly and easily use database features without the burden of handling complex administrative tasks. Cloud users and database administrators can provision and manage multiple database instances as needed."
msgstr ""
#: ./doc/common/section_getstart_trove.xml:14(para)
msgid "The Database service provides resource isolation at high performance levels, and automates complex administrative tasks such as deployment, configuration, patching, backups, restores, and monitoring."
msgstr ""
#: ./doc/common/section_getstart_trove.xml:18(title)
msgid "Process flow example"
msgstr ""
#: ./doc/common/section_getstart_trove.xml:19(para)
msgid "This example is a high-level process flow for using Database services:"
msgstr ""
#: ./doc/common/section_getstart_trove.xml:23(para)
msgid "The OpenStack Administrator configures the basic infrastructure using the following steps:"
msgstr ""
#: ./doc/common/section_getstart_trove.xml:27(para)
msgid "Install the Database service."
msgstr ""
#: ./doc/common/section_getstart_trove.xml:30(para)
msgid "Create an image for each type of database. For example, one for MySQL and one for MongoDB."
msgstr ""
#: ./doc/common/section_getstart_trove.xml:34(para)
msgid "Use the <placeholder-1/> command to import images and offer them to tenants."
msgstr ""
#: ./doc/common/section_getstart_trove.xml:40(para)
msgid "The OpenStack end user deploys the Database service using the following steps:"
msgstr ""
#: ./doc/common/section_getstart_trove.xml:44(para)
msgid "Create a Database service instance using the <placeholder-1/> command."
msgstr ""
#: ./doc/common/section_getstart_trove.xml:49(para)
msgid "Use the <placeholder-1/> command to get the ID of the instance, followed by the <placeholder-2/> command to get the IP address of it."
msgstr ""
#: ./doc/common/section_getstart_trove.xml:54(para)
msgid "Access the Database service instance using typical database access commands. For example, with MySQL:"
msgstr ""
#: ./doc/common/section_getstart_trove.xml:56(replaceable)
msgid "TROVE_IP_ADDRESS"
msgstr ""
#: ./doc/common/section_getstart_trove.xml:61(para)
msgid "The Database service includes the following components:"
msgstr ""
#: ./doc/common/section_getstart_trove.xml:64(term)
msgid "<code>python-troveclient</code> command-line client"
msgstr ""
#: ./doc/common/section_getstart_trove.xml:65(para)
msgid "A CLI that communicates with the <code>trove-api</code> component."
msgstr ""
#: ./doc/common/section_getstart_trove.xml:69(term)
msgid "<code>trove-api</code> component"
msgstr ""
#: ./doc/common/section_getstart_trove.xml:70(para)
msgid "Provides an OpenStack-native RESTful API that supports JSON to provision and manage Trove instances."
msgstr ""
#: ./doc/common/section_getstart_trove.xml:74(term)
msgid "<code>trove-conductor</code> service"
msgstr ""
#: ./doc/common/section_getstart_trove.xml:75(para)
msgid "Runs on the host, and receives messages from guest instances that want to update information on the host."
msgstr ""
#: ./doc/common/section_getstart_trove.xml:79(term)
msgid "<code>trove-taskmanager</code> service"
msgstr ""
#: ./doc/common/section_getstart_trove.xml:80(para)
msgid "Instruments the complex system flows that support provisioning instances, managing the lifecycle of instances, and performing operations on instances."
msgstr ""
#: ./doc/common/section_getstart_trove.xml:85(term)
msgid "<code>trove-guestagent</code> service"
msgstr ""
#: ./doc/common/section_getstart_trove.xml:86(para)
msgid "Runs within the guest instance. Manages and performs operations on the database itself."
msgstr ""
#: ./doc/common/section_keystone_db_sync.xml:7(title)
msgid "Migrate the Identity Service database"
msgstr ""
#: ./doc/common/section_keystone_db_sync.xml:8(para)
msgid "Between revisions of the Identity Service project, you might need to complete SQL migrations. The Identity Service project uses SQLAlchemy-migrate (see <link href=\"http://code.google.com/p/sqlalchemy-migrate/\">http://code.google.com/p/sqlalchemy-migrate/</link>) to migrate the SQL database between revisions. For core components, the source code stores migrations in a central repository under a <filename>keystone/common/sql/migrate_repo</filename> directory."
msgstr ""
#: ./doc/common/section_keystone_db_sync.xml:18(para)
msgid "Extensions to the Identity Service might also require SQL migrations. The directory <filename>keystone/contrib/example</filename> in the keystone repository contains a sample extension migration."
msgstr ""
#: ./doc/common/section_keystone_db_sync.xml:24(title)
msgid "To set up a migration for an extension"
msgstr ""
#: ./doc/common/section_keystone_db_sync.xml:26(para)
msgid "Create a directory structure where <literal>my_extension</literal> is the name of the extension, as follows: <filename>keystone/contrib/my_extension/migrate_repo/versions/</filename>."
msgstr ""
#: ./doc/common/section_keystone_db_sync.xml:32(para)
msgid "Create empty <filename>__init__.py</filename> files in the <filename>migrate_repo</filename> and <filename>versions</filename> subdirectories."
msgstr ""
#: ./doc/common/section_keystone_db_sync.xml:38(para)
msgid "Create a <filename>migrate.cfg</filename> configuration file in the <filename>migrate_repo</filename> subdirectory, which conforms to a key/value <filename>.ini</filename> file format."
msgstr ""
#: ./doc/common/section_keystone_db_sync.xml:42(para)
msgid "An example configuration file:"
msgstr ""
#: ./doc/common/section_keystone_db_sync.xml:50(title)
msgid "To test a migration for a specific extension"
msgstr ""
#: ./doc/common/section_keystone_db_sync.xml:51(para)
msgid "You can use the <placeholder-1/> command with the <parameter>--extension</parameter> parameter for both the <placeholder-2/> and <placeholder-3/> commands. Ensure that the required configuration files exist before completing these steps."
msgstr ""
#: ./doc/common/section_keystone_db_sync.xml:58(para)
msgid "Test your migrations with an <literal>example</literal> extension:"
msgstr ""
#: ./doc/common/section_keystone_db_sync.xml:63(para)
msgid "Migrate to version 1:"
msgstr ""
#: ./doc/common/section_keystone_db_sync.xml:67(para)
msgid "Migrate back to version 0:"
msgstr ""
#: ./doc/common/section_keystone_db_sync.xml:71(para)
msgid "Check the version:"
msgstr ""
#: ./doc/common/section_support-compute.xml:11(title)
msgid "Troubleshoot Compute"
msgstr ""
#: ./doc/common/section_support-compute.xml:12(para)
msgid "Common problems for Compute typically involve misconfigured networking or credentials that are not sourced properly in the environment. Also, most flat networking configurations do not enable <placeholder-1/> or <placeholder-2/> from a compute node to the instances that run on that node. Another common problem is trying to run 32-bit images on a 64-bit compute node. This section shows you how to troubleshoot Compute."
msgstr ""
#: ./doc/common/section_support-compute.xml:21(title)
msgid "Compute service logging"
msgstr ""
#: ./doc/common/section_support-compute.xml:22(para)
msgid "Compute stores a log file for each service in <filename>/var/log/nova</filename>. For example, <filename>nova-compute.log</filename> is the log for the <systemitem class=\"service\">nova-compute</systemitem> service. You can set the following options to format log strings for the nova.log module in the <filename>nova.conf</filename> file:"
msgstr ""
#: ./doc/common/section_support-compute.xml:31(literal)
msgid "logging_context_format_string"
msgstr ""
#: ./doc/common/section_support-compute.xml:34(literal)
msgid "logging_default_format_string"
msgstr ""
#: ./doc/common/section_support-compute.xml:37(para)
msgid "If the log level is set to <literal>debug</literal>, you can also specify <literal>logging_debug_format_suffix</literal> to append extra formatting. For information about what variables are available for the formatter see: <link href=\"http://docs.python.org/library/logging.html#formatter\">http://docs.python.org/library/logging.html#formatter</link>."
msgstr ""
#: ./doc/common/section_support-compute.xml:44(para)
msgid "You have two options for logging for OpenStack Compute based on configuration settings. In <filename>nova.conf</filename>, include the <literal>logfile</literal> option to enable logging. Alternatively you can set <literal>use_syslog = 1</literal> so that the nova daemon logs to syslog."
msgstr ""
#: ./doc/common/section_support-compute.xml:52(title)
msgid "Guru Meditation reports"
msgstr ""
#: ./doc/common/section_support-compute.xml:53(para)
msgid "A Guru Meditation report is sent by the Compute Service upon receipt of the <systemitem>SIGUSR1</systemitem> signal. This report is a general-purpose error report, including a complete report of the service's current state, and is sent to <systemitem>stderr</systemitem>."
msgstr ""
#: ./doc/common/section_support-compute.xml:57(para)
msgid "For example, if you redirect error output to <filename>nova-api-err.log</filename> using <placeholder-1/>, resulting in the process ID 8675, you can then run:"
msgstr ""
#: ./doc/common/section_support-compute.xml:61(para)
msgid "This command triggers the Guru Meditation report to be printed to <filename>/var/log/nova/nova-api-err.log</filename>."
msgstr ""
#: ./doc/common/section_support-compute.xml:65(para)
msgid "Package Displays information about the package to which the process belongs, including version information."
msgstr ""
#: ./doc/common/section_support-compute.xml:67(para)
msgid "Threads Displays stack traces and thread IDs for each of the threads within the process."
msgstr ""
#: ./doc/common/section_support-compute.xml:69(para)
msgid "Green Threads Displays stack traces for each of the green threads within the process (green threads do not have thread IDs)."
msgstr ""
#: ./doc/common/section_support-compute.xml:71(para)
msgid "Configuration Lists all configuration options currently accessible through the CONF object for the current process."
msgstr ""
#: ./doc/common/section_support-compute.xml:63(para)
msgid "The report has the following sections: <placeholder-1/>"
msgstr ""
#: ./doc/common/section_support-compute.xml:74(para)
msgid "For more information, see <link href=\"http://docs.openstack.org/developer/nova/devref/gmr.html\">Guru Meditation Reports</link>."
msgstr ""
#: ./doc/common/section_support-compute.xml:79(title)
msgid "Common errors and fixes for Compute"
msgstr ""
#: ./doc/common/section_support-compute.xml:80(para)
msgid "The <link href=\"http://ask.openstack.org\">ask.openstack.org</link> site offers a place to ask and answer questions, and you can also mark questions as frequently asked questions. This section describes some errors people have posted previously. Bugs are constantly being fixed, so online resources are a great way to get the most up-to-date errors and fixes."
msgstr ""
#: ./doc/common/section_support-compute.xml:88(title)
msgid "Credential errors, 401, and 403 forbidden errors"
msgstr ""
#: ./doc/common/section_support-compute.xml:95(para)
msgid "<emphasis role=\"bold\">Manual method</emphasis>. Get get the <filename>novarc</filename> file from the project ZIP file, save existing credentials in case of override. and manually source the <filename>novarc</filename> file."
msgstr ""
#: ./doc/common/section_support-compute.xml:105(para)
msgid "<emphasis role=\"bold\">Script method</emphasis>. Generates <filename>novarc</filename> from the project ZIP file and sources it for you."
msgstr ""
#: ./doc/common/section_support-compute.xml:90(para)
msgid "Missing credentials cause a <errorcode>403</errorcode><errortext>forbidden</errortext> error. To resolve this issue, use one of these methods:<placeholder-1/>"
msgstr ""
#: ./doc/common/section_support-compute.xml:112(para)
msgid "When you run <systemitem class=\"service\">nova-api</systemitem> the first time, it generates the certificate authority information, including <filename>openssl.cnf</filename>. If you start the CA services before this, you might not be able to create your ZIP file. Restart the services. When your CA information is available, create your ZIP file."
msgstr ""
#: ./doc/common/section_support-compute.xml:120(para)
msgid "Also, check your HTTP proxy settings to see whether they cause problems with <filename>novarc</filename> creation."
msgstr ""
#: ./doc/common/section_support-compute.xml:125(title)
msgid "Instance errors"
msgstr ""
#: ./doc/common/section_support-compute.xml:126(para)
msgid "Sometimes a particular instance shows <literal>pending</literal> or you cannot SSH to it. Sometimes the image itself is the problem. For example, when you use flat manager networking, you do not have a DHCP server and certain images do not support interface injection; you cannot connect to them. The fix for this problem is to use an image that does support this method, such as Ubuntu, which obtains an IP address correctly with FlatManager network settings."
msgstr ""
#: ./doc/common/section_support-compute.xml:136(para)
msgid "To troubleshoot other possible problems with an instance, such as an instance that stays in a spawning state, check the directory for the particular instance under <filename>/var/lib/nova/instances</filename> on the <systemitem class=\"service\">nova-compute</systemitem> host and make sure that these files are present:"
msgstr ""
#: ./doc/common/section_support-compute.xml:145(filename)
msgid "libvirt.xml"
msgstr ""
#: ./doc/common/section_support-compute.xml:148(filename)
msgid "disk"
msgstr ""
#: ./doc/common/section_support-compute.xml:151(filename)
msgid "disk-raw"
msgstr ""
#: ./doc/common/section_support-compute.xml:154(filename)
msgid "kernel"
msgstr ""
#: ./doc/common/section_support-compute.xml:157(filename)
msgid "ramdisk"
msgstr ""
#: ./doc/common/section_support-compute.xml:160(para)
msgid "After the instance starts, <filename>console.log</filename>"
msgstr ""
#: ./doc/common/section_support-compute.xml:164(para)
msgid "If any files are missing, empty, or very small, the <systemitem class=\"service\">nova-compute</systemitem> service did not successfully download the images from the Image Service."
msgstr ""
#: ./doc/common/section_support-compute.xml:169(para)
msgid "Also check <filename>nova-compute.log</filename> for exceptions. Sometimes they do not appear in the console output."
msgstr ""
#: ./doc/common/section_support-compute.xml:172(para)
msgid "Next, check the log file for the instance in the <filename>/var/log/libvirt/qemu</filename> directory to see if it exists and has any useful error messages in it."
msgstr ""
#: ./doc/common/section_support-compute.xml:176(para)
msgid "Finally, from the <filename>/var/lib/nova/instances</filename> directory for the instance, see if this command returns an error:"
msgstr ""
#: ./doc/common/section_support-compute.xml:183(title)
msgid "Empty log output for Linux instances"
msgstr ""
#: ./doc/common/section_support-compute.xml:184(para)
msgid "You can view the log output of running instances from either the <guilabel>Log</guilabel> tab of the dashboard or the output of <placeholder-1/>. In some cases, the log output of a running Linux instance will be empty or only display a single character (for example, the <keycap>?</keycap> character)."
msgstr ""
#: ./doc/common/section_support-compute.xml:191(para)
msgid "This occurs when the Compute service attempts to retrieve the log output of the instance via a serial console while the instance itself is not configured to send output to the console. To rectify this, append the following parameters to kernel arguments specified in the instance's boot loader:"
msgstr ""
#: ./doc/common/section_support-compute.xml:198(para)
msgid "Upon rebooting, the instance will be configured to send output to the Compute service."
msgstr ""
#: ./doc/common/section_support-compute.xml:203(title)
msgid "Reset the state of an instance"
msgstr ""
#: ./doc/common/section_support-compute.xml:204(para)
msgid "If an instance remains in an intermediate state, such as <literal>deleting</literal>, you can use the <placeholder-1/> command to manually reset the state of an instance to an error state. You can then delete the instance. For example:"
msgstr ""
#: ./doc/common/section_support-compute.xml:211(para)
msgid "You can also use the <parameter>--active</parameter> parameter to force the instance back to an active state instead of an error state. For example:"
msgstr ""
#: ./doc/common/section_support-compute.xml:217(title)
msgid "Injection problems"
msgstr ""
#: ./doc/common/section_support-compute.xml:218(para)
msgid "If instances do not boot or boot slowly, investigate file injection as a cause."
msgstr ""
#: ./doc/common/section_support-compute.xml:220(para)
msgid "To disable injection in libvirt, set the following in <filename>nova.conf</filename>:"
msgstr ""
#: ./doc/common/section_support-compute.xml:225(para)
msgid "If you have not enabled the configuration drive and you want to make user-specified files available from the metadata server for to improve performance and avoid boot failure if injection fails, you must disable injection."
msgstr ""
#: ./doc/common/section_getstart_telemetry.xml:7(title)
msgid "Telemetry module"
msgstr ""
#: ./doc/common/section_getstart_telemetry.xml:8(para)
msgid "The Telemetry module performs the following functions:"
msgstr ""
#: ./doc/common/section_getstart_telemetry.xml:12(para)
msgid "Efficiently collects the metering data about the CPU and network costs."
msgstr ""
#: ./doc/common/section_getstart_telemetry.xml:16(para)
msgid "Collects data by monitoring notifications sent from services or by polling the infrastructure."
msgstr ""
#: ./doc/common/section_getstart_telemetry.xml:20(para)
msgid "Configures the type of collected data to meet various operating requirements. It accesses and inserts the metering data through the REST API."
msgstr ""
#: ./doc/common/section_getstart_telemetry.xml:25(para)
msgid "Expands the framework to collect custom usage data by additional plug-ins."
msgstr ""
#: ./doc/common/section_getstart_telemetry.xml:29(para)
msgid "Produces signed metering messages that cannot be repudiated."
msgstr ""
#: ./doc/common/section_getstart_telemetry.xml:34(para)
msgid "The Telemetry module consists of the following components:"
msgstr ""
#: ./doc/common/section_getstart_telemetry.xml:37(term)
msgid "A compute agent (<systemitem class=\"service\">ceilometer-agent-compute</systemitem>)"
msgstr ""
#: ./doc/common/section_getstart_telemetry.xml:39(para)
msgid "Runs on each compute node and polls for resource utilization statistics. There may be other types of agents in the future, but for now our focus is creating the compute agent."
msgstr ""
#: ./doc/common/section_getstart_telemetry.xml:44(term)
msgid "A central agent (<systemitem class=\"service\">ceilometer-agent-central</systemitem>)"
msgstr ""
#: ./doc/common/section_getstart_telemetry.xml:46(para)
msgid "Runs on a central management server to poll for resource utilization statistics for resources not tied to instances or compute nodes."
msgstr ""
#: ./doc/common/section_getstart_telemetry.xml:50(term)
msgid "A collector (<systemitem class=\"service\">ceilometer-collector</systemitem>)"
msgstr ""
#: ./doc/common/section_getstart_telemetry.xml:52(para)
msgid "Runs on central management server(s) to monitor the message queues (for notifications and for metering data coming from the agent). Notification messages are processed and turned into metering messages, which are sent to the message bus using the appropriate topic. Telemetry messages are written to the data store without modification."
msgstr ""
#: ./doc/common/section_getstart_telemetry.xml:60(term)
msgid "An alarm notifier (<systemitem class=\"service\">ceilometer-alarm-notifier</systemitem>)"
msgstr ""
#: ./doc/common/section_getstart_telemetry.xml:62(para)
msgid "Runs on one or more central management servers to allow alarms to be set based on the threshold evaluation for a collection of samples."
msgstr ""
#: ./doc/common/section_getstart_telemetry.xml:67(term)
msgid "A data store"
msgstr ""
#: ./doc/common/section_getstart_telemetry.xml:68(para)
msgid "A database capable of handling concurrent writes (from one or more collector instances) and reads (from the API server)."
msgstr ""
#: ./doc/common/section_getstart_telemetry.xml:73(term)
msgid "An API server (<systemitem class=\"service\">ceilometer-api</systemitem>)"
msgstr ""
#: ./doc/common/section_getstart_telemetry.xml:75(para)
msgid "Runs on one or more central management servers to provide data access from the data store."
msgstr ""
#: ./doc/common/section_getstart_telemetry.xml:79(para)
msgid "These services communicate by using the OpenStack messaging bus. Only the collector and API server have access to the data store."
msgstr ""
#: ./doc/common/section_cli_cinder_read-only-volumes.xml:7(title)
msgid "Set a volume to read-only access"
msgstr ""
#: ./doc/common/section_cli_cinder_read-only-volumes.xml:8(para)
msgid "To give multiple users shared, secure access to the same data, you can set a volume to read-only access."
msgstr ""
#: ./doc/common/section_cli_cinder_read-only-volumes.xml:10(para)
msgid "Run the following command to set a volume to read-only access:"
msgstr ""
#: ./doc/common/section_cli_cinder_read-only-volumes.xml:12(replaceable)
msgid "VOLUME"
msgstr ""
#: ./doc/common/section_cli_cinder_read-only-volumes.xml:12(replaceable)
msgid "BOOLEAN"
msgstr ""
#: ./doc/common/section_cli_cinder_read-only-volumes.xml:13(para)
msgid "<replaceable>VOLUME</replaceable> is the ID of the target volume and <replaceable>BOOLEAN</replaceable> is a flag that enables read-only or read/write access to the volume."
msgstr ""
#: ./doc/common/section_cli_cinder_read-only-volumes.xml:16(para)
msgid "The following values for <replaceable>BOOLEAN</replaceable> are valid:"
msgstr ""
#: ./doc/common/section_cli_cinder_read-only-volumes.xml:20(para)
msgid "<literal>true</literal>. Sets the read-only flag in the volume. When you attach the volume to an instance, the instance checks for this flag to determine whether to restrict volume access to read-only."
msgstr ""
#: ./doc/common/section_cli_cinder_read-only-volumes.xml:26(para)
msgid "<literal>false</literal>. Sets the volume to read/write access."
msgstr ""
#: ./doc/common/section_compute-configure-ec2.xml:7(title)
msgid "Configure the EC2 API"
msgstr ""
#: ./doc/common/section_compute-configure-ec2.xml:8(para)
msgid "You can set options in the <filename>nova.conf</filename> configuration file to control which network address and port the EC2 API listens on, the formatting of some API responses, and authentication related options."
msgstr ""
#: ./doc/common/section_compute-configure-ec2.xml:12(para)
msgid "To customize these options for OpenStack EC2 API, use the configuration option settings documented in <xref linkend=\"config_table_nova_ec2\"/>."
msgstr ""
#: ./doc/common/section_cli_keystone_credentials.xml:7(title)
msgid "Set up credentials for the keystone client"
msgstr ""
#: ./doc/common/section_cli_keystone_credentials.xml:8(para)
msgid "You can configure the <package>python-keystoneclient</package> with admin credentials with either an authentication token or a user name and password."
msgstr ""
#: ./doc/common/section_cli_keystone_credentials.xml:13(title)
msgid "To configure the keystone client with an authentication token"
msgstr ""
#: ./doc/common/section_cli_keystone_credentials.xml:16(para)
msgid "Export your keystone endpoint to the <varname>OS_SERVICE_ENDPOINT</varname> environment variable:"
msgstr ""
#: ./doc/common/section_cli_keystone_credentials.xml:22(para)
msgid "Export the administrator service token to the <varname>OS_SERVICE_TOKEN</varname> environment variable:"
msgstr ""
#: ./doc/common/section_cli_keystone_credentials.xml:27(para) ./doc/common/section_cli_keystone_credentials.xml:81(para)
msgid "Alternatively, you can specify these parameters on any keystone client command:"
msgstr ""
#: ./doc/common/section_cli_keystone_credentials.xml:31(para)
msgid "<parameter>--os-endpoint <replaceable>SERVICE_ENDPOINT</replaceable></parameter>. An endpoint to use instead of the one in the service catalog. Defaults to <code>env[OS_SERVICE_ENDPOINT]</code>."
msgstr ""
#: ./doc/common/section_cli_keystone_credentials.xml:40(para)
msgid "<parameter>--os-token <replaceable>SERVICE_TOKEN</replaceable></parameter>. An existing token to use instead of the one generated by authentication. Defaults to <code>env[OS_SERVICE_TOKEN]</code>."
msgstr ""
#: ./doc/common/section_cli_keystone_credentials.xml:53(title)
msgid "To configure the keystone client with a user name and password"
msgstr ""
#: ./doc/common/section_cli_keystone_credentials.xml:56(para)
msgid "Export the administrator user name to the <varname>OS_USERNAME</varname> environment variable:"
msgstr ""
#: ./doc/common/section_cli_keystone_credentials.xml:62(para)
msgid "Export the administrator password to the <varname>OS_PASSWORD</varname> environment variable:"
msgstr ""
#: ./doc/common/section_cli_keystone_credentials.xml:68(para)
msgid "Export the tenant name to the <varname>OS_TENANT_NAME</varname> environment variable:"
msgstr ""
#: ./doc/common/section_cli_keystone_credentials.xml:74(para)
msgid "Export the URL of the keystone auth server, for example <link href=\"http://localhost:5000/v2.0'\">http://localhost:5000/v2.0'</link>, to the <varname>OS_AUTH_URL</varname> environment variable:"
msgstr ""
#: ./doc/common/section_cli_keystone_credentials.xml:85(para)
msgid "<literal>--os-username <replaceable>OS_USERNAME</replaceable></literal>. Name used for authentication with the Identity Service. Defaults to <code>env[OS_USERNAME]</code>."
msgstr ""
#: ./doc/common/section_cli_keystone_credentials.xml:93(para)
msgid "<literal>--os-password <replaceable>OS_PASSWORD</replaceable></literal>. Password used for authentication with the Identity Service. Defaults to <code>env[OS_PASSWORD]</code>."
msgstr ""
#: ./doc/common/section_cli_keystone_credentials.xml:101(para)
msgid "<literal>--os-tenant_name <replaceable>OS_TENANT_NAME</replaceable></literal>. Tenant for which to request authentication. Defaults to <code>env[OS_TENANT_NAME]</code>."
msgstr ""
#: ./doc/common/section_cli_keystone_credentials.xml:109(para)
msgid "<literal>--os-auth_url <replaceable>OS_AUTH_URL</replaceable></literal>. The Identity Service endpoint to use for authentication. Defaults to <code>env[OS_AUTH_URL]</code>."
msgstr ""
#. When image changes, this message will be marked fuzzy or untranslated for you.
#. It doesn't matter what you translate it to: it's not used at all.
#: ./doc/common/section_compute-configure-vnc.xml:64(None)
msgid "@@image: '../common/figures/novnc/SCH_5009_V00_NUAC-VNC_OpenStack.png'; md5=182dc38019a220c851e1c94aa50f4565"
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:7(title)
msgid "VNC console proxy"
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:8(para)
msgid "The VNC proxy is an OpenStack component that enables compute service users to access their instances through VNC clients."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:11(para)
msgid "The VNC console connection works as follows:"
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:14(para)
msgid "A user connects to the API and gets an <literal>access_url</literal> such as, <literal>http://<replaceable>ip:port</replaceable>/?token=xyz</literal>."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:20(para)
msgid "The user pastes the URL in a browser or uses it as a client parameter."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:24(para)
msgid "The browser or client connects to the proxy."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:27(para)
msgid "The proxy talks to <systemitem class=\"service\">nova-consoleauth</systemitem> to authorize the token for the user, and maps the token to the <emphasis>private</emphasis> host and port of the VNC server for an instance."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:32(para)
msgid "The compute host specifies the address that the proxy should use to connect through the <filename>nova.conf</filename> file option, <option>vncserver_proxyclient_address</option>. In this way, the VNC proxy works as a bridge between the public network and private host network."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:40(para)
msgid "The proxy initiates the connection to VNC server and continues to proxy until the session ends."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:44(para)
msgid "The proxy also tunnels the VNC protocol over WebSockets so that the <systemitem>noVNC</systemitem> client can talk to VNC servers. In general, the VNC proxy:"
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:49(para)
msgid "Bridges between the public network where the clients live and the private network where VNC servers live."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:53(para)
msgid "Mediates token authentication."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:56(para)
msgid "Transparently deals with hypervisor-specific connection details to provide a uniform client experience."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:59(title)
msgid "noVNC process"
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:72(title)
msgid "About nova-consoleauth"
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:74(para)
msgid "Both client proxies leverage a shared service to manage token authentication called <systemitem class=\"service\">nova-consoleauth</systemitem>. This service must be running for either proxy to work. Many proxies of either type can be run against a single <systemitem class=\"service\">nova-consoleauth</systemitem> service in a cluster configuration."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:81(para)
msgid "Do not confuse the <systemitem class=\"service\">nova-consoleauth</systemitem> shared service with <literal>nova-console</literal>, which is a XenAPI-specific service that most recent VNC proxy architectures do not use."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:88(title)
msgid "Typical deployment"
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:89(para)
msgid "A typical deployment has the following components:"
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:92(para)
msgid "A <systemitem class=\"service\">nova-consoleauth</systemitem> process. Typically runs on the controller host."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:97(para)
msgid "One or more <systemitem class=\"service\">nova-novncproxy</systemitem> services. Supports browser-based noVNC clients. For simple deployments, this service typically runs on the same machine as <systemitem class=\"service\">nova-api</systemitem> because it operates as a proxy between the public network and the private compute host network."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:106(para)
msgid "One or more <literal>nova-xvpvncproxy</literal> services. Supports the special Java client discussed here. For simple deployments, this service typically runs on the same machine as <systemitem class=\"service\">nova-api</systemitem> because it acts as a proxy between the public network and the private compute host network."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:115(para)
msgid "One or more compute hosts. These compute hosts must have correctly configured options, as follows."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:121(title)
msgid "VNC configuration options"
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:122(para)
msgid "To customize the VNC console, use the following configuration options:"
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:125(para)
msgid "To support <link href=\"http://docs.openstack.org/trunk/config-reference/content/configuring-openstack-compute-basics.html#section_configuring-compute-migrations\">live migration</link>, you cannot specify a specific IP address for <literal>vncserver_listen</literal>, because that IP address does not exist on the destination host."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:135(para)
msgid "The <literal>vncserver_proxyclient_address</literal> defaults to <literal>127.0.0.1</literal>, which is the address of the compute host that Compute instructs proxies to use when connecting to instance servers."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:140(para)
msgid "For all-in-one XenServer domU deployments, set this to 169.254.0.1."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:141(para)
msgid "For multi-host XenServer domU deployments, set to a dom0 management IP on the same network as the proxies."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:143(para)
msgid "For multi-host libvirt deployments, set to a host management IP on the same network as the proxies."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:151(title)
msgid "nova-novncproxy (noVNC)"
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:153(para)
msgid "You must install the <package>noVNC</package> package, which contains the <systemitem class=\"service\">nova-novncproxy</systemitem> service. As root, run the following command:"
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:157(para)
msgid "The service starts automatically on installation."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:158(para)
msgid "To restart the service, run:"
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:160(para)
msgid "The configuration option parameter should point to your <filename>nova.conf</filename> file, which includes the message queue server address and credentials."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:163(para)
msgid "By default, <systemitem class=\"service\">nova-novncproxy</systemitem> binds on <literal>0.0.0.0:6080</literal>."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:166(para)
msgid "To connect the service to your Compute deployment, add the following configuration options to your <filename>nova.conf</filename> file:"
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:170(para)
msgid "<literal>vncserver_listen</literal>=<replaceable>0.0.0.0</replaceable>"
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:173(para)
msgid "Specifies the address on which the VNC service should bind. Make sure it is assigned one of the compute node interfaces. This address is the one used by your domain file."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:179(para)
msgid "To use live migration, use the <replaceable>0.0.0.0</replaceable> address."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:184(para)
msgid "<literal>vncserver_proxyclient_address</literal>=<replaceable>127.0.0.1</replaceable>"
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:187(para)
msgid "The address of the compute host that Compute instructs proxies to use when connecting to instance <literal>vncservers</literal>."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:194(title)
msgid "Frequently asked questions about VNC access to virtual machines"
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:200(literal)
msgid "nova-xvpvncproxy"
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:201(systemitem)
msgid "nova-novncproxy"
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:199(emphasis)
msgid "Q: What is the difference between <placeholder-1/> and <placeholder-2/>?"
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:203(para)
msgid "A: <literal>nova-xvpvncproxy</literal>, which ships with OpenStack Compute, is a proxy that supports a simple Java client. <systemitem class=\"service\">nova-novncproxy</systemitem> uses noVNC to provide VNC support through a web browser."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:209(emphasis)
msgid "Q: I want VNC support in the OpenStack dashboard. What services do I need?"
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:211(para)
msgid "A: You need <systemitem class=\"service\">nova-novncproxy</systemitem>, <systemitem class=\"service\">nova-consoleauth</systemitem>, and correctly configured compute hosts."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:217(emphasis)
msgid "Q: When I use <placeholder-1/> or click on the VNC tab of the OpenStack dashboard, it hangs. Why?"
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:219(para)
msgid "A: Make sure you are running <systemitem class=\"service\">nova-consoleauth</systemitem> (in addition to <systemitem class=\"service\">nova-novncproxy</systemitem>). The proxies rely on <systemitem class=\"service\">nova-consoleauth</systemitem> to validate tokens, and waits for a reply from them until a timeout is reached."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:228(emphasis)
msgid "Q: My VNC proxy worked fine during my all-in-one test, but now it doesn't work on multi host. Why?"
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:231(para)
msgid "A: The default options work for an all-in-one install, but changes must be made on your compute hosts once you start to build a cluster. As an example, suppose you have two servers:"
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:237(para)
msgid "Your <systemitem class=\"service\">nova-compute</systemitem> configuration file must set the following values:"
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:249(para)
msgid "<literal>novncproxy_base_url</literal> and <literal>xvpvncproxy_base_url</literal> use a public IP; this is the URL that is ultimately returned to clients, which generally do not have access to your private network. Your PROXYSERVER must be able to reach <literal>vncserver_proxyclient_address</literal>, because that is the address over which the VNC connection is proxied."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:261(emphasis)
msgid "Q: My noVNC does not work with recent versions of web browsers. Why?"
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:264(para)
msgid "A: Make sure you have installed <literal>python-numpy</literal>, which is required to support a newer version of the WebSocket protocol (HyBi-07+)."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:271(emphasis)
msgid "Q: How do I adjust the dimensions of the VNC window image in the OpenStack dashboard?"
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:274(para)
msgid "A: These values are hard-coded in a Django HTML template. To alter them, edit the <filename>_detail_vnc.html</filename> template file. The location of this file varies based on Linux distribution. On Ubuntu 14.04, the file is at <filename>/usr/share/pyshared/horizon/dashboards/nova/instances/templates/instances/_detail_vnc.html</filename>."
msgstr ""
#: ./doc/common/section_compute-configure-vnc.xml:280(para)
msgid "Modify the <option>width</option> and <option>height</option> options, as follows:"
msgstr ""
#. When image changes, this message will be marked fuzzy or untranslated for you.
#. It doesn't matter what you translate it to: it's not used at all.
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:107(None)
msgid "@@image: 'figures/launch_instances.png'; md5=8a7e6864bce97f6478db572daf3ef5de"
msgstr ""
#. When image changes, this message will be marked fuzzy or untranslated for you.
#. It doesn't matter what you translate it to: it's not used at all.
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:165(None)
msgid "@@image: 'figures/instances.png'; md5=6b0f5cb3009d447334ff8b5c5b2cd121"
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:7(title)
msgid "Launch an instance from an image"
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:9(para)
msgid "Instances are virtual machines that run inside the cloud."
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:11(para)
msgid "You can launch an instance directly from one of the available OpenStack images. The OpenStack Image Service provides a pool of images that are accessible to members of different projects. When you launch an instance from an image, OpenStack creates a local copy of the image on the respective compute node where the instance is started."
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:17(para)
msgid "Alternatively, you can launch an instance from an image that you have copied to a persistent volume."
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:19(para)
msgid "To launch an instance, specify the following parameters:"
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:23(para)
msgid "The <guilabel>instance source</guilabel>, which is an image or snapshot. Alternatively, you can boot from a volume, which is block storage, to which you've copied an image or snapshot."
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:29(para)
msgid "The <guilabel>image</guilabel> or <guilabel>snapshot</guilabel>, which represents the operating system."
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:34(para)
msgid "A <guilabel>name</guilabel> for your instance."
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:38(para)
msgid "The <emphasis role=\"bold\">flavor</emphasis> for your instance, which defines the compute, memory, and storage capacity of nova computing instances. A flavor is an available hardware configuration for a server. It defines the size of a virtual server that can be launched."
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:46(para)
msgid "Access and security credentials, which include one or both of the following credentials:"
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:50(para)
msgid "A <emphasis role=\"bold\">keypair</emphasis> for your instance, which are SSH credentials that are injected into images when they are launched. For this to work, the image must contain the <literal>cloud-init</literal> package. Create at least one keypair for each project. If you already have generated a keypair with an external tool, you can import it into OpenStack. You can use the keypair for multiple instances that belong to that project."
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:63(para)
msgid "A <emphasis role=\"bold\">security group</emphasis>, which defines which incoming network traffic is forwarded to instances. Security groups hold a set of firewall policies, known as <emphasis role=\"italic\">security group rules</emphasis>."
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:74(para)
msgid "If needed, you can assign a <emphasis role=\"bold\">floating (public) IP address</emphasis> to a running instance and attach a block storage device, or volume, for persistent storage."
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:81(title)
msgid "To launch an instance:"
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:83(para)
msgid "Log in to the OpenStack dashboard."
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:86(para)
msgid "If you are a member of multiple projects, select a project from the drop-down list at the top of the <guilabel>Project</guilabel> tab."
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:91(para)
msgid "Click the <guilabel>Images &amp; Snapshot</guilabel> category."
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:93(para)
msgid "The dashboard shows the images that have been uploaded to OpenStack Image Service and are available for this project."
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:101(title)
msgid "OpenStack dashboard - Launch Instances window"
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:98(para)
msgid "Select an image and click <guibutton>Launch</guibutton>. The <guilabel>Launch Image</guilabel> window appears: <placeholder-1/>"
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:113(para)
msgid "Specify the following parameters:"
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:117(para)
msgid "Enter an instance name to assign to the virtual machine."
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:121(para)
msgid "From the <guilabel>Flavor</guilabel> drop-down list, select the size of the virtual machine to launch."
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:126(para)
msgid "Optionally, select a keypair."
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:127(para)
msgid "In case an image uses a static root password or a static key set (neither is recommended), you do not need to provide a keypair on starting the instance."
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:133(para)
msgid "In <guilabel>Instance Count</guilabel>, enter the number of virtual machines to launch from this image."
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:138(para)
msgid "Assign the instance to the default security group. If you added rules to this group, the instance implements these rules."
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:151(para)
msgid "Click <guibutton>Launch Instance</guibutton>. The instance is launched on any of the compute nodes in the cloud."
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:156(para)
msgid "After you have launched an instance, switch to the <guilabel>Instances &amp; Volumes</guilabel> category to view the instance name, its (private or public) IP address, size, status, task, and power state."
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:161(title)
msgid "OpenStack dashboard - Instances"
msgstr ""
#: ./doc/common/section_dashboard_launch_instances_from_image.xml:169(para)
msgid "If you did not provide a keypair on starting and have not touched security groups or rules so far, by default the instance can only be accessed from inside the cloud through VNC at this point. Even pinging the instance is not possible."
msgstr ""
#: ./doc/common/section_keystone_config_ldap.xml:7(title)
msgid "Integrate Identity with LDAP"
msgstr ""
#: ./doc/common/section_keystone_config_ldap.xml:8(para)
msgid "Identity Service supports integration with an existing LDAP directory for authentication and authorization services."
msgstr ""
#: ./doc/common/section_keystone_config_ldap.xml:12(para)
msgid "For OpenStack Identity to access an LDAP back end, you must enable the <option>authlogin_nsswitch_use_ldap</option> boolean value for SELinux on the Identity server. To enable and make the option persistent across reboots:"
msgstr ""
#: ./doc/common/section_keystone_config_ldap.xml:19(para)
msgid "You can integrate Identity with a single LDAP server."
msgstr ""
#: ./doc/common/section_keystone_config_ldap.xml:22(para)
msgid "To configure Identity, set options in the <filename>/etc/keystone/keystone.conf</filename> file. Modify these examples as needed."
msgstr ""
#: ./doc/common/section_keystone_config_ldap.xml:26(title)
msgid "To integrate Identity with LDAP"
msgstr ""
#: ./doc/common/section_keystone_config_ldap.xml:28(para)
msgid "Enable the LDAP driver in the <filename>keystone.conf</filename> file:"
msgstr ""
#: ./doc/common/section_keystone_config_ldap.xml:35(para)
msgid "Define the destination LDAP server in the <filename>keystone.conf</filename> file:"
msgstr ""
#: ./doc/common/section_keystone_config_ldap.xml:46(para)
msgid "Create the organizational units (OU) in the LDAP directory, and define their corresponding location in the <filename>keystone.conf</filename> file:"
msgstr ""
#: ./doc/common/section_keystone_config_ldap.xml:59(para)
msgid "These schema attributes are extensible for compatibility with various schemas. For example, this entry maps to the <systemitem>person</systemitem> attribute in Active Directory:"
msgstr ""
#: ./doc/common/section_keystone_config_ldap.xml:68(para)
msgid "A read-only implementation is recommended for LDAP integration. These permissions are applied to object types in the <filename>keystone.conf</filename> file:"
msgstr ""
#: ./doc/common/section_keystone_config_ldap.xml:86(para)
msgid "Restart the Identity service:"
msgstr ""
#: ./doc/common/section_keystone_config_ldap.xml:88(para)
msgid "During service restart, authentication and authorization are unavailable."
msgstr ""
#: ./doc/common/section_keystone_config_ldap.xml:93(title)
msgid "Additional LDAP integration settings"
msgstr ""
#: ./doc/common/section_keystone_config_ldap.xml:94(para)
msgid "Set these options in the <filename>keystone.conf</filename> file."
msgstr ""
#: ./doc/common/section_keystone_config_ldap.xml:99(term)
msgid "Filters"
msgstr ""
#: ./doc/common/section_keystone_config_ldap.xml:101(para)
msgid "Use filters to control the scope of data presented through LDAP."
msgstr ""
#: ./doc/common/section_keystone_config_ldap.xml:110(term)
msgid "LDAP Account Status"
msgstr ""
#: ./doc/common/section_keystone_config_ldap.xml:112(para)
msgid "Mask account status values for compatibility with various directory services. Superfluous accounts are filtered with <systemitem>user_filter</systemitem>."
msgstr ""
#: ./doc/common/section_keystone_config_ldap.xml:116(para)
msgid "For example, you can mask Active Directory account status attributes in the <filename>keystone.conf</filename> file:"
msgstr ""
#: ./doc/common/app_support.xml:8(title)
msgid "Community support"
msgstr ""
#: ./doc/common/app_support.xml:9(para)
msgid "The following resources are available to help you run and use OpenStack. The OpenStack community constantly improves and adds to the main features of OpenStack, but if you have any questions, do not hesitate to ask. Use the following resources to get OpenStack support, and troubleshoot your installations."
msgstr ""
#: ./doc/common/app_support.xml:16(title)
msgid "Documentation"
msgstr ""
#: ./doc/common/app_support.xml:17(para)
msgid "For the available OpenStack documentation, see <link href=\"http://docs.openstack.org\">docs.openstack.org</link>."
msgstr ""
#: ./doc/common/app_support.xml:20(para) ./doc/common/app_support.xml:400(para) ./doc/common/ch_getstart.xml:210(para)
msgid "To provide feedback on documentation, join and use the <email>openstack-docs@lists.openstack.org</email> mailing list at <link href=\"http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-docs\">OpenStack Documentation Mailing List</link>, or <link href=\"https://bugs.launchpad.net/openstack-manuals/+filebug\">report a bug</link>."
msgstr ""
#: ./doc/common/app_support.xml:27(para)
msgid "The following books explain how to install an OpenStack cloud and its associated components:"
msgstr ""
#: ./doc/common/app_support.xml:34(citetitle)
msgid "Installation Guide for Debian 7.0"
msgstr ""
#: ./doc/common/app_support.xml:42(citetitle)
msgid "Installation Guide for openSUSE and SUSE Linux Enterprise Server"
msgstr ""
#: ./doc/common/app_support.xml:50(citetitle)
msgid "Installation Guide for Red Hat Enterprise Linux, CentOS, and Fedora"
msgstr ""
#: ./doc/common/app_support.xml:59(citetitle)
msgid "Installation Guide for Ubuntu 14.04 (LTS)"
msgstr ""
#: ./doc/common/app_support.xml:64(para)
msgid "The following books explain how to configure and run an OpenStack cloud:"
msgstr ""
#: ./doc/common/app_support.xml:70(citetitle)
msgid "Architecture Design Guide"
msgstr ""
#: ./doc/common/app_support.xml:77(citetitle)
msgid "Cloud Administrator Guide"
msgstr ""
#: ./doc/common/app_support.xml:83(citetitle)
msgid "Configuration Reference"
msgstr ""
#: ./doc/common/app_support.xml:89(citetitle)
msgid "Operations Guide"
msgstr ""
#: ./doc/common/app_support.xml:95(citetitle)
msgid "High Availability Guide"
msgstr ""
#: ./doc/common/app_support.xml:101(citetitle)
msgid "Security Guide"
msgstr ""
#: ./doc/common/app_support.xml:107(citetitle)
msgid "Virtual Machine Image Guide"
msgstr ""
#: ./doc/common/app_support.xml:111(para)
msgid "The following books explain how to use the OpenStack dashboard and command-line clients:"
msgstr ""
#: ./doc/common/app_support.xml:118(citetitle)
msgid "API Quick Start"
msgstr ""
#: ./doc/common/app_support.xml:125(citetitle)
msgid "End User Guide"
msgstr ""
#: ./doc/common/app_support.xml:132(citetitle)
msgid "Admin User Guide"
msgstr ""
#: ./doc/common/app_support.xml:139(citetitle)
msgid "Command-Line Interface Reference"
msgstr ""
#: ./doc/common/app_support.xml:143(para)
msgid "The following documentation provides reference and guidance information for the OpenStack APIs:"
msgstr ""
#: ./doc/common/app_support.xml:149(link)
msgid "OpenStack API Complete Reference (HTML)"
msgstr ""
#: ./doc/common/app_support.xml:155(link)
msgid "API Complete Reference (PDF)"
msgstr ""
#: ./doc/common/app_support.xml:160(citetitle)
msgid "OpenStack Block Storage Service API v2 Reference"
msgstr ""
#: ./doc/common/app_support.xml:167(citetitle)
msgid "OpenStack Compute API v2 and Extensions Reference"
msgstr ""
#: ./doc/common/app_support.xml:174(citetitle)
msgid "OpenStack Identity Service API v2.0 Reference"
msgstr ""
#: ./doc/common/app_support.xml:180(citetitle)
msgid "OpenStack Image Service API v2 Reference"
msgstr ""
#: ./doc/common/app_support.xml:186(citetitle)
msgid "OpenStack Networking API v2.0 Reference"
msgstr ""
#: ./doc/common/app_support.xml:192(citetitle)
msgid "OpenStack Object Storage API v1 Reference"
msgstr ""
#: ./doc/common/app_support.xml:196(para)
msgid "The <link href=\"http://docs.openstack.org/training-guides/content/\"><citetitle>Training Guides</citetitle></link> offer software training for cloud administration and management."
msgstr ""
#: ./doc/common/app_support.xml:203(title)
msgid "ask.openstack.org"
msgstr ""
#: ./doc/common/app_support.xml:204(para)
msgid "During the set up or testing of OpenStack, you might have questions about how a specific task is completed or be in a situation where a feature does not work correctly. Use the <link href=\"http://ask.openstack.org\">ask.openstack.org</link> site to ask questions and get answers. When you visit the <link href=\"http://ask.openstack.org\">http://ask.openstack.org</link> site, scan the recently asked questions to see whether your question has already been answered. If not, ask a new question. Be sure to give a clear, concise summary in the title and provide as much detail as possible in the description. Paste in your command output or stack traces, links to screen shots, and any other information which might be useful."
msgstr ""
#: ./doc/common/app_support.xml:221(title)
msgid "OpenStack mailing lists"
msgstr ""
#: ./doc/common/app_support.xml:222(para)
msgid "A great way to get answers and insights is to post your question or problematic scenario to the OpenStack mailing list. You can learn from and help others who might have similar issues. To subscribe or view the archives, go to <link href=\"http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack\">http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack</link>. You might be interested in the other mailing lists for specific projects or development, which you can find <link href=\"http://wiki.openstack.org/MailingLists\">on the wiki</link>. A description of all mailing lists is available at <link href=\"http://wiki.openstack.org/MailingLists\">http://wiki.openstack.org/MailingLists</link>."
msgstr ""
#: ./doc/common/app_support.xml:238(title)
msgid "The OpenStack wiki"
msgstr ""
#: ./doc/common/app_support.xml:239(para)
msgid "The <link href=\"http://wiki.openstack.org/\">OpenStack wiki</link> contains a broad range of topics but some of the information can be difficult to find or is a few pages deep. Fortunately, the wiki search feature enables you to search by title or content. If you search for specific information, such as about networking or nova, you can find a large amount of relevant material. More is being added all the time, so be sure to check back often. You can find the search box in the upper-right corner of any OpenStack wiki page."
msgstr ""
#: ./doc/common/app_support.xml:250(title)
msgid "The Launchpad Bugs area"
msgstr ""
#: ./doc/common/app_support.xml:251(para)
msgid "The OpenStack community values your set up and testing efforts and wants your feedback. To log a bug, you must sign up for a Launchpad account at <link href=\"https://launchpad.net/+login\">https://launchpad.net/+login</link>. You can view existing bugs and report bugs in the Launchpad Bugs area. Use the search feature to determine whether the bug has already been reported or already been fixed. If it still seems like your bug is unreported, fill out a bug report."
msgstr ""
#: ./doc/common/app_support.xml:259(para)
msgid "Some tips:"
msgstr ""
#: ./doc/common/app_support.xml:262(para)
msgid "Give a clear, concise summary."
msgstr ""
#: ./doc/common/app_support.xml:265(para)
msgid "Provide as much detail as possible in the description. Paste in your command output or stack traces, links to screen shots, and any other information which might be useful."
msgstr ""
#: ./doc/common/app_support.xml:271(para)
msgid "Be sure to include the software and package versions that you are using, especially if you are using a development branch, such as, <literal>\"Juno release\" vs git commit bc79c3ecc55929bac585d04a03475b72e06a3208</literal>."
msgstr ""
#: ./doc/common/app_support.xml:278(para)
msgid "Any deployment-specific information is helpful, such as whether you are using Ubuntu 14.04 or are performing a multi-node installation."
msgstr ""
#: ./doc/common/app_support.xml:283(para)
msgid "The following Launchpad Bugs areas are available:"
msgstr ""
#: ./doc/common/app_support.xml:289(link)
msgid "Bugs: OpenStack Block Storage (cinder)"
msgstr ""
#: ./doc/common/app_support.xml:295(link)
msgid "Bugs: OpenStack Compute (nova)"
msgstr ""
#: ./doc/common/app_support.xml:300(link)
msgid "Bugs: OpenStack Dashboard (horizon)"
msgstr ""
#: ./doc/common/app_support.xml:306(link)
msgid "Bugs: OpenStack Identity (keystone)"
msgstr ""
#: ./doc/common/app_support.xml:312(link)
msgid "Bugs: OpenStack Image Service (glance)"
msgstr ""
#: ./doc/common/app_support.xml:318(link)
msgid "Bugs: OpenStack Networking (neutron)"
msgstr ""
#: ./doc/common/app_support.xml:324(link)
msgid "Bugs: OpenStack Object Storage (swift)"
msgstr ""
#: ./doc/common/app_support.xml:331(link)
msgid "Bugs: Bare Metal (ironic)"
msgstr ""
#: ./doc/common/app_support.xml:336(link)
msgid "Bugs: Data Processing Service (sahara)"
msgstr ""
#: ./doc/common/app_support.xml:342(link)
msgid "Bugs: Database Service (trove)"
msgstr ""
#: ./doc/common/app_support.xml:347(link)
msgid "Bugs: Orchestration (heat)"
msgstr ""
#: ./doc/common/app_support.xml:352(link)
msgid "Bugs: Telemetry (ceilometer)"
msgstr ""
#: ./doc/common/app_support.xml:357(link)
msgid "Bugs: Queue Service (marconi)"
msgstr ""
#: ./doc/common/app_support.xml:363(link)
msgid "Bugs: OpenStack API Documentation (developer.openstack.org)"
msgstr ""
#: ./doc/common/app_support.xml:369(link)
msgid "Bugs: OpenStack Documentation (docs.openstack.org)"
msgstr ""
#: ./doc/common/app_support.xml:375(title)
msgid "The OpenStack IRC channel"
msgstr ""
#: ./doc/common/app_support.xml:376(para)
msgid "The OpenStack community lives in the #openstack IRC channel on the Freenode network. You can hang out, ask questions, or get immediate feedback for urgent and pressing issues. To install an IRC client or use a browser-based client, go to <link href=\"http://webchat.freenode.net\">http://webchat.freenode.net/</link>. You can also use Colloquy (Mac OS X, <link href=\"http://colloquy.info/\">http://colloquy.info/</link>), mIRC (Windows, <link href=\"http://www.mirc.com/\">http://www.mirc.com/</link>), or XChat (Linux). When you are in the IRC channel and want to share code or command output, the generally accepted method is to use a Paste Bin. The OpenStack project has one at <link href=\"http://paste.openstack.org\">http://paste.openstack.org</link>. Just paste your longer amounts of text or logs in the web form and you get a URL that you can paste into the channel. The OpenStack IRC channel is <literal>#openstack</literal> on <literal>irc.freenode.net</literal>. You can find a list of all OpenStack IRC channels at <link href=\"https://wiki.openstack.org/wiki/IRC\">https://wiki.openstack.org/wiki/IRC</link>."
msgstr ""
#: ./doc/common/app_support.xml:399(title)
msgid "Documentation feedback"
msgstr ""
#: ./doc/common/app_support.xml:406(title)
msgid "OpenStack distribution packages"
msgstr ""
#: ./doc/common/app_support.xml:407(para)
msgid "The following Linux distributions provide community-supported packages for OpenStack:"
msgstr ""
#: ./doc/common/app_support.xml:411(emphasis)
msgid "Debian:"
msgstr ""
#: ./doc/common/app_support.xml:414(link)
msgid "http://wiki.debian.org/OpenStack"
msgstr ""
#: ./doc/common/app_support.xml:417(emphasis)
msgid "CentOS, Fedora, and Red Hat Enterprise Linux:"
msgstr ""
#: ./doc/common/app_support.xml:420(link)
msgid "http://openstack.redhat.com/"
msgstr ""
#: ./doc/common/app_support.xml:423(emphasis)
msgid "openSUSE and SUSE Linux Enterprise Server:"
msgstr ""
#: ./doc/common/app_support.xml:427(link)
msgid "http://en.opensuse.org/Portal:OpenStack"
msgstr ""
#: ./doc/common/app_support.xml:430(emphasis)
msgid "Ubuntu:"
msgstr ""
#: ./doc/common/app_support.xml:433(link)
msgid "https://wiki.ubuntu.com/ServerTeam/CloudArchive"
msgstr ""
#: ./doc/common/section_objectstorage-troubleshoot.xml:7(title)
msgid "Troubleshoot Object Storage"
msgstr ""
#: ./doc/common/section_objectstorage-troubleshoot.xml:8(para)
msgid "For Object Storage, everything is logged in <filename>/var/log/syslog</filename> (or messages on some distros). Several settings enable further customization of logging, such as <literal>log_name</literal>, <literal>log_facility</literal>, and <literal>log_level</literal>, within the object server configuration files."
msgstr ""
#: ./doc/common/section_objectstorage-troubleshoot.xml:12(title)
msgid "Drive failure"
msgstr ""
#: ./doc/common/section_objectstorage-troubleshoot.xml:13(para)
msgid "In the event that a drive has failed, the first step is to make sure the drive is unmounted. This will make it easier for Object Storage to work around the failure until it has been resolved. If the drive is going to be replaced immediately, then it is just best to replace the drive, format it, remount it, and let replication fill it up."
msgstr ""
#: ./doc/common/section_objectstorage-troubleshoot.xml:17(para)
msgid "If the drive cant be replaced immediately, then it is best to leave it unmounted, and remove the drive from the ring. This will allow all the replicas that were on that drive to be replicated elsewhere until the drive is replaced. Once the drive is replaced, it can be re-added to the ring."
msgstr ""
#: ./doc/common/section_objectstorage-troubleshoot.xml:21(para)
msgid "You can look at error messages in <filename>/var/log/kern.log</filename> for hints of drive failure."
msgstr ""
#: ./doc/common/section_objectstorage-troubleshoot.xml:24(title)
msgid "Server failure"
msgstr ""
#: ./doc/common/section_objectstorage-troubleshoot.xml:25(para)
msgid "If a server is having hardware issues, it is a good idea to make sure the Object Storage services are not running. This will allow Object Storage to work around the failure while you troubleshoot."
msgstr ""
#: ./doc/common/section_objectstorage-troubleshoot.xml:28(para)
msgid "If the server just needs a reboot, or a small amount of work that should only last a couple of hours, then it is probably best to let Object Storage work around the failure and get the machine fixed and back online. When the machine comes back online, replication will make sure that anything that is missing during the downtime will get updated."
msgstr ""
#: ./doc/common/section_objectstorage-troubleshoot.xml:33(para)
msgid "If the server has more serious issues, then it is probably best to remove all of the servers devices from the ring. Once the server has been repaired and is back online, the servers devices can be added back into the ring. It is important that the devices are reformatted before putting them back into the ring as it is likely to be responsible for a different set of partitions than before."
msgstr ""
#: ./doc/common/section_objectstorage-troubleshoot.xml:41(title)
msgid "Detect failed drives"
msgstr ""
#: ./doc/common/section_objectstorage-troubleshoot.xml:42(para)
msgid "It has been our experience that when a drive is about to fail, error messages will spew into /var/log/kern.log. There is a script called swift-drive-audit that can be run via cron to watch for bad drives. If errors are detected, it will unmount the bad drive, so that Object Storage can work around it. The script takes a configuration file with the following settings:"
msgstr ""
#: ./doc/common/section_objectstorage-troubleshoot.xml:48(para)
msgid "This script has only been tested on Ubuntu 10.04, so if you are using a different distro or OS, some care should be taken before using in production."
msgstr ""
#: ./doc/common/section_objectstorage-troubleshoot.xml:53(title)
msgid "Emergency recovery of ring builder files"
msgstr ""
#: ./doc/common/section_objectstorage-troubleshoot.xml:54(para)
msgid "You should always keep a backup of swift ring builder files. However, if an emergency occurs, this procedure may assist in returning your cluster to an operational state."
msgstr ""
#: ./doc/common/section_objectstorage-troubleshoot.xml:57(para)
msgid "Using existing swift tools, there is no way to recover a builder file from a <filename>ring.gz</filename> file. However, if you have a knowledge of Python, it is possible to construct a builder file that is pretty close to the one you have lost. The following is what you will need to do."
msgstr ""
#: ./doc/common/section_objectstorage-troubleshoot.xml:62(para)
msgid "This procedure is a last-resort for emergency circumstances. It requires knowledge of the swift python code and may not succeed."
msgstr ""
#: ./doc/common/section_objectstorage-troubleshoot.xml:65(para)
msgid "First, load the ring and a new ringbuilder object in a Python REPL:"
msgstr ""
#: ./doc/common/section_objectstorage-troubleshoot.xml:68(para)
msgid "Now, start copying the data we have in the ring into the builder."
msgstr ""
#: ./doc/common/section_objectstorage-troubleshoot.xml:85(para)
msgid "This is the extent of the recoverable fields. For <literal>min_part_hours</literal> you'll either have to remember what the value you used was, or just make up a new one."
msgstr ""
#: ./doc/common/section_objectstorage-troubleshoot.xml:90(para)
msgid "Try some validation: if this doesn't raise an exception, you may feel some hope. Not too much, though."
msgstr ""
#: ./doc/common/section_objectstorage-troubleshoot.xml:93(para)
msgid "Save the builder."
msgstr ""
#: ./doc/common/section_objectstorage-troubleshoot.xml:97(para)
msgid "You should now have a file called 'account.builder' in the current working directory. Next, run <literal>swift-ring-builder account.builder write_ring</literal> and compare the new account.ring.gz to the account.ring.gz that you started from. They probably won't be byte-for-byte identical, but if you load them up in a REPL and their <literal>_replica2part2dev_id</literal> and <literal>devs</literal> attributes are the same (or nearly so), then you're in good shape."
msgstr ""
#: ./doc/common/section_objectstorage-troubleshoot.xml:104(para)
msgid "Next, repeat the procedure for <filename>container.ring.gz</filename> and <filename>object.ring.gz</filename>, and you might get usable builder files."
msgstr ""
#: ./doc/common/section_objectstorage-account-reaper.xml:7(title)
msgid "Account reaper"
msgstr ""
#: ./doc/common/section_objectstorage-account-reaper.xml:8(para)
msgid "In the background, the account reaper removes data from the deleted accounts."
msgstr ""
#: ./doc/common/section_objectstorage-account-reaper.xml:9(para)
msgid "A reseller marks an account for deletion by issuing a <code>DELETE</code> request on the accounts storage URL. This action sets the <code>status</code> column of the account_stat table in the account database and replicas to <code>DELETED</code>, marking the account's data for deletion."
msgstr ""
#: ./doc/common/section_objectstorage-account-reaper.xml:17(para)
msgid "It's on the developers' to-do list to write a utility that performs this task, preferably through a REST call."
msgstr ""
#: ./doc/common/section_objectstorage-account-reaper.xml:12(para)
msgid "Typically, a specific retention time or undelete are not provided. However, you can set a <code>delay_reaping</code> value in the <code>[account-reaper]</code> section of the account-server.conf to delay the actual deletion of data. At this time, to undelete you have to update the account database replicas directly, setting the status column to an empty string and updating the put_timestamp to be greater than the delete_timestamp. <placeholder-1/>"
msgstr ""
#: ./doc/common/section_objectstorage-account-reaper.xml:20(para)
msgid "The account reaper runs on each account server and scans the server occasionally for account databases marked for deletion. It only fires up on the accounts for which the server is the primary node, so that multiple account servers arent trying to do it simultaneously. Using multiple servers to delete one account might improve the deletion speed but requires coordination to avoid duplication. Speed really is not a big concern with data deletion, and large accounts arent deleted often."
msgstr ""
#: ./doc/common/section_objectstorage-account-reaper.xml:26(para)
msgid "Deleting an account is simple. For each account container, all objects are deleted and then the container is deleted. Deletion requests that fail will not stop the overall process but will cause the overall process to fail eventually (for example, if an object delete times out, you will not be able to delete the container or the account). The account reaper keeps trying to delete an account until it is empty, at which point the database reclaim process within the db_replicator will remove the database files."
msgstr ""
#: ./doc/common/section_objectstorage-account-reaper.xml:32(para)
msgid "A persistent error state may prevent the deletion of an object or container. If this happens, you will see a message such as <code>“Account &lt;name&gt; has not been reaped since &lt;date&gt;”</code> in the log. You can control when this is logged with the <code>reap_warn_after</code> value in the <code>[account-reaper]</code> section of the account-server.conf file. The default value is 30 days."
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:11(title) ./doc/common/section_dashboard_access.xml:304(guilabel)
msgid "Flavors"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:12(para)
msgid "Admin users can use the <placeholder-1/> commands to customize and manage flavors. To see the available flavor-related commands, run:"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:28(para)
msgid "Configuration rights can be delegated to additional users by redefining the access controls for <option>compute_extension:flavormanage</option> in <filename>/etc/nova/policy.json</filename> on the <systemitem class=\"server\">nova-api</systemitem> server."
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:37(para)
msgid "To modify an existing flavor in the dashboard, you must delete the flavor and create a modified one with the same name."
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:43(para)
msgid "Flavors define these elements:"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:45(caption)
msgid "Identity Service configuration file sections"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:51(td)
msgid "Element"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:57(literal)
msgid "Name"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:59(replaceable)
msgid "XX"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:59(replaceable)
msgid "SIZE_NAME"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:58(td)
msgid "A descriptive name. <placeholder-1/>.<placeholder-2/> is typically not required, though some third party tools may rely on it."
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:64(literal)
msgid "Memory_MB"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:65(td)
msgid "Virtual machine memory in megabytes."
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:68(literal)
msgid "Disk"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:69(td)
msgid "Virtual root disk size in gigabytes. This is an ephemeral disk that the base image is copied into. When booting from a persistent volume it is not used. The \"0\" size is a special case which uses the native base image size as the size of the ephemeral root volume."
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:77(literal)
msgid "Ephemeral"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:78(td)
msgid "Specifies the size of a secondary ephemeral data disk. This is an empty, unformatted disk and exists only for the life of the instance."
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:83(literal)
msgid "Swap"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:84(td)
msgid "Optional swap space allocation for the instance."
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:88(literal)
msgid "VCPUs"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:89(td)
msgid "Number of virtual CPUs presented to the instance."
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:93(literal)
msgid "RXTX_Factor"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:94(td)
msgid "Optional property allows created servers to have a different bandwidth cap than that defined in the network they are attached to. This factor is multiplied by the rxtx_base property of the network. Default value is 1.0. That is, the same as attached network. This parameter is only available for Xen or NSX based systems."
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:101(literal)
msgid "Is_Public"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:102(td)
msgid "Boolean value, whether flavor is available to all users or private to the tenant it was created in. Defaults to True."
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:107(literal)
msgid "extra_specs"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:108(para)
msgid "Key and value pairs that define on which compute nodes a flavor can run. These pairs must match corresponding pairs on the compute nodes. Use to implement special resources, such as flavors that run on only compute nodes with GPU hardware."
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:117(para)
msgid "Flavor customization can be limited by the hypervisor in use. For example the <systemitem>libvirt</systemitem> driver enables quotas on CPUs available to a VM, disk tuning, bandwidth I/O, watchdog behavior, random number generator device control, and instance VIF traffic control."
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:124(term)
msgid "CPU limits"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:126(para)
msgid "You can configure the CPU limits with control parameters with the <placeholder-1/> client. For example, to configure the I/O limit, use:"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:132(para)
msgid "Use these optional parameters to control weight shares, enforcement intervals for runtime quotas, and a quota for maximum allowed bandwidth:"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:137(para)
msgid "<parameter>cpu_shares</parameter>. Specifies the proportional weighted share for the domain. If this element is omitted, the service defaults to the OS provided defaults. There is no unit for the value; it is a relative measure based on the setting of other VMs. For example, a VM configured with value 2048 gets twice as much CPU time as a VM configured with value 1024."
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:148(para)
msgid "<parameter>cpu_period</parameter>. Specifies the enforcement interval (unit: microseconds) for QEMU and LXC hypervisors. Within a period, each VCPU of the domain is not allowed to consume more than the quota worth of runtime. The value should be in range <literal>[1000, 1000000]</literal>. A period with value 0 means no value."
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:158(para)
msgid "<parameter>cpu_quota</parameter>. Specifies the maximum allowed bandwidth (unit: microseconds). A domain with a negative-value quota indicates that the domain has infinite bandwidth, which means that it is not bandwidth controlled. The value should be in range <literal>[1000, 18446744073709551]</literal> or less than 0. A quota with value 0 means no value. You can use this feature to ensure that all vCPUs run at the same speed. For example:"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:171(para)
msgid "In this example, the instance of <literal>m1.low_cpu</literal> can only consume a maximum of 50% CPU of a physical CPU computing capability."
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:181(term)
msgid "Disk tuning"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:183(para)
msgid "Using disk I/O quotas, you can set maximum disk write to 10 MB per second for a VM user. For example:"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:187(para)
msgid "The disk I/O options are:"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:190(para)
msgid "disk_read_bytes_sec"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:193(para)
msgid "disk_read_iops_sec"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:196(para)
msgid "disk_write_bytes_sec"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:199(para)
msgid "disk_write_iops_sec"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:202(para)
msgid "disk_total_bytes_sec"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:205(para)
msgid "disk_total_iops_sec"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:208(para)
msgid "The vif I/O options are:"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:211(para)
msgid "vif_inbound_ average"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:214(para)
msgid "vif_inbound_burst"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:217(para)
msgid "vif_inbound_peak"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:220(para)
msgid "vif_outbound_ average"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:223(para)
msgid "vif_outbound_burst"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:226(para)
msgid "vif_outbound_peak"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:232(term)
msgid "Bandwidth I/O"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:234(para)
msgid "Incoming and outgoing traffic can be shaped independently. The bandwidth element can have at most, one inbound and at most, one outbound child element. If you leave any of these child elements out, no quality of service (QoS) is applied on that traffic direction. So, if you want to shape only the network's incoming traffic, use inbound only (and vice versa). Each element has one mandatory attribute average, which specifies the average bit rate on the interface being shaped."
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:245(para)
msgid "There are also two optional attributes (integer): <option>peak</option>, which specifies the maximum rate at which a bridge can send data (kilobytes/second), and <option>burst</option>, the amount of bytes that can be burst at peak speed (kilobytes). The rate is shared equally within domains connected to the network."
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:252(para)
msgid "The following example configures a bandwidth limit for instance network traffic:"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:259(term)
msgid "Watchdog behavior"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:261(para)
msgid "For the <systemitem>libvirt</systemitem> driver, you can enable and set the behavior of a virtual hardware watchdog device for each flavor. Watchdog devices keep an eye on the guest server, and carry out the configured action, if the server hangs. The watchdog uses the i6300esb device (emulating a PCI Intel 6300ESB). If <literal>hw_watchdog_action</literal> is not specified, the watchdog is disabled."
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:270(para)
msgid "To set the behavior, use:"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:271(replaceable) ./doc/common/section_cli_nova_customize_flavors.xml:311(replaceable) ./doc/common/section_cli_nova_customize_flavors.xml:312(replaceable) ./doc/common/section_cli_nova_customize_flavors.xml:313(replaceable)
msgid "FLAVOR-NAME"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:271(replaceable)
msgid "ACTION"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:272(para)
msgid "Valid <replaceable>ACTION</replaceable> values are:"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:276(para)
msgid "<literal>disabled</literal>(default) The device is not attached."
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:280(para)
msgid "<literal>reset</literal>Forcefully reset the guest."
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:284(para)
msgid "<literal>poweroff</literal>Forcefully power off the guest."
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:288(para)
msgid "<literal>pause</literal>Pause the guest."
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:292(para)
msgid "<literal>none</literal>Only enable the watchdog; do nothing if the server hangs."
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:298(para)
msgid "Watchdog behavior set using a specific image's properties will override behavior set using flavors."
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:305(term)
msgid "Random-number generator"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:307(para)
msgid "If a random-number generator device has been added to the instance through its image properties, the device can be enabled and configured using:"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:312(replaceable)
msgid "RATE-BYTES"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:313(replaceable)
msgid "RATE-PERIOD"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:314(para) ./doc/common/section_keystone_config_ldap-hardening.xml:84(para)
msgid "Where:"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:317(para)
msgid "<replaceable>RATE-BYTES</replaceable>(Integer) Allowed amount of bytes that the guest can read from the host's entropy per period."
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:323(para)
msgid "<replaceable>RATE-PERIOD</replaceable>(Integer) Duration of the read period in seconds."
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:331(term)
msgid "Instance VIF traffic control"
msgstr ""
#: ./doc/common/section_cli_nova_customize_flavors.xml:333(para)
msgid "Flavors can also be assigned to particular projects. By default, a flavor is public and available to all projects. Private flavors are only accessible to those on the access list and are invisible to other projects. To create and assign a private flavor to a project, run these commands:"
msgstr ""
#: ./doc/common/section_objectstorage_tenant-specific-image-storage.xml:7(title)
msgid "Configure tenant-specific image locations with Object Storage"
msgstr ""
#: ./doc/common/section_objectstorage_tenant-specific-image-storage.xml:15(para)
msgid "The tenant who owns the image"
msgstr ""
#: ./doc/common/section_objectstorage_tenant-specific-image-storage.xml:18(para)
msgid "Tenants that are defined in <option>swift_store_admin_tenants</option> and that have admin-level accounts"
msgstr ""
#: ./doc/common/section_objectstorage_tenant-specific-image-storage.xml:9(para)
msgid "For some deployers, it is not ideal to store all images in one place to enable all tenants and users to access them. You can configure the Image Service to store image data in tenant-specific image locations. Then, only the following tenants can use the Image Service to access the created image:<placeholder-1/>"
msgstr ""
#: ./doc/common/section_objectstorage_tenant-specific-image-storage.xml:24(title)
msgid "To configure tenant-specific image locations"
msgstr ""
#: ./doc/common/section_objectstorage_tenant-specific-image-storage.xml:26(para)
msgid "Configure swift as your <option>default_store</option> in the <filename>glance-api.conf</filename> file."
msgstr ""
#: ./doc/common/section_objectstorage_tenant-specific-image-storage.xml:34(para)
msgid "<option>swift_store_multi_tenant</option>. Set to <literal>True</literal> to enable tenant-specific storage locations. Default is <literal>False</literal>."
msgstr ""
#: ./doc/common/section_objectstorage_tenant-specific-image-storage.xml:40(para)
msgid "<option>swift_store_admin_tenants</option>. Specify a list of tenant IDs that can grant read and write access to all Object Storage containers that are created by the Image Service."
msgstr ""
#: ./doc/common/section_objectstorage_tenant-specific-image-storage.xml:31(para)
msgid "Set these configuration options in the <filename>glance-api.conf</filename> file: <placeholder-1/>"
msgstr ""
#: ./doc/common/section_objectstorage_tenant-specific-image-storage.xml:49(para)
msgid "With this configuration, images are stored in an Object Storage service (swift) endpoint that is pulled from the service catalog for the authenticated user."
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:7(title)
msgid "Ring-builder"
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:8(para)
msgid "Use the swift-ring-builder utility to build and manage rings. This utility assigns partitions to devices and writes an optimized Python structure to a gzipped, serialized file on disk for transmission to the servers. The server processes occasionally check the modification time of the file and reload in-memory copies of the ring structure as needed. If you use a slightly older version of the ring, one of the three replicas for a partition subset will be incorrect because of the way the ring-builder manages changes to the ring. You can work around this issue."
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:18(para)
msgid "The ring-builder also keeps its own builder file with the ring information and additional data required to build future rings. It is very important to keep multiple backup copies of these builder files. One option is to copy the builder files out to every server while copying the ring files themselves. Another is to upload the builder files into the cluster itself. If you lose the builder file, you have to create a new ring from scratch. Nearly all partitions would be assigned to different devices and, therefore, nearly all of the stored data would have to be replicated to new locations. So, recovery from a builder file loss is possible, but data would be unreachable for an extended time."
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:31(title)
msgid "Ring data structure"
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:32(para)
msgid "The ring data structure consists of three top level fields: a list of devices in the cluster, a list of lists of device ids indicating partition to device assignments, and an integer indicating the number of bits to shift an MD5 hash to calculate the partition for the hash."
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:39(title)
msgid "Partition assignment list"
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:40(para)
msgid "This is a list of <literal>array(H)</literal> of devices ids. The outermost list contains an <literal>array(H)</literal> for each replica. Each <literal>array(H)</literal> has a length equal to the partition count for the ring. Each integer in the <literal>array(H)</literal> is an index into the above list of devices. The partition list is known internally to the Ring class as <literal>_replica2part2dev_id</literal>."
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:49(para)
msgid "So, to create a list of device dictionaries assigned to a partition, the Python code would look like: <placeholder-1/>"
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:53(para)
msgid "That code is a little simplistic because it does not account for the removal of duplicate devices. If a ring has more replicas than devices, a partition will have more than one replica on a device."
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:57(para)
msgid "<literal>array(H)</literal> is used for memory conservation as there may be millions of partitions."
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:62(title)
msgid "Replica counts"
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:63(para)
msgid "To support the gradual change in replica counts, a ring can have a real number of replicas and is not restricted to an integer number of replicas."
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:66(para)
msgid "A fractional replica count is for the whole ring and not for individual partitions. It indicates the average number of replicas for each partition. For example, a replica count of 3.2 means that 20 percent of partitions have four replicas and 80 percent have three replicas."
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:71(para)
msgid "The replica count is adjustable."
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:72(para)
msgid "Example:"
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:75(para)
msgid "You must rebalance the replica ring in globally distributed clusters. Operators of these clusters generally want an equal number of replicas and regions. Therefore, when an operator adds or removes a region, the operator adds or removes a replica. Removing unneeded replicas saves on the cost of disks."
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:81(para)
msgid "You can gradually increase the replica count at a rate that does not adversely affect cluster performance."
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:91(para)
msgid "Changes take effect after the ring is rebalanced. Therefore, if you intend to change from 3 replicas to 3.01 but you accidentally type <literal>2.01</literal>, no data is lost."
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:96(replaceable)
msgid "X.builder"
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:95(para)
msgid "Additionally, <placeholder-1/> can now take a decimal argument for the number of replicas."
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:101(title)
msgid "Partition shift value"
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:102(para)
msgid "The partition shift value is known internally to the Ring class as <literal>_part_shift</literal>. This value is used to shift an MD5 hash to calculate the partition where the data for that hash should reside. Only the top four bytes of the hash is used in this process. For example, to compute the partition for the <literal>/account/container/object</literal> path, the Python code might look like the following code: <placeholder-1/>"
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:113(para)
msgid "For a ring generated with part_power P, the partition shift value is <literal>32 - P</literal>."
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:117(title)
msgid "Build the ring"
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:118(para)
msgid "The ring builder process includes these high-level steps:"
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:122(para)
msgid "The utility calculates the number of partitions to assign to each device based on the weight of the device. For example, for a partition at the power of 20, the ring has 1,048,576 partitions. One thousand devices of equal weight each want 1,048.576 partitions. The devices are sorted by the number of partitions they desire and kept in order throughout the initialization process."
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:132(para)
msgid "Each device is also assigned a random tiebreaker value that is used when two devices desire the same number of partitions. This tiebreaker is not stored on disk anywhere, and so two different rings created with the same parameters will have different partition assignments. For repeatable partition assignments, <literal>RingBuilder.rebalance()</literal> takes an optional seed value that seeds the Python pseudo-random number generator."
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:146(para)
msgid "The ring builder assigns each partition replica to the device that requires most partitions at that point while keeping it as far away as possible from other replicas. The ring builder prefers to assign a replica to a device in a region that does not already have a replica. If no such region is available, the ring builder searches for a device in a different zone, or on a different server. If it does not find one, it looks for a device with no replicas. Finally, if all options are exhausted, the ring builder assigns the replica to the device that has the fewest replicas already assigned."
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:160(para)
msgid "The ring builder assigns multiple replicas to one device only if the ring has fewer devices than it has replicas."
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:166(para)
msgid "When building a new ring from an old ring, the ring builder recalculates the desired number of partitions that each device wants."
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:175(para)
msgid "The ring builder unassigns any assigned partitions from any removed devices and adds these partitions to the gathered list."
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:181(para)
msgid "The ring builder unassigns any partition replicas that can be spread out for better durability and adds these partitions to the gathered list."
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:188(para)
msgid "The ring builder unassigns random partitions from any devices that have more partitions than they need and adds these partitions to the gathered list."
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:171(para)
msgid "The ring builder unassigns partitions and gathers these partitions for reassignment, as follows: <placeholder-1/>"
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:198(para)
msgid "The ring builder reassigns the gathered partitions to devices by using a similar method to the one described previously."
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:203(para)
msgid "When the ring builder reassigns a replica to a partition, the ring builder records the time of the reassignment. The ring builder uses this value when it gathers partitions for reassignment so that no partition is moved twice in a configurable amount of time. The RingBuilder class knows this configurable amount of time as <literal>min_part_hours</literal>. The ring builder ignores this restriction for replicas of partitions on removed devices because removal of a device happens on device failure only, and reassignment is the only choice."
msgstr ""
#: ./doc/common/section_objectstorage-ringbuilder.xml:217(para)
msgid "Theses steps do not always perfectly rebalance a ring due to the random nature of gathering partitions for reassignment. To help reach a more balanced ring, the rebalance process is repeated until near perfect (less than 1 percent off) or when the balance does not improve by at least 1 percent (indicating we probably cannot get perfect balance due to wildly imbalanced zones or too many partitions recently moved)."
msgstr ""
#: ./doc/common/section_keystone-ssl-config.xml:8(title)
msgid "Configure the Identity Service with SSL"
msgstr ""
#: ./doc/common/section_keystone-ssl-config.xml:9(para)
msgid "You can configure the Identity Service to support two-way SSL."
msgstr ""
#: ./doc/common/section_keystone-ssl-config.xml:11(para)
msgid "You must obtain the x509 certificates externally and configure them."
msgstr ""
#: ./doc/common/section_keystone-ssl-config.xml:13(para)
msgid "The Identity Service provides a set of sample certificates in the <filename class=\"directory\">examples/pki/certs</filename> and <filename class=\"directory\">examples/pki/private</filename> directories:"
msgstr ""
#: ./doc/common/section_keystone-ssl-config.xml:19(title)
msgid "Certificate types"
msgstr ""
#: ./doc/common/section_keystone-ssl-config.xml:21(term)
msgid "cacert.pem"
msgstr ""
#: ./doc/common/section_keystone-ssl-config.xml:23(para)
msgid "Certificate Authority chain to validate against."
msgstr ""
#: ./doc/common/section_keystone-ssl-config.xml:28(term)
msgid "ssl_cert.pem"
msgstr ""
#: ./doc/common/section_keystone-ssl-config.xml:30(para)
msgid "Public certificate for Identity Service server."
msgstr ""
#: ./doc/common/section_keystone-ssl-config.xml:35(term)
msgid "middleware.pem"
msgstr ""
#: ./doc/common/section_keystone-ssl-config.xml:37(para)
msgid "Public and private certificate for Identity Service middleware/client."
msgstr ""
#: ./doc/common/section_keystone-ssl-config.xml:42(term)
msgid "cakey.pem"
msgstr ""
#: ./doc/common/section_keystone-ssl-config.xml:44(para)
msgid "Private key for the CA."
msgstr ""
#: ./doc/common/section_keystone-ssl-config.xml:48(term)
msgid "ssl_key.pem"
msgstr ""
#: ./doc/common/section_keystone-ssl-config.xml:50(para)
msgid "Private key for the Identity Service server."
msgstr ""
#: ./doc/common/section_keystone-ssl-config.xml:56(para)
msgid "You can choose names for these certificates. You can also combine the public/private keys in the same file, if you wish. These certificates are provided as an example."
msgstr ""
#: ./doc/common/section_keystone-ssl-config.xml:62(title)
msgid "SSL configuration"
msgstr ""
#: ./doc/common/section_keystone-ssl-config.xml:63(para)
msgid "To enable SSL with client authentication, modify the <literal>[ssl]</literal> section in the <filename>etc/keystone.conf</filename> file. The following SSL configuration example uses the included sample certificates:"
msgstr ""
#: ./doc/common/section_keystone-ssl-config.xml:75(title)
msgid "Options"
msgstr ""
#: ./doc/common/section_keystone-ssl-config.xml:77(para)
msgid "<literal>enable</literal>. True enables SSL. Default is False."
msgstr ""
#: ./doc/common/section_keystone-ssl-config.xml:81(para)
msgid "<literal>certfile</literal>. Path to the Identity Service public certificate file."
msgstr ""
#: ./doc/common/section_keystone-ssl-config.xml:85(para)
msgid "<literal>keyfile</literal>. Path to the Identity Service private certificate file. If you include the private key in the certfile, you can omit the keyfile."
msgstr ""
#: ./doc/common/section_keystone-ssl-config.xml:91(para)
msgid "<literal>ca_certs</literal>. Path to the CA trust chain."
msgstr ""
#: ./doc/common/section_keystone-ssl-config.xml:95(para)
msgid "<literal>cert_required</literal>. Requires client certificate. Default is False."
msgstr ""
#: ./doc/common/section_cli_keystone_apiv3.xml:7(title)
msgid "Use Identity Service API v3 instead of API v2.0"
msgstr ""
#: ./doc/common/section_cli_keystone_apiv3.xml:8(para)
msgid "Use the following parameters in combination on any keystone command to specify which version of the API to use:"
msgstr ""
#: ./doc/common/section_cli_keystone_apiv3.xml:13(para)
msgid "<parameter>--os-endpoint</parameter>. The endpoint to use instead of the one in the service catalog. Defaults to <code>env[OS_SERVICE_ENDPOINT]</code>."
msgstr ""
#: ./doc/common/section_cli_keystone_apiv3.xml:17(para)
msgid "The <literal>keystone</literal> client detects the version of the API from this parameter."
msgstr ""
#: ./doc/common/section_cli_keystone_apiv3.xml:21(para)
msgid "<parameter>--os-auth_url</parameter>. The Identity Service endpoint to use for authentication. Defaults to <code>env[OS_AUTH_URL]</code>."
msgstr ""
#: ./doc/common/section_cli_keystone_apiv3.xml:27(para)
msgid "<parameter>--os-identity-api-version</parameter>. The Identity Service API version. Defaults to <code>env[OS_IDENTITY_API_VERSION]</code> or <literal>2.0</literal>."
msgstr ""
#: ./doc/common/section_cli_keystone_apiv3.xml:33(para)
msgid "For example, use the following parameters to use API v3:"
msgstr ""
#: ./doc/common/section_cli_keystone_apiv3.xml:35(parameter) ./doc/common/section_cli_keystone_apiv3.xml:37(parameter)
msgid "--os-auth_url"
msgstr ""
#: ./doc/common/section_cli_keystone_apiv3.xml:35(parameter) ./doc/common/section_cli_keystone_apiv3.xml:37(parameter)
msgid "--os-identity-api-version"
msgstr ""
#: ./doc/common/section_cli_keystone_apiv3.xml:36(para)
msgid "Use the following parameters to use API v2.0:"
msgstr ""
#: ./doc/common/section_conventions.xml:5(title)
msgid "Conventions"
msgstr ""
#: ./doc/common/section_conventions.xml:6(para)
msgid "The OpenStack documentation uses several typesetting conventions."
msgstr ""
#: ./doc/common/section_conventions.xml:8(title)
msgid "Notices"
msgstr ""
#: ./doc/common/section_conventions.xml:9(para)
msgid "Notices take these forms:"
msgstr ""
#: ./doc/common/section_conventions.xml:11(para)
msgid "A handy tip or reminder."
msgstr ""
#: ./doc/common/section_conventions.xml:14(para)
msgid "Something you must be aware of before proceeding."
msgstr ""
#: ./doc/common/section_conventions.xml:17(para)
msgid "Critical information about the risk of data loss or security issues."
msgstr ""
#: ./doc/common/section_conventions.xml:21(title)
msgid "Command prompts"
msgstr ""
#: ./doc/common/section_conventions.xml:24(emphasis) ./doc/common/section_conventions.xml:31(emphasis)
msgid "<placeholder-1/> prompt"
msgstr ""
#: ./doc/common/section_conventions.xml:26(para)
msgid "Any user, including the <literal>root</literal> user, can run commands that are prefixed with the <placeholder-1/> prompt."
msgstr ""
#: ./doc/common/section_conventions.xml:33(para)
msgid "The <literal>root</literal> user must run commands that are prefixed with the <placeholder-1/> prompt. You can also prefix these commands with the <placeholder-2/> command, if available, to run them."
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:8(title)
msgid "Manage images"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:9(para)
msgid "The cloud operator assigns roles to users. Roles determine who can upload and manage images. The operator might restrict image upload and management to only cloud administrators or operators."
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:13(para)
msgid "You can upload images through the <placeholder-1/> client or the Image Service API. You can also use the <placeholder-2/> client to list images, set and delete image metadata, delete images, and take a snapshot of a running instance to create an image. After you upload an image, you cannot change it."
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:17(para)
msgid "For details about image creation, see the <link href=\"http://docs.openstack.org/image-guide/content/\"><citetitle>Virtual Machine Image Guide</citetitle></link>."
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:22(title)
msgid "List or get details for images (glance)"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:23(para)
msgid "To get a list of images and to then get further details about a single image, use <placeholder-1/> and <placeholder-2/>."
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:75(para)
msgid "When viewing a list of images, you can also use <placeholder-1/> to filter the list, as follows:"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:81(para)
msgid "To store location metadata for images, which enables direct file access for a client, update the <filename>/etc/glance/glance.conf</filename> file with the following statements:"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:88(code)
msgid "show_multiple_locations = True"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:91(para)
msgid "<code>filesystem_store_metadata_file = <replaceable>filePath</replaceable></code>, where <replaceable>filePath</replaceable> points to a JSON file that defines the mount point for OpenStack images on your system and a unique ID. For example: <placeholder-1/>"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:103(para)
msgid "After you restart the Image Service, you can use the following syntax to view the image's location information:"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:104(replaceable)
msgid "imageID"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:105(para)
msgid "For example, using the image ID shown above, you would issue the command as follows:"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:110(title)
msgid "Create or update an image (glance)"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:111(para)
msgid "To create an image, use <placeholder-1/>:"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:112(replaceable) ./doc/common/section_cli_glance_manage_images.xml:115(replaceable)
msgid "imageName"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:113(para)
msgid "To update an image by name or ID, use <placeholder-1/>:"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:117(para)
msgid "The following table lists the optional arguments that you can use with the <placeholder-1/> and <placeholder-2/> commands to modify image properties. For more information, refer to Image Service chapter in the <link href=\"http://docs.openstack.org/cli-reference/content/index.html\">OpenStack Command-Line Interface Reference</link>."
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:127(parameter)
msgid "--name NAME"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:130(para)
msgid "The name of the image."
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:135(parameter)
msgid "--disk-format DISK_FORMAT"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:138(para)
msgid "The disk format of the image. Acceptable formats are ami, ari, aki, vhd, vmdk, raw, qcow2, vdi, and iso."
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:144(parameter)
msgid "--container-format CONTAINER_FORMAT"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:147(para)
msgid "The container format of the image. Acceptable formats are ami, ari, aki, bare, and ovf."
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:153(parameter)
msgid "--owner TENANT_ID"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:156(para)
msgid "The tenant who should own the image."
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:161(parameter)
msgid "--size SIZE"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:164(para)
msgid "The size of image data, in bytes."
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:169(parameter)
msgid "--min-disk DISK_GB"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:172(para)
msgid "The minimum size of the disk needed to boot the image, in gigabytes."
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:178(parameter)
msgid "--min-ram DISK_RAM"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:181(para)
msgid "The minimum amount of RAM needed to boot the image, in megabytes."
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:186(parameter)
msgid "--location IMAGE_URL"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:189(para)
msgid "The URL where the data for this image resides. For example, if the image data is stored in swift, you could specify <literal>swift://account:key@example.com/container/obj</literal>."
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:196(parameter)
msgid "--file FILE"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:199(para)
msgid "Local file that contains the disk image to be uploaded during the update. Alternatively, you can pass images to the client through stdin."
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:205(parameter)
msgid "--checksum CHECKSUM"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:208(para)
msgid "Hash of image data to use for verification."
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:213(parameter)
msgid "--copy-from IMAGE_URL"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:216(para)
msgid "Similar to <parameter>--location</parameter> in usage, but indicates that the image server should immediately copy the data and store it in its configured image store."
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:223(parameter)
msgid "--is-public [True|False]"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:226(para)
msgid "Makes an image accessible for all the tenants (admin-only by default)."
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:232(parameter)
msgid "--is-protected [True|False]"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:235(para)
msgid "Prevents an image from being deleted."
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:240(parameter)
msgid "--property KEY=VALUE"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:243(para)
msgid "Arbitrary property to associate with image. This option can be used multiple times."
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:249(parameter)
msgid "--purge-props"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:252(para)
msgid "Deletes all image properties that are not explicitly set in the update request. Otherwise, those properties not referenced are preserved."
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:258(parameter)
msgid "--human-readable"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:261(para)
msgid "Prints the image size in a human-friendly format."
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:265(para)
msgid "The following example shows the command that you would use to upload a CentOS 6.3 image in qcow2 format and configure it for public access:"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:269(para)
msgid "The following example shows how to update an existing image with a properties that describe the disk bus, the CD-ROM bus, and the VIF model:"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:276(para)
msgid "Currently the libvirt virtualization tool determines the disk, CD-ROM, and VIF device models based on the configured hypervisor type (<literal>libvirt_type</literal> in <filename>/etc/nova/nova.conf</filename>). For the sake of optimal performance, libvirt defaults to using virtio for both disk and VIF (NIC) models. The disadvantage of this approach is that it is not possible to run operating systems that lack virtio drivers, for example, BSD, Solaris, and older versions of Linux and Windows."
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:282(para)
msgid "If you specify a disk or CD-ROM bus model that is not supported, see <xref linkend=\"bus_models\"/>. If you specify a VIF model that is not supported, the instance fails to launch. See <xref linkend=\"vif_models\"/>."
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:286(para)
msgid "The valid model values depend on the <literal>libvirt_type</literal> setting, as shown in the following tables."
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:289(caption)
msgid "Disk and CD-ROM bus model values"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:294(th) ./doc/common/section_cli_glance_manage_images.xml:338(th)
msgid "libvirt_type setting"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:295(th) ./doc/common/section_cli_glance_manage_images.xml:339(th)
msgid "Supported model values"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:300(td) ./doc/common/section_cli_glance_manage_images.xml:344(td)
msgid "qemu or kvm"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:305(para) ./doc/common/section_cli_glance_manage_images.xml:322(para)
msgid "ide"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:308(para)
msgid "scsi"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:311(para) ./doc/common/section_cli_glance_manage_images.xml:361(para)
msgid "virtio"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:318(td) ./doc/common/section_cli_glance_manage_images.xml:325(para) ./doc/common/section_cli_glance_manage_images.xml:368(td)
msgid "xen"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:333(caption)
msgid "VIF model values"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:349(para) ./doc/common/section_cli_glance_manage_images.xml:372(para)
msgid "e1000"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:352(para) ./doc/common/section_cli_glance_manage_images.xml:378(para)
msgid "ne2k_pci"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:355(para) ./doc/common/section_cli_glance_manage_images.xml:381(para)
msgid "pcnet"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:358(para) ./doc/common/section_cli_glance_manage_images.xml:384(para)
msgid "rtl8139"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:375(para)
msgid "netfront"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:390(td)
msgid "vmware"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:395(para)
msgid "VirtualE1000"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:398(para)
msgid "VirtualPCNet32"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:401(para)
msgid "VirtualVmxnet"
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:413(para)
msgid "If you encounter problems in creating an image in Image Service or Compute, the following information may help you troubleshoot the creation process."
msgstr ""
#: ./doc/common/section_cli_glance_manage_images.xml:417(para)
msgid "Ensure that the version of qemu you are using is version 0.14 or later. Earlier versions of qemu result in an <literal>unknown option -s</literal> error message in the <filename>nova-compute.log</filename> file."
msgstr ""
#: ./doc/common/section_keystone-external-auth.xml:8(title)
msgid "External authentication with Identity"
msgstr ""
#: ./doc/common/section_keystone-external-auth.xml:9(para)
msgid "When Identity runs in <literal>apache-httpd</literal>, you can use external authentication methods that differ from the authentication provided by the identity store back end. For example, you can use an SQL identity back end together with X.509 authentication, Kerberos, and so on instead of using the user name and password combination."
msgstr ""
#: ./doc/common/section_keystone-external-auth.xml:16(title)
msgid "Use HTTPD authentication"
msgstr ""
#: ./doc/common/section_keystone-external-auth.xml:17(para)
msgid "Web servers, like Apache HTTP, support many methods of authentication. Identity can allow the web server to perform the authentication. The web server then passes the authenticated user to Identity by using the <literal>REMOTE_USER</literal> environment variable. This user must already exist in the Identity back end to get a token from the controller. To use this method, Identity should run on <literal>apache-httpd</literal>."
msgstr ""
#: ./doc/common/section_keystone-external-auth.xml:28(title)
msgid "Use X.509"
msgstr ""
#: ./doc/common/section_keystone-external-auth.xml:29(para)
msgid "The following Apache configuration snippet authenticates the user based on a valid X.509 certificate from a known CA:"
msgstr ""
#: ./doc/common/section_getstart_object-storage.xml:7(title)
msgid "OpenStack Object Storage"
msgstr ""
#: ./doc/common/section_getstart_object-storage.xml:8(para)
msgid "The OpenStack Object Storage is a multi-tenant object storage system. It is highly scalable and can manage large amounts of unstructured data at low cost through a RESTful HTTP API."
msgstr ""
#: ./doc/common/section_getstart_object-storage.xml:11(para) ./doc/common/section_getstart_networking.xml:13(para)
msgid "It includes the following components:"
msgstr ""
#: ./doc/common/section_getstart_object-storage.xml:13(term)
msgid "Proxy servers (<systemitem class=\"service\">swift-proxy-server</systemitem>)"
msgstr ""
#: ./doc/common/section_getstart_object-storage.xml:15(para)
msgid "Accepts OpenStack Object Storage API and raw HTTP requests to upload files, modify metadata, and create containers. It also serves file or container listings to web browsers. To improve performance, the proxy server can use an optional cache that is usually deployed with memcache."
msgstr ""
#: ./doc/common/section_getstart_object-storage.xml:22(term)
msgid "Account servers (<systemitem class=\"service\">swift-account-server</systemitem>)"
msgstr ""
#: ./doc/common/section_getstart_object-storage.xml:24(para)
msgid "Manages accounts defined with Object Storage."
msgstr ""
#: ./doc/common/section_getstart_object-storage.xml:28(term)
msgid "Container servers (<systemitem class=\"service\">swift-container-server</systemitem>)"
msgstr ""
#: ./doc/common/section_getstart_object-storage.xml:30(para)
msgid "Manages the mapping of containers or folders, within Object Storage."
msgstr ""
#: ./doc/common/section_getstart_object-storage.xml:34(term)
msgid "Object servers (<systemitem class=\"service\">swift-object-server</systemitem>)"
msgstr ""
#: ./doc/common/section_getstart_object-storage.xml:36(para)
msgid "Manages actual objects,such as files, on the storage nodes."
msgstr ""
#: ./doc/common/section_getstart_object-storage.xml:40(term)
msgid "Various periodic processes"
msgstr ""
#: ./doc/common/section_getstart_object-storage.xml:41(para)
msgid "Performs housekeeping tasks on the large data store. The replication services ensure consistency and availability through the cluster. Other periodic processes include auditors, updaters, and reapers."
msgstr ""
#: ./doc/common/section_getstart_object-storage.xml:47(term)
msgid "WSGI middleware"
msgstr ""
#: ./doc/common/section_getstart_object-storage.xml:48(para)
msgid "Handles authentication and is usually OpenStack Identity."
msgstr ""
#: ./doc/common/section_dashboard-configure-https.xml:7(title)
msgid "Configure the dashboard for HTTPS"
msgstr ""
#: ./doc/common/section_dashboard-configure-https.xml:8(para) ./doc/common/section_dashboard-configure.xml:11(para)
msgid "You can configure the dashboard for a secured HTTPS deployment. While the standard installation uses a non-encrypted HTTP channel, you can enable SSL support for the dashboard."
msgstr ""
#: ./doc/common/section_dashboard-configure-https.xml:13(para)
msgid "This example uses the <literal>http://openstack.example.com</literal> domain. Use a domain that fits your current setup."
msgstr ""
#: ./doc/common/section_dashboard-configure-https.xml:17(para)
msgid "In the <filename>/etc/openstack-dashboard/local_settings.py</filename> file, update the following options:"
msgstr ""
#: ./doc/common/section_dashboard-configure-https.xml:24(para)
msgid "To enable HTTPS, the <code>USE_SSL = True</code> option is required."
msgstr ""
#: ./doc/common/section_dashboard-configure-https.xml:26(para)
msgid "The other options require that HTTPS is enabled; these options defend against cross-site scripting."
msgstr ""
#: ./doc/common/section_dashboard-configure-https.xml:31(para)
msgid "Edit the <filename>/etc/apache2/ports.conf</filename> file and add the following line:"
msgstr ""
#: ./doc/common/section_dashboard-configure-https.xml:37(para)
msgid "Edit the <filename>/etc/apache2/conf.d/openstack-dashboard.conf</filename> file as shown in <xref linkend=\"after-example\"/>:"
msgstr ""
#: ./doc/common/section_dashboard-configure-https.xml:42(title)
msgid "Before"
msgstr ""
#: ./doc/common/section_dashboard-configure-https.xml:56(title)
msgid "After"
msgstr ""
#: ./doc/common/section_dashboard-configure-https.xml:98(para)
msgid "In this configuration, the Apache HTTP server listens on port 443 and redirects all non-secure requests to the HTTPS protocol. The secured section defines the private key, public key, and certificate to use."
msgstr ""
#: ./doc/common/section_dashboard-configure-https.xml:105(para)
msgid "Restart the Apache HTTP server."
msgstr ""
#: ./doc/common/section_dashboard-configure-https.xml:106(para)
msgid "For Debian, Ubuntu, or SUSE distributions:"
msgstr ""
#: ./doc/common/section_dashboard-configure-https.xml:108(para)
msgid "For Fedora, RHEL, or CentOS distributions:"
msgstr ""
#: ./doc/common/section_dashboard-configure-https.xml:112(para)
msgid "Restart <systemitem class=\"service\">memcached</systemitem>:"
msgstr ""
#: ./doc/common/section_dashboard-configure-https.xml:115(para)
msgid "If you try to access the dashboard through HTTP, the browser redirects you to the HTTPS page."
msgstr ""
#: ./doc/common/section_cli_nova_volumes.xml:7(title)
msgid "Manage Volumes"
msgstr ""
#: ./doc/common/section_cli_nova_volumes.xml:8(para)
msgid "Depending on the setup of your cloud provider, they may give you an endpoint to use to manage volumes, or there may be an extension under the covers. In either case, you can use the <placeholder-1/> CLI to manage volumes:"
msgstr ""
#: ./doc/common/section_cli_nova_volumes.xml:25(para)
msgid "For example, to list IDs and names of Compute volumes, run:"
msgstr ""
#: ./doc/common/section_compute-configure-console.xml:7(title)
msgid "Configure remote console access"
msgstr ""
#. <?dbhtml stop-chunking?>
#: ./doc/common/section_compute-configure-console.xml:9(para)
msgid "To provide a remote console or remote desktop access to guest virtual machines, use VNC or SPICE HTML5 through either the OpenStack dashboard or the command line. Best practice is to select one or the other to run."
msgstr ""
#. When image changes, this message will be marked fuzzy or untranslated for you.
#. It doesn't matter what you translate it to: it's not used at all.
#: ./doc/common/section_objectstorage-characteristics.xml:49(None)
msgid "@@image: '../common/figures/objectstorage.png'; md5=e26e374ace84070f5fed24e73adcd562"
msgstr ""
#: ./doc/common/section_objectstorage-characteristics.xml:7(title)
msgid "Object Storage characteristics"
msgstr ""
#: ./doc/common/section_objectstorage-characteristics.xml:8(para)
msgid "The key characteristics of Object Storage are that:"
msgstr ""
#: ./doc/common/section_objectstorage-characteristics.xml:11(para)
msgid "All objects stored in Object Storage have a URL."
msgstr ""
#: ./doc/common/section_objectstorage-characteristics.xml:14(para)
msgid "All objects stored are replicated 3✕ in as-unique-as-possible zones, which can be defined as a group of drives, a node, a rack, and so on."
msgstr ""
#: ./doc/common/section_objectstorage-characteristics.xml:18(para)
msgid "All objects have their own metadata."
msgstr ""
#: ./doc/common/section_objectstorage-characteristics.xml:21(para)
msgid "Developers interact with the object storage system through a RESTful HTTP API."
msgstr ""
#: ./doc/common/section_objectstorage-characteristics.xml:25(para)
msgid "Object data can be located anywhere in the cluster."
msgstr ""
#: ./doc/common/section_objectstorage-characteristics.xml:28(para)
msgid "The cluster scales by adding additional nodes without sacrificing performance, which allows a more cost-effective linear storage expansion than fork-lift upgrades."
msgstr ""
#: ./doc/common/section_objectstorage-characteristics.xml:33(para)
msgid "Data doesn't have to be migrate to an entirely new storage system."
msgstr ""
#: ./doc/common/section_objectstorage-characteristics.xml:36(para)
msgid "New nodes can be added to the cluster without downtime."
msgstr ""
#: ./doc/common/section_objectstorage-characteristics.xml:39(para)
msgid "Failed nodes and disks can be swapped out without downtime."
msgstr ""
#: ./doc/common/section_objectstorage-characteristics.xml:42(para)
msgid "It runs on industry-standard hardware, such as Dell, HP, and Supermicro."
msgstr ""
#: ./doc/common/section_objectstorage-characteristics.xml:53(para)
msgid "Developers can either write directly to the Swift API or use one of the many client libraries that exist for all of the popular programming languages, such as Java, Python, Ruby, and C#. Amazon S3 and RackSpace Cloud Files users should be very familiar with Object Storage. Users new to object storage systems will have to adjust to a different approach and mindset than those required for a traditional filesystem."
msgstr ""
#: ./doc/common/section_cli_nova_metadata.xml:8(title)
msgid "Insert metadata during launch"
msgstr ""
#: ./doc/common/section_cli_nova_metadata.xml:9(para)
msgid "When booting a server, you can also add metadata, so that you can more easily identify it amongst your ever-growing elastic cloud. Use the <literal>--meta</literal> option with a key=value pair, where you can make up the string for both the key and the value. For example, you could add a description and also the creator of the server. <placeholder-1/>"
msgstr ""
#: ./doc/common/section_cli_nova_metadata.xml:17(para)
msgid "When viewing the server information, you can see the metadata included on the <literal>metadata</literal> line: <placeholder-1/>"
msgstr ""
#: ./doc/common/section_cli_overview.xml:7(title) ./doc/common/section_dashboard_access.xml:105(guilabel) ./doc/common/section_dashboard_access.xml:229(guilabel)
msgid "Overview"
msgstr ""
#: ./doc/common/section_cli_overview.xml:8(para)
msgid "Each OpenStack project provides a command-line client, which enables you to access the project API through easy-to-use commands. For example, the Compute service provides a nova command-line client."
msgstr ""
#: ./doc/common/section_cli_overview.xml:13(para)
msgid "You can run the commands from the command line, or include the commands within scripts to automate tasks. If you provide OpenStack credentials, such as your user name and password, you can run these commands on any computer."
msgstr ""
#: ./doc/common/section_cli_overview.xml:19(para)
msgid "Internally, each command uses cURL command-line tools, which embed API requests. OpenStack APIs are RESTful APIs, and use the HTTP protocol. They include methods, URIs, media types, and response codes."
msgstr ""
#: ./doc/common/section_cli_overview.xml:24(para)
msgid "OpenStack APIs are open-source Python clients, and can run on Linux or Mac OS X systems. On some client commands, you can specify a <placeholder-1/> parameter to show the underlying API request for the command. This is a good way to become familiar with the OpenStack API calls."
msgstr ""
#: ./doc/common/section_cli_overview.xml:30(para)
msgid "The following table lists the command-line client for each OpenStack service with its package name and description."
msgstr ""
#: ./doc/common/section_cli_overview.xml:33(caption)
msgid "OpenStack services and clients"
msgstr ""
#: ./doc/common/section_cli_overview.xml:40(th) ./doc/common/ch_getstart.xml:30(th) ./doc/common/section_keystone-concepts.xml:88(term)
msgid "Service"
msgstr ""
#: ./doc/common/section_cli_overview.xml:41(th)
msgid "Client"
msgstr ""
#: ./doc/common/section_cli_overview.xml:42(th)
msgid "Package"
msgstr ""
#: ./doc/common/section_cli_overview.xml:48(td) ./doc/common/ch_getstart.xml:100(glossterm)
msgid "Block Storage"
msgstr ""
#: ./doc/common/section_cli_overview.xml:50(package)
msgid "python-cinderclient"
msgstr ""
#: ./doc/common/section_cli_overview.xml:51(td)
msgid "Create and manage volumes."
msgstr ""
#: ./doc/common/section_cli_overview.xml:54(td) ./doc/common/section_dashboard_access.xml:100(guilabel) ./doc/common/ch_getstart.xml:53(glossterm)
msgid "Compute"
msgstr ""
#: ./doc/common/section_cli_overview.xml:56(package)
msgid "python-novaclient"
msgstr ""
#: ./doc/common/section_cli_overview.xml:57(td)
msgid "Create and manage images, instances, and flavors."
msgstr ""
#: ./doc/common/section_cli_overview.xml:60(td) ./doc/common/ch_getstart.xml:173(glossterm)
msgid "Database Service"
msgstr ""
#: ./doc/common/section_cli_overview.xml:62(package)
msgid "python-troveclient"
msgstr ""
#: ./doc/common/section_cli_overview.xml:63(td)
msgid "Create and manage databases."
msgstr ""
#: ./doc/common/section_cli_overview.xml:66(td)
msgid "Identity"
msgstr ""
#: ./doc/common/section_cli_overview.xml:68(package)
msgid "python-keystoneclient"
msgstr ""
#: ./doc/common/section_cli_overview.xml:69(td)
msgid "Create and manage users, tenants, roles, endpoints, and credentials."
msgstr ""
#: ./doc/common/section_cli_overview.xml:72(td) ./doc/common/ch_getstart.xml:128(glossterm)
msgid "Image Service"
msgstr ""
#: ./doc/common/section_cli_overview.xml:74(package)
msgid "python-glanceclient"
msgstr ""
#: ./doc/common/section_cli_overview.xml:75(td)
msgid "Create and manage images."
msgstr ""
#: ./doc/common/section_cli_overview.xml:78(td) ./doc/common/ch_getstart.xml:67(glossterm)
msgid "Networking"
msgstr ""
#: ./doc/common/section_cli_overview.xml:80(package)
msgid "python-neutronclient"
msgstr ""
#: ./doc/common/section_cli_overview.xml:81(td)
msgid "Configure networks for guest servers. This client was previously called <placeholder-1/>."
msgstr ""
#: ./doc/common/section_cli_overview.xml:85(td) ./doc/common/ch_getstart.xml:84(glossterm)
msgid "Object Storage"
msgstr ""
#: ./doc/common/section_cli_overview.xml:87(package)
msgid "python-swiftclient"
msgstr ""
#: ./doc/common/section_cli_overview.xml:88(td)
msgid "Gather statistics, list items, update metadata, and upload, download, and delete files stored by the Object Storage service. Gain access to an Object Storage installation for ad hoc processing."
msgstr ""
#: ./doc/common/section_cli_overview.xml:93(td) ./doc/common/section_dashboard_access.xml:192(guilabel) ./doc/common/ch_getstart.xml:158(glossterm)
msgid "Orchestration"
msgstr ""
#: ./doc/common/section_cli_overview.xml:95(package)
msgid "python-heatclient"
msgstr ""
#: ./doc/common/section_cli_overview.xml:96(td)
msgid "Launch stacks from templates, view details of running stacks including events and resources, and update and delete stacks."
msgstr ""
#: ./doc/common/section_cli_overview.xml:100(td) ./doc/common/ch_getstart.xml:143(glossterm)
msgid "Telemetry"
msgstr ""
#: ./doc/common/section_cli_overview.xml:102(package)
msgid "python-ceilometerclient"
msgstr ""
#: ./doc/common/section_cli_overview.xml:103(td)
msgid "Create and collect measurements across OpenStack."
msgstr ""
#: ./doc/common/section_cli_overview.xml:106(td)
msgid "Data Processing"
msgstr ""
#: ./doc/common/section_cli_overview.xml:108(package)
msgid "python-saharaclient"
msgstr ""
#: ./doc/common/section_cli_overview.xml:109(td)
msgid "Creates and manages Hadoop clusters on OpenStack."
msgstr ""
#: ./doc/common/section_cli_overview.xml:112(td)
msgid "Common client"
msgstr ""
#: ./doc/common/section_cli_overview.xml:114(package)
msgid "python-openstackclient"
msgstr ""
#: ./doc/common/section_cli_overview.xml:115(td)
msgid "Common client for the OpenStack project."
msgstr ""
#: ./doc/common/section_cli_overview.xml:119(para)
msgid "For client installation instructions, see <link href=\"http://docs.openstack.org/user-guide/content/install_clients.html\">Install the OpenStack command-line clients</link>. For information about the OpenStack RC file, see <link href=\"http://docs.openstack.org/user-guide/content/cli_openrc.html\">Download and source the OpenStack RC file</link>."
msgstr ""
#. When image changes, this message will be marked fuzzy or untranslated for you.
#. It doesn't matter what you translate it to: it's not used at all.
#: ./doc/common/section_getstart_logical_arch.xml:40(None)
msgid "@@image: 'figures/openstack-arch-havana-logical-v1.jpg'; md5=e7acaaee72722626b045eda3fae81841"
msgstr ""
#: ./doc/common/section_getstart_logical_arch.xml:7(title) ./doc/common/section_getstart_logical_arch.xml:35(title)
msgid "Logical architecture"
msgstr ""
#: ./doc/common/section_getstart_logical_arch.xml:8(para)
msgid "To design, deploy, and configure OpenStack, administrators must understand the logical architecture."
msgstr ""
#: ./doc/common/section_getstart_logical_arch.xml:9(para)
msgid "OpenStack modules are one of the following types:"
msgstr ""
#: ./doc/common/section_getstart_logical_arch.xml:11(term)
msgid "Daemon"
msgstr ""
#: ./doc/common/section_getstart_logical_arch.xml:13(para)
msgid "Runs as a background process. On Linux platforms, a daemon is usually installed as a service."
msgstr ""
#: ./doc/common/section_getstart_logical_arch.xml:17(term)
msgid "Script"
msgstr ""
#: ./doc/common/section_getstart_logical_arch.xml:19(para)
msgid "Installs a virtual environment and runs tests. For example, the <code>run_tests.sh</code> script installs a virtual environment and runs unit tests on a service."
msgstr ""
#: ./doc/common/section_getstart_logical_arch.xml:23(term)
msgid "Command-line interface (CLI)"
msgstr ""
#: ./doc/common/section_getstart_logical_arch.xml:25(para)
msgid "Enables users to submit API calls to OpenStack services through easy-to-use commands."
msgstr ""
#: ./doc/common/section_getstart_logical_arch.xml:31(para)
msgid "The following diagram shows the most common, but not the only, architecture for an OpenStack cloud:"
msgstr ""
#: ./doc/common/section_getstart_logical_arch.xml:44(para)
msgid "As in <xref linkend=\"concept_arch\"/>, end users can interact through the dashboard, CLIs, and APIs. All services authenticate through a common Identity Service and individual services interact with each other through public APIs, except where privileged administrator commands are necessary."
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:7(title)
msgid "Manage Networking service quotas"
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:8(para)
msgid "A quota limits the number of available resources. A default quota might be enforced for all tenants. When you try to create more resources than the quota allows, an error occurs:"
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:13(para)
msgid "Per-tenant quota configuration is also supported by the quota extension API. See <link linkend=\"cfg_quotas_per_tenant\"> Per-tenant quota configuration</link> for details."
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:17(title)
msgid "Basic quota configuration"
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:18(para)
msgid "In the Networking default quota mechanism, all tenants have the same quota values, such as the number of resources that a tenant can create."
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:21(para)
msgid "The quota value is defined in the OpenStack Networking <filename>neutron.conf</filename> configuration file. To disable quotas for a specific resource, such as network, subnet, or port, remove a corresponding item from <option>quota_items</option>. This example shows the default quota values:"
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:42(para)
msgid "OpenStack Networking also supports quotas for L3 resources: router and floating IP. Add these lines to the <literal>quotas</literal> section in the <filename>neutron.conf</filename> file."
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:53(para) ./doc/common/section_cli_neutron-quotas.xml:68(para)
msgid "The <option>quota_items</option> option does not affect these quotas."
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:56(para)
msgid "OpenStack Networking also supports quotas for security group resources: number of security groups and the number of rules for each security group. Add these lines to the <literal>quotas</literal> section in the <filename>neutron.conf</filename> file:"
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:73(title)
msgid "Configure per-tenant quotas"
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:74(para)
msgid "OpenStack Networking also supports per-tenant quota limit by quota extension API."
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:78(para)
msgid "<placeholder-1/>. Deletes defined quotas for a specified tenant."
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:82(para)
msgid "<placeholder-1/>. Lists defined quotas for all tenants."
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:86(para)
msgid "<placeholder-1/>. Shows quotas for a specified tenant."
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:90(para)
msgid "<placeholder-1/>. Updates quotas for a specified tenant."
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:76(para)
msgid "Use these commands to manage per-tenant quotas:<placeholder-1/>Only users with the <literal>admin</literal> role can change a quota value. By default, the default set of quotas are enforced for all tenants, so no <placeholder-2/> command exists."
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:99(title)
msgid "Configure Networking to show per-tenant quotas"
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:100(para)
msgid "Set the <literal>quota_driver</literal> option in the <literal>neutron.conf</literal> file:"
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:103(para)
msgid "When you set this option, the output for Networking commands shows <literal>quotas</literal>."
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:107(title)
msgid "List Networking extensions"
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:108(para)
msgid "To list the Networking extensions, run this command:"
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:111(para)
msgid "The command shows the <literal>quotas</literal> extension, which provides per-tenant quota management support:"
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:129(title)
msgid "Show information for the quotas extension"
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:130(para)
msgid "To show information for the <literal>quotas</literal> extension, run this command:"
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:144(para)
msgid "Only some plug-ins support per-tenant quotas. Specifically, Open vSwitch, Linux Bridge, and VMware NSX support them, but new versions of other plug-ins might bring additional functionality. See the documentation for each plug-in."
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:152(title)
msgid "List tenants who have per-tenant quota support"
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:153(para)
msgid "The <placeholder-1/> command lists tenants for which the per-tenant quota is enabled. The command does not list tenants with default quota support. You must be an administrative user to run this command:"
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:166(title)
msgid "Show per-tenant quota values"
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:167(para)
msgid "The <placeholder-1/> reports the current set of quota limits for the specified tenant. Non-administrative users can run this command without the <parameter>--tenant_id</parameter> parameter. If per-tenant quota limits are not enabled for the tenant, the command shows the default set of quotas:"
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:183(para)
msgid "The following command shows the command output for a non-administrative user:"
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:197(title)
msgid "Update quota values for a specified tenant"
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:198(para)
msgid "Use the <placeholder-1/> command to update a quota for a specified tenant:"
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:210(para)
msgid "You can update quotas for multiple resources through one command:"
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:222(para)
msgid "To update the limits for an L3 resource such as, router or floating IP, you must define new values for the quotas after the <parameter>--</parameter> directive."
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:225(para)
msgid "This example updates the limit of the number of floating IPs for the specified tenant:"
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:237(para)
msgid "You can update the limits of multiple resources by including L2 resources and L3 resource through one command."
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:252(title)
msgid "Delete per-tenant quota values"
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:253(para)
msgid "To clear per-tenant quota limits, use the <placeholder-1/> command:"
msgstr ""
#: ./doc/common/section_cli_neutron-quotas.xml:257(para)
msgid "After you run this command, you can see that quota values for the tenant are reset to the default values:"
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:11(title)
msgid "Host aggregates"
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:12(para)
msgid "Host aggregates are a mechanism to further partition an availability zone; while availability zones are visible to users, host aggregates are only visible to administrators. Host Aggregates provide a mechanism to allow administrators to assign key-value pairs to groups of machines. Each node can have multiple aggregates, each aggregate can have multiple key-value pairs, and the same key-value pair can be assigned to multiple aggregates. This information can be used in the scheduler to enable advanced scheduling, to set up hypervisor resource pools or to define logical groups for migration."
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:24(title)
msgid "Command-line interface"
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:31(para)
msgid "Print a list of all aggregates."
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:36(replaceable) ./doc/common/section_cli_nova_host_aggregates.xml:112(replaceable)
msgid "&lt;name&gt;"
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:37(replaceable)
msgid "&lt;availability-zone&gt;"
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:39(para)
msgid "Create a new aggregate named <replaceable>&lt;name&gt;</replaceable> in availability zone <replaceable>&lt;availability-zone&gt;</replaceable>. Returns the ID of the newly created aggregate. Hosts can be made available to multiple availability zones, but administrators should be careful when adding the host to a different host aggregate within the same availability zone and pay attention when using the <placeholder-1/> and <placeholder-2/> commands to avoid user confusion when they boot instances in different availability zones. An error occurs if you cannot add a particular host to an aggregate zone for which it is not intended."
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:61(replaceable) ./doc/common/section_cli_nova_host_aggregates.xml:69(replaceable) ./doc/common/section_cli_nova_host_aggregates.xml:77(replaceable) ./doc/common/section_cli_nova_host_aggregates.xml:88(replaceable) ./doc/common/section_cli_nova_host_aggregates.xml:99(replaceable) ./doc/common/section_cli_nova_host_aggregates.xml:111(replaceable)
msgid "&lt;id&gt;"
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:63(para)
msgid "Delete an aggregate with id <replaceable>&lt;id&gt;</replaceable>."
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:71(para)
msgid "Show details of the aggregate with id <replaceable>&lt;id&gt;</replaceable>."
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:78(replaceable) ./doc/common/section_cli_nova_host_aggregates.xml:89(replaceable)
msgid "&lt;host&gt;"
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:80(para)
msgid "Add host with name <replaceable>&lt;host&gt;</replaceable> to aggregate with id <replaceable>&lt;id&gt;</replaceable>."
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:91(para)
msgid "Remove the host with name <replaceable>&lt;host&gt;</replaceable> from the aggregate with id <replaceable>&lt;id&gt;</replaceable>."
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:100(replaceable) ./doc/common/section_cli_nova_host_aggregates.xml:101(replaceable)
msgid "&lt;key=value&gt;"
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:104(para)
msgid "Add or update metadata (key-value pairs) associated with the aggregate with id <replaceable>&lt;id&gt;</replaceable>."
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:113(replaceable)
msgid "&lt;availability_zone&gt;"
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:115(para)
msgid "Update the name and availability zone (optional) for the aggregate."
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:122(para)
msgid "List all hosts by service."
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:129(para)
msgid "Put/resume host into/from maintenance."
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:25(para)
msgid "The <placeholder-1/> command-line tool supports the following aggregate-related commands. <placeholder-2/>"
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:135(para)
msgid "Only administrators can access these commands. If you try to use these commands and the user name and tenant that you use to access the Compute service do not have the <literal>admin</literal> role or the appropriate privileges, these errors occur:"
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:147(title)
msgid "Configure scheduler to support host aggregates"
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:148(para)
msgid "One common use case for host aggregates is when you want to support scheduling instances to a subset of compute hosts because they have a specific capability. For example, you may want to allow users to request compute hosts that have SSD drives if they need access to faster disk I/O, or access to compute hosts that have GPU cards to take advantage of GPU-accelerated code."
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:155(para)
msgid "To configure the scheduler to support host aggregates, the <literal>scheduler_default_filters</literal> configuration option must contain the <literal>AggregateInstanceExtraSpecsFilter</literal> in addition to the other filters used by the scheduler. Add the following line to <filename>/etc/nova/nova.conf</filename> on the host that runs the <systemitem class=\"service\">nova-scheduler</systemitem> service to enable host aggregates filtering, as well as the other filters that are typically enabled:<placeholder-1/>"
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:169(title)
msgid "Example: Specify compute hosts with SSDs"
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:170(para)
msgid "This example configures the Compute service to enable users to request nodes that have solid-state drives (SSDs). You create a <literal>fast-io</literal> host aggregate in the <literal>nova</literal> availability zone and you add the <literal>ssd=true</literal> key-value pair to the aggregate. Then, you add the <literal>node1</literal>, and <literal>node2</literal> compute nodes to it."
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:205(para)
msgid "Use the <placeholder-1/> command to create the <replaceable>ssd.large</replaceable> flavor called with an ID of 6, 8GB of RAM, 80GB root disk, and four vCPUs."
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:208(replaceable) ./doc/common/section_cli_nova_host_aggregates.xml:220(replaceable)
msgid "ssd.large"
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:208(replaceable)
msgid "6"
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:208(replaceable) ./doc/common/tables/swift-conf-changes.xml:405(td) ./doc/common/tables/swift-conf-changes.xml:410(td) ./doc/common/tables/swift-conf-changes.xml:415(td)
msgid "8192"
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:208(replaceable)
msgid "80"
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:208(replaceable) ./doc/common/tables/glance-conf-changes.xml:105(td)
msgid "4"
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:214(para)
msgid "Once the flavor is created, specify one or more key-value pairs that match the key-value pairs on the host aggregates. In this case, that is the <replaceable>ssd=true</replaceable> key-value pair. Setting a key-value pair on a flavor is done using the <placeholder-1/> command."
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:220(replaceable)
msgid "ssd=true"
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:221(para)
msgid "Once it is set, you should see the <literal>extra_specs</literal> property of the <literal>ssd.large</literal> flavor populated with a key of <literal>ssd</literal> and a corresponding value of <literal>true</literal>."
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:242(para)
msgid "Now, when a user requests an instance with the <literal>ssd.large</literal> flavor, the scheduler only considers hosts with the <literal>ssd=true</literal> key-value pair. In this example, these are <literal>node1</literal> and <literal>node2</literal>."
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:250(title)
msgid "XenServer hypervisor pools to support live migration"
msgstr ""
#: ./doc/common/section_cli_nova_host_aggregates.xml:252(para)
msgid "When using the XenAPI-based hypervisor, the Compute service uses host aggregates to manage XenServer Resource pools, which are used in supporting live migration."
msgstr ""
#: ./doc/common/section_objectstorage-replication.xml:7(title) ./doc/common/section_objectstorage-components.xml:192(title)
msgid "Replication"
msgstr ""
#: ./doc/common/section_objectstorage-replication.xml:8(para)
msgid "Because each replica in Object Storage functions independently and clients generally require only a simple majority of nodes to respond to consider an operation successful, transient failures like network partitions can quickly cause replicas to diverge. These differences are eventually reconciled by asynchronous, peer-to-peer replicator processes. The replicator processes traverse their local file systems and concurrently perform operations in a manner that balances load across physical disks."
msgstr ""
#: ./doc/common/section_objectstorage-replication.xml:17(para)
msgid "Replication uses a push model, with records and files generally only being copied from local to remote replicas. This is important because data on the node might not belong there (as in the case of hand offs and ring changes), and a replicator cannot know which data it should pull in from elsewhere in the cluster. Any node that contains data must ensure that data gets to where it belongs. The ring handles replica placement."
msgstr ""
#: ./doc/common/section_objectstorage-replication.xml:25(para)
msgid "To replicate deletions in addition to creations, every deleted record or file in the system is marked by a tombstone. The replication process cleans up tombstones after a time period known as the <emphasis role=\"italic\">consistency window</emphasis>. This window defines the duration of the replication and how long transient failure can remove a node from the cluster. Tombstone cleanup must be tied to replication to reach replica convergence."
msgstr ""
#: ./doc/common/section_objectstorage-replication.xml:33(para)
msgid "If a replicator detects that a remote drive has failed, the replicator uses the <literal>get_more_nodes</literal> interface for the ring to choose an alternate node with which to synchronize. The replicator can maintain desired levels of replication during disk failures, though some replicas might not be in an immediately usable location."
msgstr ""
#: ./doc/common/section_objectstorage-replication.xml:40(para)
msgid "The replicator does not maintain desired levels of replication when failures such as entire node failures occur; most failures are transient."
msgstr ""
#: ./doc/common/section_objectstorage-replication.xml:44(para)
msgid "The main replication types are:"
msgstr ""
#: ./doc/common/section_objectstorage-replication.xml:47(para)
msgid "<emphasis role=\"bold\">Database replication</emphasis>. Replicates containers and objects."
msgstr ""
#: ./doc/common/section_objectstorage-replication.xml:52(para)
msgid "<emphasis role=\"bold\">Object replication</emphasis>. Replicates object data."
msgstr ""
#: ./doc/common/section_objectstorage-replication.xml:57(title)
msgid "Database replication"
msgstr ""
#: ./doc/common/section_objectstorage-replication.xml:58(para)
msgid "Database replication completes a low-cost hash comparison to determine whether two replicas already match. Normally, this check can quickly verify that most databases in the system are already synchronized. If the hashes differ, the replicator synchronizes the databases by sharing records added since the last synchronization point."
msgstr ""
#: ./doc/common/section_objectstorage-replication.xml:65(para)
msgid "This synchronization point is a high water mark that notes the last record at which two databases were known to be synchronized, and is stored in each database as a tuple of the remote database ID and record ID. Database IDs are unique across all replicas of the database, and record IDs are monotonically increasing integers. After all new records are pushed to the remote database, the entire synchronization table of the local database is pushed, so the remote database can guarantee that it is synchronized with everything with which the local database was previously synchronized."
msgstr ""
#: ./doc/common/section_objectstorage-replication.xml:76(para)
msgid "If a replica is missing, the whole local database file is transmitted to the peer by using rsync(1) and is assigned a new unique ID."
msgstr ""
#: ./doc/common/section_objectstorage-replication.xml:79(para)
msgid "In practice, database replication can process hundreds of databases per concurrency setting per second (up to the number of available CPUs or disks) and is bound by the number of database transactions that must be performed."
msgstr ""
#: ./doc/common/section_objectstorage-replication.xml:86(title)
msgid "Object replication"
msgstr ""
#: ./doc/common/section_objectstorage-replication.xml:87(para)
msgid "The initial implementation of object replication performed an rsync to push data from a local partition to all remote servers where it was expected to reside. While this worked at small scale, replication times skyrocketed once directory structures could no longer be held in RAM. This scheme was modified to save a hash of the contents for each suffix directory to a per-partition hashes file. The hash for a suffix directory is no longer valid when the contents of that suffix directory is modified."
msgstr ""
#: ./doc/common/section_objectstorage-replication.xml:96(para)
msgid "The object replication process reads in hash files and calculates any invalidated hashes. Then, it transmits the hashes to each remote server that should hold the partition, and only suffix directories with differing hashes on the remote server are rsynced. After pushing files to the remote server, the replication process notifies it to recalculate hashes for the rsynced suffix directories."
msgstr ""
#: ./doc/common/section_objectstorage-replication.xml:104(para)
msgid "The number of uncached directories that object replication must traverse, usually as a result of invalidated suffix directory hashes, impedes performance. To provide acceptable replication speeds, object replication is designed to invalidate around 2 percent of the hash space on a normal node each day."
msgstr ""
#: ./doc/common/section_getstart_networking.xml:7(title)
msgid "OpenStack Networking"
msgstr ""
#: ./doc/common/section_getstart_networking.xml:8(para)
msgid "OpenStack Networking allows you to create and attach interface devices managed by other OpenStack services to networks. Plug-ins can be implemented to accommodate different networking equipment and software, providing flexibility to OpenStack architecture and deployment."
msgstr ""
#: ./doc/common/section_getstart_networking.xml:16(systemitem)
msgid "neutron-server"
msgstr ""
#: ./doc/common/section_getstart_networking.xml:17(para)
msgid "Accepts and routes API requests to the appropriate OpenStack Networking plug-in for action."
msgstr ""
#: ./doc/common/section_getstart_networking.xml:21(term)
msgid "OpenStack Networking plug-ins and agents"
msgstr ""
#: ./doc/common/section_getstart_networking.xml:22(para)
msgid "Plugs and unplugs ports, creates networks or subnets, and provides IP addressing. These plug-ins and agents differ depending on the vendor and technologies used in the particular cloud. OpenStack Networking ships with plug-ins and agents for Cisco virtual and physical switches, NEC OpenFlow products, Open vSwitch, Linux bridging, Ryu Network Operating System, and the VMware NSX product."
msgstr ""
#: ./doc/common/section_getstart_networking.xml:29(para)
msgid "The common agents are L3 (layer 3), DHCP (dynamic host IP addressing), and a plug-in agent."
msgstr ""
#: ./doc/common/section_getstart_networking.xml:33(term) ./doc/common/section_getstart_block-storage.xml:45(term)
msgid "Messaging queue"
msgstr ""
#: ./doc/common/section_getstart_networking.xml:34(para)
msgid "Used by most OpenStack Networking installations to route information between the neutron-server and various agents, as well as a database to store networking state for particular plug-ins."
msgstr ""
#: ./doc/common/section_getstart_networking.xml:40(para)
msgid "OpenStack Networking mainly interacts with OpenStack Compute to provide networks and connectivity for its instances."
msgstr ""
#: ./doc/common/section_cli_nova_evacuate.xml:7(title)
msgid "Evacuate instances"
msgstr ""
#: ./doc/common/section_cli_nova_evacuate.xml:8(para)
msgid "If a cloud compute node fails due to a hardware malfunction or another reason, you can evacuate instances to make them available again. You can optionally include the target host on the <placeholder-1/> command. If you omit the host, the scheduler determines the target host."
msgstr ""
#: ./doc/common/section_cli_nova_evacuate.xml:12(para)
msgid "To preserve user data on server disk, you must configure shared storage on the target host. Also, you must validate that the current VM host is down; otherwise, the evacuation fails with an error."
msgstr ""
#: ./doc/common/section_cli_nova_evacuate.xml:17(para)
msgid "To list hosts and find a different host for the evacuated instance, run:"
msgstr ""
#: ./doc/common/section_cli_nova_evacuate.xml:21(para)
msgid "Evacuate the instance. You can pass the instance password to the command by using the <literal>--password &lt;pwd&gt;</literal> option. If you do not specify a password, one is generated and printed after the command finishes successfully. The following command evacuates a server without shared storage from a host that is down to the specified <replaceable>host_b</replaceable>:"
msgstr ""
#: ./doc/common/section_cli_nova_evacuate.xml:26(replaceable) ./doc/common/section_cli_nova_evacuate.xml:42(replaceable)
msgid "evacuated_server_name"
msgstr ""
#: ./doc/common/section_cli_nova_evacuate.xml:26(replaceable) ./doc/common/section_cli_nova_evacuate.xml:42(replaceable)
msgid "host_b"
msgstr ""
#: ./doc/common/section_cli_nova_evacuate.xml:27(para)
msgid "The instance is booted from a new disk, but preserves its configuration including its ID, name, uid, IP address, and so on. The command returns a password:"
msgstr ""
#: ./doc/common/section_cli_nova_evacuate.xml:36(para)
msgid "To preserve the user disk data on the evacuated server, deploy OpenStack Compute with a shared file system. To configure your system, see <link href=\"http://docs.openstack.org/admin-guide-cloud/content/section_configuring-compute-migrations.html\">Configure migrations</link> in <citetitle>OpenStack Cloud Administrator Guide</citetitle>. In the following example, the password remains unchanged:"
msgstr ""
#: ./doc/common/section_compute-configure-spice.xml:7(title)
msgid "SPICE console"
msgstr ""
#: ./doc/common/section_compute-configure-spice.xml:8(para)
msgid "OpenStack Compute supports VNC consoles to guests. The VNC protocol is fairly limited, lacking support for multiple monitors, bi-directional audio, reliable cut-and-paste, video streaming and more. SPICE is a new protocol that aims to address the limitations in VNC and provide good remote desktop support."
msgstr ""
#: ./doc/common/section_compute-configure-spice.xml:13(para)
msgid "SPICE support in OpenStack Compute shares a similar architecture to the VNC implementation. The OpenStack dashboard uses a SPICE-HTML5 widget in its console tab that communicates to the <systemitem class=\"service\">nova-spicehtml5proxy</systemitem> service by using SPICE-over-websockets. The <systemitem class=\"service\">nova-spicehtml5proxy</systemitem> service communicates directly with the hypervisor process by using SPICE."
msgstr ""
#: ./doc/common/section_compute-configure-spice.xml:20(para)
msgid "VNC must be explicitly disabled to get access to the SPICE console. Set the <option>vnc_enabled</option> option to <literal>False</literal> in the <literal>[DEFAULT]</literal> section to disable the VNC console."
msgstr ""
#: ./doc/common/section_compute-configure-spice.xml:23(para)
msgid "Use the following options to configure SPICE as the console for OpenStack Compute:"
msgstr ""
#: ./doc/common/section_getstart_block-storage.xml:7(title)
msgid "OpenStack Block Storage"
msgstr ""
#: ./doc/common/section_getstart_block-storage.xml:8(para)
msgid "The OpenStack Block Storage service (cinder) adds persistent storage to a virtual machine. Block Storage provides an infrastructure for managing volumes, and interacts with OpenStack Compute to provide volumes for instances. The service also enables management of volume snapshots, and volume types."
msgstr ""
#: ./doc/common/section_getstart_block-storage.xml:14(para)
msgid "The Block Storage service consists of the following components:"
msgstr ""
#: ./doc/common/section_getstart_block-storage.xml:18(systemitem)
msgid "cinder-api"
msgstr ""
#: ./doc/common/section_getstart_block-storage.xml:19(para)
msgid "Accepts API requests, and routes them to the <systemitem class=\"service\">cinder-volume</systemitem> for action."
msgstr ""
#: ./doc/common/section_getstart_block-storage.xml:24(systemitem)
msgid "cinder-volume"
msgstr ""
#: ./doc/common/section_getstart_block-storage.xml:25(para)
msgid "Interacts directly with the Block Storage service, and processes such as the <systemitem class=\"service\">cinder-scheduler</systemitem>. It also interacts with these processes through a message queue. The <systemitem>cinder-volume service</systemitem> responds to read and write requests sent to the Block Storage service to maintain state. It can interact with a variety of storage providers through a driver architecture."
msgstr ""
#: ./doc/common/section_getstart_block-storage.xml:37(term)
msgid "<systemitem class=\"service\">cinder-scheduler</systemitem> daemon"
msgstr ""
#: ./doc/common/section_getstart_block-storage.xml:39(para)
msgid "Selects the optimal storage provider node on which to create the volume. A similar component to the <systemitem class=\"service\">nova-scheduler</systemitem>."
msgstr ""
#: ./doc/common/section_getstart_block-storage.xml:46(para)
msgid "Routes information between the Block Storage processes."
msgstr ""
#: ./doc/common/section_dashboard-configure-vnc-window.xml:7(title)
msgid "Change the size of the dashboard VNC window"
msgstr ""
#: ./doc/common/section_dashboard-configure-vnc-window.xml:8(para)
msgid "The <filename>_detail_vnc.html</filename> file defines the size of the VNC window. To change the window size, edit this file."
msgstr ""
#: ./doc/common/section_dashboard-configure-vnc-window.xml:13(para)
msgid "Edit <filename>/usr/share/pyshared/horizon/dashboards/nova/instances/templates/instances/_detail_vnc.html.</filename>"
msgstr ""
#: ./doc/common/section_dashboard-configure-vnc-window.xml:17(para)
msgid "Modify the <literal>width</literal> and <literal>height</literal> parameters, as follows:"
msgstr ""
#: ./doc/common/section_using-vnc-console.xml:7(title)
msgid "Use the VNC console"
msgstr ""
#: ./doc/common/section_using-vnc-console.xml:8(para)
msgid "To interact through the VNC console, you can use a VNC client directly, a special Java client, or a web browser. For information about how to configure the console, see <xref linkend=\"installing-openstack-dashboard\"/>."
msgstr ""
#: ./doc/common/section_using-vnc-console.xml:16(title)
msgid "Get an access URL"
msgstr ""
#: ./doc/common/section_using-vnc-console.xml:17(para)
msgid "The Compute service enables you to create access_urls through the os-consoles extension. Support for accessing this URL is provided by the nova client:"
msgstr ""
#: ./doc/common/section_using-vnc-console.xml:20(replaceable) ./doc/common/section_using-vnc-console.xml:26(replaceable) ./doc/common/section_using-vnc-console.xml:53(replaceable) ./doc/common/section_using-vnc-console.xml:66(replaceable)
msgid "[server_id]"
msgstr ""
#: ./doc/common/section_using-vnc-console.xml:20(replaceable)
msgid "[novnc|xvpvnc]"
msgstr ""
#: ./doc/common/section_using-vnc-console.xml:21(para)
msgid "Specify '<literal>novnc</literal>' to get a URL suitable for pasting into a web browser."
msgstr ""
#: ./doc/common/section_using-vnc-console.xml:23(para)
msgid "Specify '<literal>xvpvnc</literal>' for a URL suitable for pasting into the Java client."
msgstr ""
#: ./doc/common/section_using-vnc-console.xml:25(para)
msgid "To request a web browser URL:"
msgstr ""
#: ./doc/common/section_using-vnc-console.xml:29(title)
msgid "Access a VNC console with a Java client"
msgstr ""
#: ./doc/common/section_using-vnc-console.xml:30(para)
msgid "To enable support for the OpenStack Java VNC client in compute, run the <literal>nova-xvpvncproxy</literal> service."
msgstr ""
#: ./doc/common/section_using-vnc-console.xml:35(para)
msgid "<literal>xvpvncproxy_port</literal>=<replaceable>[port]</replaceable> - port to bind (defaults to 6081)"
msgstr ""
#: ./doc/common/section_using-vnc-console.xml:39(para)
msgid "<literal>xvpvncproxy_host</literal>=<replaceable>[host]</replaceable> - host to bind (defaults to 0.0.0.0)"
msgstr ""
#: ./doc/common/section_using-vnc-console.xml:43(para)
msgid "As a client, you need a special Java client, which is a slightly modified version of TightVNC that supports our token auth:"
msgstr ""
#: ./doc/common/section_using-vnc-console.xml:49(para)
msgid "To create a session, request an access URL by using <placeholder-1/>. Then, run the client as follows."
msgstr ""
#: ./doc/common/section_using-vnc-console.xml:52(para)
msgid "To get an access URL:"
msgstr ""
#: ./doc/common/section_using-vnc-console.xml:54(para)
msgid "To run the client:"
msgstr ""
#: ./doc/common/section_using-vnc-console.xml:55(replaceable)
msgid "[access_url]"
msgstr ""
#: ./doc/common/section_using-vnc-console.xml:60(title)
msgid "Access a VNC console with a web browser"
msgstr ""
#: ./doc/common/section_using-vnc-console.xml:62(para)
msgid "Retrieving an access_url for a web browser is similar to the flow for the Java client."
msgstr ""
#: ./doc/common/section_using-vnc-console.xml:64(para)
msgid "To get the access URL, run the following command:"
msgstr ""
#: ./doc/common/section_using-vnc-console.xml:67(para)
msgid "Paste the URL into your web browser."
msgstr ""
#: ./doc/common/section_using-vnc-console.xml:69(para)
msgid "Additionally, you can use the OpenStack dashboard, known as horizon, to access browser-based VNC consoles for instances."
msgstr ""
#: ./doc/common/section_cli_nova_sshkeys.xml:7(title)
msgid "Add keypair"
msgstr ""
#: ./doc/common/section_cli_nova_sshkeys.xml:8(para)
msgid "Create at least one keypair for each project. If you have generated a keypair with an external tool, you can import it into OpenStack. The keypair can be used for multiple instances that belong to a project."
msgstr ""
#: ./doc/common/section_cli_nova_sshkeys.xml:14(para)
msgid "Create a key."
msgstr ""
#: ./doc/common/section_cli_nova_sshkeys.xml:15(para)
msgid "To create a <literal>mykey</literal> key that you can associate with instances, run the following command:"
msgstr ""
#: ./doc/common/section_cli_nova_sshkeys.xml:18(para)
msgid "Save the <filename>mykey.pem</filename> file to a secure location. It enables root access to any instances with which the <literal>mykey</literal> key is associated."
msgstr ""
#: ./doc/common/section_cli_nova_sshkeys.xml:23(para)
msgid "Alternatively, you can import a keypair."
msgstr ""
#: ./doc/common/section_cli_nova_sshkeys.xml:24(para)
msgid "To import an existing public key, <literal>mykey.pub</literal>, and associate it with the <literal>mykey</literal> key, run the following command:"
msgstr ""
#: ./doc/common/section_cli_nova_sshkeys.xml:29(para)
msgid "You must have the matching private key to access instances that are associated with this key."
msgstr ""
#: ./doc/common/section_keystone_config_ldap-hardening.xml:7(title)
msgid "Secure the OpenStack Identity service connection to an LDAP back end"
msgstr ""
#: ./doc/common/section_keystone_config_ldap-hardening.xml:9(para)
msgid "The Identity service supports the use of TLS to encrypt LDAP traffic. Before configuring this, you must first verify where your certificate authority file is located. For more information, see <xref linkend=\"certificates-for-pki\"/>."
msgstr ""
#: ./doc/common/section_keystone_config_ldap-hardening.xml:13(para)
msgid "Once you verify the location of your certificate authority file:"
msgstr ""
#: ./doc/common/section_keystone_config_ldap-hardening.xml:16(title)
msgid "Configuring TLS encryption on LDAP traffic"
msgstr ""
#: ./doc/common/section_keystone_config_ldap-hardening.xml:18(para)
msgid "Open the <filename>/etc/keystone/keystone.conf</filename> configuration file."
msgstr ""
#: ./doc/common/section_keystone_config_ldap-hardening.xml:24(para)
msgid "Find the <literal>[ldap]</literal> section."
msgstr ""
#: ./doc/common/section_keystone_config_ldap-hardening.xml:27(para)
msgid "In the <literal>[ldap]</literal> section, set the <literal>use_tls</literal> configuration key to <literal>True</literal>. Doing so will enable TLS."
msgstr ""
#: ./doc/common/section_keystone_config_ldap-hardening.xml:32(para)
msgid "Configure the Identity service to use your certificate authorities file. To do so, set the <literal>tls_cacertfile</literal> configuration key in the <literal>ldap</literal> section to the certificate authorities file's path."
msgstr ""
#: ./doc/common/section_keystone_config_ldap-hardening.xml:38(para)
msgid "You can also set the <literal>tls_cacertdir</literal> (also in the <literal>ldap</literal> section) to the directory where all certificate authorities files are kept. If both <literal>tls_cacertfile</literal> and <literal>tls_cacertdir</literal> are set, then the latter will be ignored."
msgstr ""
#: ./doc/common/section_keystone_config_ldap-hardening.xml:47(para)
msgid "Specify what client certificate checks to perform on incoming TLS sessions from the LDAP server. To do so, set the <literal>tls_req_cert</literal> configuration key in the <literal>[ldap]</literal> section to <literal>demand</literal>, <literal>allow</literal>, or <literal>never</literal>:"
msgstr ""
#: ./doc/common/section_keystone_config_ldap-hardening.xml:54(para)
msgid "<parameter>demand</parameter>: a certificate will always be requested from the LDAP server. The session will be terminated if no certificate is provided, or if the certificate provided cannot be verified against the existing certificate authorities file."
msgstr ""
#: ./doc/common/section_keystone_config_ldap-hardening.xml:61(para)
msgid "<parameter>allow</parameter>: a certificate will always be requested from the LDAP server. The session will proceed as normal even if a certificate is not provided. If a certificate is provided but it cannot be verified against the existing certificate authorities file, the certificate will be ignored and the session will proceed as normal."
msgstr ""
#: ./doc/common/section_keystone_config_ldap-hardening.xml:68(para)
msgid "<parameter>never</parameter>: a certificate will never be requested."
msgstr ""
#: ./doc/common/section_keystone_config_ldap-hardening.xml:73(para)
msgid "On distributions that include <application>openstack-config</application>, you can configure TLS encryption on LDAP traffic by running the following commands instead:"
msgstr ""
#: ./doc/common/section_keystone_config_ldap-hardening.xml:81(replaceable)
msgid "CA_FILE"
msgstr ""
#: ./doc/common/section_keystone_config_ldap-hardening.xml:83(replaceable)
msgid "CERT_BEHAVIOR"
msgstr ""
#: ./doc/common/section_keystone_config_ldap-hardening.xml:86(para)
msgid "<replaceable>CA_FILE</replaceable> is the absolute path to the certificate authorities file that should be used to encrypt LDAP traffic."
msgstr ""
#: ./doc/common/section_keystone_config_ldap-hardening.xml:89(para)
msgid "<replaceable>CERT_BEHAVIOR</replaceable>: specifies what client certificate checks to perform on an incoming TLS session from the LDAP server (<literal>demand</literal>, <literal>allow</literal>, or <literal>never</literal>)."
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:8(title)
msgid "Certificates for PKI"
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:9(para)
msgid "PKI stands for Public Key Infrastructure. Tokens are documents, cryptographically signed using the X509 standard. In order to work correctly token generation requires a public/private key pair. The public key must be signed in an X509 certificate, and the certificate used to sign it must be available as Certificate Authority (CA) certificate. These files can be generated either using the <placeholder-1/> utility, or externally generated. The files need to be in the locations specified by the top level Identity Service configuration file <filename>keystone.conf</filename> as specified in the above section. Additionally, the private key should only be readable by the system user that will run the Identity Service."
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:24(para)
msgid "The certificates can be world readable, but the private key cannot be. The private key should only be readable by the account that is going to sign tokens. When generating files with the <placeholder-1/> command, your best option is to run as the pki user. If you run <placeholder-2/> as root, you can append <parameter>--keystone-user</parameter> and <parameter>--keystone-group</parameter> parameters to set the user name and group keystone is going to run under."
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:35(para)
msgid "The values that specify where to read the certificates are under the <literal>[signing]</literal> section of the configuration file. The configuration values are:"
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:40(para)
msgid "<literal>token_format</literal> - Determines the algorithm used to generate tokens. Can be either <literal>UUID</literal> or <literal>PKI</literal>. Defaults to <literal>PKI</literal>."
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:47(para)
msgid "<literal>certfile</literal> - Location of certificate used to verify tokens. Default is <literal>/etc/keystone/ssl/certs/signing_cert.pem</literal>."
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:53(para)
msgid "<literal>keyfile</literal> - Location of private key used to sign tokens. Default is <literal>/etc/keystone/ssl/private/signing_key.pem</literal>."
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:59(para)
msgid "<literal>ca_certs</literal> - Location of certificate for the authority that issued the above certificate. Default is <literal>/etc/keystone/ssl/certs/ca.pem</literal>."
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:66(para)
msgid "<literal>key_size</literal> - Default is <literal>1024</literal>."
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:71(para)
msgid "<literal>valid_days</literal> - Default is <literal>3650</literal>."
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:76(para)
msgid "<literal>ca_password</literal> - Password required to read the <literal>ca_file</literal>. Default is <literal>None</literal>."
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:82(para)
msgid "If <literal>token_format=UUID</literal>, a typical token looks like <literal>53f7f6ef0cc344b5be706bcc8b1479e1</literal>. If <literal>token_format=PKI</literal>, a typical token is a much longer string, such as:"
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:115(title)
msgid "Sign certificate issued by external CA"
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:116(para)
msgid "You can use a signing certificate issued by an external CA instead of generated by <placeholder-1/>. However, a certificate issued by an external CA must satisfy the following conditions:"
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:123(para)
msgid "all certificate and key files must be in Privacy Enhanced Mail (PEM) format"
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:127(para)
msgid "private key files must not be protected by a password"
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:131(para)
msgid "When using signing certificate issued by an external CA, you do not need to specify <literal>key_size</literal>, <literal>valid_days</literal>, and <literal>ca_password</literal> as they will be ignored."
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:136(para)
msgid "The basic workflow for using a signing certificate issued by an external CA involves:"
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:140(para)
msgid "Request Signing Certificate from External CA"
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:144(para)
msgid "Convert certificate and private key to PEM if needed"
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:148(para)
msgid "Install External Signing Certificate"
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:153(title)
msgid "Request a signing certificate from an external CA"
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:155(para)
msgid "One way to request a signing certificate from an external CA is to first generate a PKCS #10 Certificate Request Syntax (CRS) using OpenSSL CLI."
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:158(para)
msgid "Create a certificate request configuration file. For example, create the <filename>cert_req.conf</filename> file, as follows:"
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:178(para)
msgid "Then generate a CRS with OpenSSL CLI. <emphasis role=\"strong\">Do not encrypt the generated private key. Must use the -nodes option.</emphasis>"
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:185(para)
msgid "If everything is successful, you should end up with <filename>signing_cert_req.pem</filename> and <filename>signing_key.pem</filename>. Send <filename>signing_cert_req.pem</filename> to your CA to request a token signing certificate and make sure to ask the certificate to be in PEM format. Also, make sure your trusted CA certificate chain is also in PEM format."
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:195(title)
msgid "Install an external signing certificate"
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:196(para)
msgid "Assuming you have the following already:"
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:199(para)
msgid "<filename>signing_cert.pem</filename> - (Keystone token) signing certificate in PEM format"
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:204(para)
msgid "<filename>signing_key.pem</filename> - corresponding (non-encrypted) private key in PEM format"
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:210(para)
msgid "<filename>cacert.pem</filename> - trust CA certificate chain in PEM format"
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:215(para)
msgid "Copy the above to your certificate directory. For example:"
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:223(para)
msgid "Make sure the certificate directory is only accessible by root."
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:227(para)
msgid "The copying of the key and cert files may be better done after first running <placeholder-1/> since this command also creates other needed files, such as the <filename>index.txt</filename> and <filename>serial</filename> files."
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:231(para)
msgid "Also, when copying the necessary files to a different server for replicating the functionality, the entire directory of files is needed, not just the key and cert files."
msgstr ""
#: ./doc/common/section_keystone_certificates-for-pki.xml:235(para)
msgid "If your certificate directory path is different from the default <filename>/etc/keystone/ssl/certs</filename>, make sure it is reflected in the <literal>[signing]</literal> section of the configuration file."
msgstr ""
#: ./doc/common/section_about-object-storage.xml:7(title) ./doc/common/section_objectstorage-intro.xml:7(title)
msgid "Introduction to Object Storage"
msgstr ""
#: ./doc/common/section_about-object-storage.xml:8(para)
msgid "Object Storage is a robust, highly scalable and fault tolerant storage platform for unstructured data such as objects. Objects are stored bits, accessed through a RESTful, HTTP-based interface. You cannot access data at the block or file level. Object Storage is commonly used to archive and back up data, with use cases in virtual machine image, photo, video and music storage."
msgstr ""
#: ./doc/common/section_about-object-storage.xml:15(para)
msgid "Object Storage provides a high degree of availability, throughput, and performance with its scale out architecture. Each object is replicated across multiple servers, residing within the same data center or across data centers, which mitigates the risk of network and hardware failure. In the event of hardware failure, Object Storage will automatically copy objects to a new location to ensure that there are always three copies available. Object Storage is an eventually consistent distributed storage platform; it sacrifices consistency for maximum availability and partition tolerance. Object Storage enables you to create a reliable platform by using commodity hardware and inexpensive storage."
msgstr ""
#: ./doc/common/section_about-object-storage.xml:27(para)
msgid "For more information, review the key concepts in the developer documentation at <link href=\"http://docs.openstack.org/developer/swift/\">docs.openstack.org/developer/swift/</link>."
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:11(title)
msgid "Launch an instance from a volume"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:12(para)
msgid "You can boot instances from a volume instead of an image."
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:13(para)
msgid "To complete these tasks, use these parameters on the nova <placeholder-1/> command:"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:21(th)
msgid "Task"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:22(th)
msgid "nova boot parameter"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:23(th)
msgid "See"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:28(td)
msgid "Boot an instance from an image and attach a non-bootable volume."
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:30(parameter) ./doc/common/section_cli_nova_boot_from_volume.xml:36(parameter) ./doc/common/section_cli_nova_boot_from_volume.xml:42(parameter)
msgid "--block-device"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:34(td)
msgid "Create a volume from an image and boot an instance from that volume."
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:40(td)
msgid "Boot from an existing source image, volume, or snapshot."
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:46(td)
msgid "Attach a swap disk to an instance."
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:48(parameter)
msgid "--swap"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:52(td)
msgid "Attach an ephemeral disk to an instance."
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:53(parameter)
msgid "--ephemeral"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:59(para)
msgid "To attach a volume to a running instance, see <xref linkend=\"cli_attach_volume\"/>."
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:63(title)
msgid "Boot instance from image and attach non-bootable volume"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:65(para)
msgid "Create a non-bootable volume and attach that volume to an instance that you boot from an image."
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:67(para)
msgid "To create a non-bootable volume, do not create it from an image. The volume must be entirely empty with no partition table and no file system."
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:72(para)
msgid "Create a non-bootable volume:"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:99(para) ./doc/common/section_cli_cinder_manage_volumes.xml:177(para)
msgid "List volumes:"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:108(para)
msgid "Boot an instance from an image and attach the empty volume to the instance:"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:150(title)
msgid "Create volume from image and boot instance"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:151(para)
msgid "You can create a volume from an existing image, volume, or snapshot. This procedure shows you how to create a volume from an image, and use the volume to boot an instance."
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:156(para)
msgid "List the available images:"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:166(para)
msgid "Note the ID of the image that you want to use to create a volume."
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:170(para)
msgid "List the available flavors:"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:184(para)
msgid "Note the ID of the flavor that you want to use to create a volume."
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:188(para)
msgid "To create a bootable volume from an image and launch an instance from this volume, use the <parameter>--block-device</parameter> parameter."
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:192(replaceable) ./doc/common/section_cli_nova_boot_from_volume.xml:330(replaceable)
msgid "FLAVOR"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:192(replaceable) ./doc/common/section_cli_nova_boot_from_volume.xml:206(replaceable)
msgid "SOURCE"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:192(replaceable) ./doc/common/section_cli_nova_boot_from_volume.xml:218(replaceable)
msgid "ID"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:192(replaceable) ./doc/common/section_cli_nova_boot_from_volume.xml:225(replaceable)
msgid "DEST"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:192(replaceable) ./doc/common/section_cli_nova_boot_from_volume.xml:234(replaceable)
msgid "SIZE"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:192(replaceable)
msgid "PRESERVE"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:192(replaceable) ./doc/common/section_cli_nova_boot_from_volume.xml:251(replaceable)
msgid "INDEX"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:192(replaceable) ./doc/common/section_cli_nova_boot_from_volume.xml:330(replaceable)
msgid "NAME"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:193(para)
msgid "The parameters are:"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:196(para)
msgid "<parameter>--flavor</parameter><replaceable>FLAVOR</replaceable>. The flavor ID or name."
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:201(para)
msgid "<parameter>--block-device</parameter> source=<replaceable>SOURCE</replaceable>,id=<replaceable>ID</replaceable>,dest=<replaceable>DEST</replaceable>,size=<replaceable>SIZE</replaceable>,shutdown=<replaceable>PRESERVE</replaceable>,bootindex=<replaceable>INDEX</replaceable>"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:206(emphasis)
msgid "source=<placeholder-1/>"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:208(para)
msgid "The type of object used to create the block device. Valid values are <literal>volume</literal>, <literal>snapshot</literal>, <literal>image</literal>, and <literal>blank</literal>."
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:218(emphasis)
msgid "id=<placeholder-1/>"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:220(para)
msgid "The ID of the source object."
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:225(emphasis)
msgid "dest=<placeholder-1/>"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:227(para)
msgid "The type of the target virtual device. Valid values are <literal>volume</literal> and <literal>local</literal>."
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:234(emphasis)
msgid "size=<placeholder-1/>"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:236(para)
msgid "The size of the volume that is created."
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:241(emphasis)
msgid "shutdown={preserve|remove}"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:243(para)
msgid "What to do with the volume when the instance is deleted. <literal>preserve</literal> does not delete the volume. <literal>remove</literal> deletes the volume."
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:251(emphasis)
msgid "bootindex=<placeholder-1/>"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:253(para)
msgid "Orders the boot disks. Use <literal>0</literal> to boot from this volume."
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:261(para)
msgid "<replaceable>NAME</replaceable>. The name for the server."
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:267(para)
msgid "Create a bootable volume from an image, before the instance boots. The volume is not deleted when the instance is terminated:"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:308(para)
msgid "List volumes to see the bootable volume and its attached <literal>myInstanceFromVolume</literal> instance:"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:321(title)
msgid "Attach swap or ephemeral disk to an instance"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:322(para)
msgid "Use the nova <placeholder-1/><parameter>--swap</parameter> parameter to attach a swap disk on boot or the nova <placeholder-2/><parameter>--ephemeral</parameter> parameter to attach an ephemeral disk on boot. When you terminate the instance, both disks are deleted."
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:328(para)
msgid "Boot an instance with a 512MB swap disk and 2GB ephemeral disk:"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:330(replaceable)
msgid "IMAGE_ID"
msgstr ""
#: ./doc/common/section_cli_nova_boot_from_volume.xml:332(para)
msgid "The flavor defines the maximum swap and ephemeral disk size. You cannot exceed these maximum values."
msgstr ""
#. When image changes, this message will be marked fuzzy or untranslated for you.
#. It doesn't matter what you translate it to: it's not used at all.
#: ./doc/common/section_dashboard_access.xml:89(None)
msgid "@@image: 'figures/dashboard-project-tab.png'; md5=5b192a3d34c9285dbacd875395b8e4cc"
msgstr ""
#. When image changes, this message will be marked fuzzy or untranslated for you.
#. It doesn't matter what you translate it to: it's not used at all.
#: ./doc/common/section_dashboard_access.xml:214(None)
msgid "@@image: 'figures/dashboard-admin-tab.png'; md5=039358c76c549d7d423da5b8aa826435"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:12(title)
msgid "Log in to the dashboard"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:13(para)
msgid "The dashboard is available on the node with the <literal>nova-dashboard</literal> server role."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:17(para)
msgid "Ask the cloud operator for the host name or public IP address from which you can access the dashboard, and for your user name and password."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:22(para)
msgid "Open a web browser that has JavaScript and cookies enabled."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:25(para)
msgid "To use the Virtual Network Computing (VNC) client for the dashboard, your browser must support HTML5 Canvas and HTML5 WebSockets. The VNC client is based on noVNC. For details, see <link href=\"https://github.com/kanaka/noVNC/blob/master/README.md\">noVNC: HTML5 VNC Client</link>. For a list of supported browsers, see <link href=\"https://github.com/kanaka/noVNC/wiki/Browser-support\">Browser support</link>."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:38(para)
msgid "In the address bar, enter the host name or IP address for the dashboard."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:40(replaceable)
msgid "ipAddressOrHostName"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:42(para)
msgid "If a certificate warning appears when you try to access the URL for the first time, a self-signed certificate is in use, which is not considered trustworthy by default. Verify the certificate or add an exception in the browser to bypass the warning."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:51(para)
msgid "On the <guilabel>Log In</guilabel> page, enter your user name and password, and click <guibutton>Sign In</guibutton>."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:54(para)
msgid "The top of the window displays your user name. You can also access <guilabel>Settings</guilabel> or sign out of the dashboard."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:61(para)
msgid "If you are logged in as an end user, the <link linkend=\"dashboard_project_tab\">Project</link> tab is displayed."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:65(para)
msgid "If you are logged in as an administrator, the <link linkend=\"dashboard_project_tab\">Project</link> tab and <link linkend=\"dashboard_admin_tab\">Admin</link> tab are displayed."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:57(para)
msgid "The visible tabs and functions in the dashboard depend on the access permissions, or <emphasis role=\"italic\">roles</emphasis>, of the user you are logged in as.<placeholder-1/>"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:75(title)
msgid "OpenStack dashboardProject tab"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:76(para)
msgid "Projects are organizational units in the cloud, and are also known as tenants or accounts. Each user is a member of one or more projects. Within a project, a user creates and manages instances."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:80(para)
msgid "From the <guilabel>Project</guilabel> tab, you can view and manage the resources in a selected project, including instances and images. You select the project from the <guilabel>CURRENT PROJECT</guilabel> list at the top of the tab."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:85(title)
msgid "Project tab"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:93(para)
msgid "From the <guilabel>Project</guilabel> tab, you can access the following tabs:"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:100(th) ./doc/common/section_dashboard_access.xml:170(th) ./doc/common/section_dashboard_access.xml:185(th) ./doc/common/section_dashboard_access.xml:192(th) ./doc/common/section_dashboard_access.xml:224(th) ./doc/common/section_dashboard_access.xml:350(th)
msgid "<placeholder-1/> tab"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:106(para)
msgid "View reports for the project."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:109(guilabel) ./doc/common/section_dashboard_access.xml:292(guilabel)
msgid "Instances"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:110(para)
msgid "View, launch, create a snapshot from, stop, pause, or reboot instances, or connect to them through VNC."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:114(guilabel) ./doc/common/section_dashboard_access.xml:119(guilabel) ./doc/common/section_dashboard_access.xml:299(guilabel)
msgid "Volumes"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:115(para) ./doc/common/section_dashboard_access.xml:141(para)
msgid "Use the following tabs to complete these tasks:"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:121(para)
msgid "View, create, edit, and delete volumes."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:125(guilabel)
msgid "Volume Snapshots"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:127(para)
msgid "View, create, edit, and delete volume snapshots."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:133(guilabel) ./doc/common/section_dashboard_access.xml:309(guilabel)
msgid "Images"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:134(para)
msgid "View images and instance snapshots created by project users, plus any images that are publicly available. Create, edit, and delete images, and launch instances from images and snapshots."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:140(guilabel)
msgid "Access &amp; Security"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:144(guilabel)
msgid "Security Groups"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:145(para)
msgid "View, create, edit, and delete security groups and security group rules."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:150(guilabel)
msgid "Key Pairs"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:151(para)
msgid "View, create, edit, import, and delete key pairs."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:156(guilabel)
msgid "Floating IPs"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:158(para)
msgid "Allocate an IP address to or release it from a project."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:163(guilabel)
msgid "API Access"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:164(para)
msgid "View API endpoints."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:170(guilabel)
msgid "Network"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:173(guilabel)
msgid "Network Topology"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:174(para)
msgid "View the network topology."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:177(guilabel) ./doc/common/section_dashboard_access.xml:314(guilabel)
msgid "Networks"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:178(para)
msgid "Create and manage public and private networks."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:181(guilabel) ./doc/common/section_dashboard_access.xml:318(guilabel)
msgid "Routers"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:182(para)
msgid "Create and manage subnets."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:185(guilabel)
msgid "Object Store"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:188(guilabel) ./doc/common/section_dashboard_access.xml:195(guilabel)
msgid "Containers"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:189(para)
msgid "Create and manage containers and objects."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:196(para)
msgid "Use the REST API to orchestrate multiple composite cloud applications."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:203(title)
msgid "OpenStack dashboardAdmin tab"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:204(para)
msgid "Administrative users can use the <guilabel>Admin</guilabel> tab to view usage and to manage instances, volumes, flavors, images, projects, users, services, and quotas."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:209(title)
msgid "Admin tab"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:218(para)
msgid "Access the following categories to complete these tasks:"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:224(guilabel)
msgid "System Panel"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:230(para)
msgid "View basic reports."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:233(guilabel)
msgid "Resource Usage"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:234(para)
msgid "Use the following tabs to view the following usages:"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:269(guilabel)
msgid "Daily Report"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:271(para)
msgid "View the daily report."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:275(guilabel)
msgid "Stats"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:277(para)
msgid "View the statistics of all resources."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:283(guilabel)
msgid "Hypervisors"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:284(para)
msgid "View the hypervisor summary."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:287(guilabel)
msgid "Host Aggregates"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:288(para)
msgid "View, create, and edit host aggregates. View the list of availability zones."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:293(para)
msgid "View, pause, resume, suspend, migrate, soft or hard reboot, and delete running instances that belong to users of some, but not all, projects. Also, view the log for an instance or access an instance through VNC."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:300(para)
msgid "View, create, edit, and delete volumes and volume types."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:305(para)
msgid "View, create, edit, view extra specifications for, and delete flavors. A flavor is size of an instance."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:310(para)
msgid "View, create, edit properties for, and delete custom images."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:315(para)
msgid "View, create, edit properties for, and delete networks."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:319(para)
msgid "View, create, edit properties for, and delete routers."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:322(guilabel)
msgid "System Info"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:323(para)
msgid "Use the following tabs to view the service information:"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:326(guilabel)
msgid "Services"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:327(para)
msgid "View a list of the services."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:331(guilabel)
msgid "Compute Services"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:332(para)
msgid "View a list of all Compute services."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:336(guilabel)
msgid "Network Agents"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:337(para)
msgid "View the network agents."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:341(guilabel)
msgid "Default Quotas"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:342(para)
msgid "View default quota values. Quotas are hard-coded in OpenStack Compute and define the maximum allowable size and number of resources."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:350(guilabel)
msgid "Identity Panel"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:358(guilabel) ./doc/common/section_getstart_compute.xml:242(para)
msgid "Projects"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:359(para)
msgid "View, create, assign users to, remove users from, and delete projects."
msgstr ""
#: ./doc/common/section_dashboard_access.xml:363(guilabel)
msgid "Users"
msgstr ""
#: ./doc/common/section_dashboard_access.xml:364(para)
msgid "View, create, enable, disable, and delete users."
msgstr ""
#: ./doc/common/section_cli_nova_usage_statistics.xml:7(title)
msgid "Show usage statistics for hosts and instances"
msgstr ""
#: ./doc/common/section_cli_nova_usage_statistics.xml:8(para)
msgid "You can show basic statistics on resource usage for hosts and instances."
msgstr ""
#: ./doc/common/section_cli_nova_usage_statistics.xml:11(para)
msgid "For more sophisticated monitoring, see the <link href=\"https://launchpad.net/ceilometer\">ceilometer</link> project. You can also use tools, such as <link href=\"http://ganglia.info/\">Ganglia</link> or <link href=\"http://graphite.wikidot.com/\">Graphite</link>, to gather more detailed data."
msgstr ""
#: ./doc/common/section_cli_nova_usage_statistics.xml:21(title)
msgid "Show host usage statistics"
msgstr ""
#: ./doc/common/section_cli_nova_usage_statistics.xml:22(para)
msgid "The following examples show the host usage statistics for a host called <filename>devstack</filename>."
msgstr ""
#: ./doc/common/section_cli_nova_usage_statistics.xml:26(para)
msgid "List the hosts and the nova-related services that run on them:"
msgstr ""
#: ./doc/common/section_cli_nova_usage_statistics.xml:38(para)
msgid "Get a summary of resource usage of all of the instances running on the host:"
msgstr ""
#: ./doc/common/section_cli_nova_usage_statistics.xml:50(para)
msgid "The <literal>cpu</literal> column shows the sum of the virtual CPUs for instances running on the host."
msgstr ""
#: ./doc/common/section_cli_nova_usage_statistics.xml:52(para)
msgid "The <literal>memory_mb</literal> column shows the sum of the memory (in MB) allocated to the instances that run on the host."
msgstr ""
#: ./doc/common/section_cli_nova_usage_statistics.xml:55(para)
msgid "The <literal>disk_gb</literal> column shows the sum of the root and ephemeral disk sizes (in GB) of the instances that run on the host."
msgstr ""
#: ./doc/common/section_cli_nova_usage_statistics.xml:58(para)
msgid "The row that has the value <literal>used_now</literal> in the <literal>PROJECT</literal> column shows the sum of the resources allocated to the instances that run on the host, plus the resources allocated to the virtual machine of the host itself."
msgstr ""
#: ./doc/common/section_cli_nova_usage_statistics.xml:63(para)
msgid "The row that has the value <literal>used_max</literal> row in the <literal>PROJECT</literal> column shows the sum of the resources allocated to the instances that run on the host."
msgstr ""
#: ./doc/common/section_cli_nova_usage_statistics.xml:69(para)
msgid "These values are computed by using information about the flavors of the instances that run on the hosts. This command does not query the CPU usage, memory usage, or hard disk usage of the physical host."
msgstr ""
#: ./doc/common/section_cli_nova_usage_statistics.xml:76(title)
msgid "Show instance usage statistics"
msgstr ""
#: ./doc/common/section_cli_nova_usage_statistics.xml:78(para)
msgid "Get CPU, memory, I/O, and network statistics for an instance."
msgstr ""
#: ./doc/common/section_cli_nova_usage_statistics.xml:80(para)
msgid "List instances:"
msgstr ""
#: ./doc/common/section_cli_nova_usage_statistics.xml:88(para)
msgid "Get diagnostic statistics:"
msgstr ""
#: ./doc/common/section_cli_nova_usage_statistics.xml:109(para)
msgid "Get summary statistics for each tenant:"
msgstr ""
#: ./doc/common/section_cli_openrc.xml:8(title)
msgid "Set environment variables using the OpenStack RC file"
msgstr ""
#: ./doc/common/section_cli_openrc.xml:10(para)
msgid "To set the required environment variables for the OpenStack command-line clients, you must create an environment file called an OpenStack rc file, or <filename>openrc.sh</filename> file.<phrase audience=\"enduser\"> If your OpenStack installation provides it, you can download the file from the OpenStack dashboard as an administrative user or any other user.</phrase> This project-specific environment file contains the credentials that all OpenStack services use."
msgstr ""
#: ./doc/common/section_cli_openrc.xml:19(para)
msgid "When you source the file, environment variables are set for your current shell. The variables enable the OpenStack client commands to communicate with the OpenStack services that run in the cloud."
msgstr ""
#: ./doc/common/section_cli_openrc.xml:24(para)
msgid "Defining environment variables using an environment file is not a common practice on Microsoft Windows. Environment variables are usually defined in the <guilabel>Advanced</guilabel> tab of the System Properties dialog box."
msgstr ""
#: ./doc/common/section_cli_openrc.xml:30(title)
msgid "Download and source the OpenStack RC file"
msgstr ""
#: ./doc/common/section_cli_openrc.xml:33(para)
msgid "Log in to the OpenStack dashboard, choose the project for which you want to download the OpenStack RC file, and click <guibutton>Access &amp; Security</guibutton>."
msgstr ""
#: ./doc/common/section_cli_openrc.xml:39(para)
msgid "On the API Access tab, click <guibutton>Download OpenStack RC File</guibutton> and save the file. The filename will be of the form <filename><replaceable>PROJECT</replaceable>-openrc.sh</filename> where <replaceable>PROJECT</replaceable> is the name of the project for which you downloaded the file."
msgstr ""
#: ./doc/common/section_cli_openrc.xml:48(para)
msgid "Copy the <filename><replaceable>PROJECT</replaceable>-openrc.sh</filename> file to the computer from which you want to run OpenStack commands."
msgstr ""
#: ./doc/common/section_cli_openrc.xml:52(para)
msgid "For example, copy the file to the computer from which you want to upload an image with a <placeholder-1/> client command."
msgstr ""
#: ./doc/common/section_cli_openrc.xml:58(para)
msgid "On any shell from which you want to run OpenStack commands, source the <filename><replaceable>PROJECT</replaceable>-openrc.sh</filename> file for the respective project."
msgstr ""
#: ./doc/common/section_cli_openrc.xml:62(para)
msgid "In the following example, the <filename>demo-openrc.sh</filename> file is sourced for the demo project:"
msgstr ""
#: ./doc/common/section_cli_openrc.xml:68(para)
msgid "When you are prompted for an OpenStack password, enter the password for the user who downloaded the <filename><replaceable>PROJECT</replaceable>-openrc.sh</filename> file."
msgstr ""
#: ./doc/common/section_cli_openrc.xml:76(title)
msgid "Create and source the OpenStack RC file"
msgstr ""
#: ./doc/common/section_cli_openrc.xml:77(para)
msgid "Alternatively, you can create the <filename><replaceable>PROJECT</replaceable>-openrc.sh</filename> file from scratch, if for some reason you cannot download the file from the dashboard."
msgstr ""
#: ./doc/common/section_cli_openrc.xml:83(para)
msgid "In a text editor, create a file named <filename><replaceable>PROJECT</replaceable>-openrc.sh</filename> file and add the following authentication information:"
msgstr ""
#: ./doc/common/section_cli_openrc.xml:87(replaceable)
msgid "username"
msgstr ""
#: ./doc/common/section_cli_openrc.xml:88(replaceable)
msgid "password"
msgstr ""
#: ./doc/common/section_cli_openrc.xml:89(replaceable)
msgid "projectName"
msgstr ""
#: ./doc/common/section_cli_openrc.xml:90(replaceable)
msgid "https://identityHost:portNumber/v2.0"
msgstr ""
#: ./doc/common/section_cli_openrc.xml:92(replaceable)
msgid "tenantIDString"
msgstr ""
#: ./doc/common/section_cli_openrc.xml:93(replaceable)
msgid "regionName"
msgstr ""
#: ./doc/common/section_cli_openrc.xml:96(para)
msgid "On any shell from which you want to run OpenStack commands, source the <filename><replaceable>PROJECT</replaceable>-openrc.sh</filename> file for the respective project. In this example, you source the <filename>admin-openrc.sh</filename> file for the <replaceable>admin</replaceable> project:"
msgstr ""
#: ./doc/common/section_cli_openrc.xml:108(para)
msgid "You are not prompted for the password with this method. The password lives in clear text format in the <filename><replaceable>PROJECT</replaceable>-openrc.sh</filename> file. Restrict the permissions on this file to avoid security problems. You can also remove the <literal>OS_PASSWORD</literal> variable from the file, and use the <parameter>--password</parameter> parameter with OpenStack client commands instead."
msgstr ""
#: ./doc/common/section_cli_openrc.xml:120(title)
msgid "Override environment variable values"
msgstr ""
#: ./doc/common/section_cli_openrc.xml:121(para)
msgid "When you run OpenStack client commands, you can override some environment variable settings by using the options that are listed at the end of the <placeholder-1/> output of the various client commands. For example, you can override the <option>OS_PASSWORD</option> setting in the <filename><replaceable>PROJECT</replaceable>-openrc.sh</filename> file by specifying a password on a <placeholder-2/> command, as follows:"
msgstr ""
#: ./doc/common/section_cli_openrc.xml:129(replaceable)
msgid "PASSWORD"
msgstr ""
#: ./doc/common/section_cli_openrc.xml:130(para)
msgid "Where <replaceable>PASSWORD</replaceable> is your password."
msgstr ""
#: ./doc/common/section_keystone-keyring-support.xml:7(title)
msgid "Keyring support"
msgstr ""
#: ./doc/common/section_keystone-keyring-support.xml:8(para)
msgid "Keyring is a password management system available in OpenStack. You can install it using the following command:"
msgstr ""
#: ./doc/common/section_keystone-keyring-support.xml:12(para)
msgid "Keyring is used only if <parameter>--os-use-keyring</parameter> is specified or if the environment variable <parameter>OS_USE_KEYRING=true</parameter> is defined."
msgstr ""
#: ./doc/common/section_keystone-keyring-support.xml:16(para)
msgid "A user specifies their username and password credentials to interact with OpenStack, using any client command. These credentials can be specified using various mechanisms, namely, the environment variable, or command line argument. It is not safe to specify the password using either of these methods."
msgstr ""
#: ./doc/common/section_keystone-keyring-support.xml:20(para)
msgid "For example, when you specify your password using the command-line client with the <parameter>--os-password</parameter> argument, anyone with access to your computer can view it in plain text with the <parameter>ps</parameter> field."
msgstr ""
#: ./doc/common/section_keystone-keyring-support.xml:24(para)
msgid "To avoid storing the password in plain text, you can prompt for the OpenStack password interactively. Then, the keyring can store the password and the user can safely retrieve it from their keyring. The encrypted password is stored in the <filename>~/.openstack-keyring.cfg</filename> file."
msgstr ""
#. When image changes, this message will be marked fuzzy or untranslated for you.
#. It doesn't matter what you translate it to: it's not used at all.
#: ./doc/common/section_objectstorage-components.xml:43(None)
msgid "@@image: '../common/figures/objectstorage-buildingblocks.png'; md5=ed79466c8464513dbeaf1e0954280e5e"
msgstr ""
#. When image changes, this message will be marked fuzzy or untranslated for you.
#. It doesn't matter what you translate it to: it's not used at all.
#: ./doc/common/section_objectstorage-components.xml:86(None)
msgid "@@image: '../common/figures/objectstorage-ring.png'; md5=a94e26734cec6980c3684d9e824eac2d"
msgstr ""
#. When image changes, this message will be marked fuzzy or untranslated for you.
#. It doesn't matter what you translate it to: it's not used at all.
#: ./doc/common/section_objectstorage-components.xml:126(None)
msgid "@@image: '../common/figures/objectstorage-zones.png'; md5=1b1dc0abe6ea0c516f22ce399deb75ed"
msgstr ""
#. When image changes, this message will be marked fuzzy or untranslated for you.
#. It doesn't matter what you translate it to: it's not used at all.
#: ./doc/common/section_objectstorage-components.xml:144(None)
msgid "@@image: '../common/figures/objectstorage-accountscontainers.png'; md5=4b15e5a202db5bde53c9b369058aeab8"
msgstr ""
#. When image changes, this message will be marked fuzzy or untranslated for you.
#. It doesn't matter what you translate it to: it's not used at all.
#: ./doc/common/section_objectstorage-components.xml:169(None)
msgid "@@image: '../common/figures/objectstorage-partitions.png'; md5=2c161c2e92d6fefc8140ec86e79e9492"
msgstr ""
#. When image changes, this message will be marked fuzzy or untranslated for you.
#. It doesn't matter what you translate it to: it's not used at all.
#: ./doc/common/section_objectstorage-components.xml:195(None)
msgid "@@image: '../common/figures/objectstorage-replication.png'; md5=9d55594d7f445764569ab04d8d4373b2"
msgstr ""
#. When image changes, this message will be marked fuzzy or untranslated for you.
#. It doesn't matter what you translate it to: it's not used at all.
#: ./doc/common/section_objectstorage-components.xml:222(None)
msgid "@@image: '../common/figures/objectstorage-usecase.png'; md5=07480e7175b383171173775fb96d70d7"
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:7(title)
msgid "Components"
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:8(para)
msgid "The components that enable Object Storage to deliver high availability, high durability, and high concurrency are:"
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:12(para)
msgid "<emphasis role=\"bold\">Proxy servers.</emphasis> Handle all of the incoming API requests."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:16(para)
msgid "<emphasis role=\"bold\">Rings.</emphasis> Map logical names of data to locations on particular disks."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:20(para)
msgid "<emphasis role=\"bold\">Zones.</emphasis> Isolate data from other zones. A failure in one zone doesnt impact the rest of the cluster because data is replicated across zones."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:25(para)
msgid "<emphasis role=\"bold\">Accounts and containers.</emphasis> Each account and container are individual databases that are distributed across the cluster. An account database contains the list of containers in that account. A container database contains the list of objects in that container."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:31(para)
msgid "<emphasis role=\"bold\">Objects.</emphasis> The data itself."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:34(para)
msgid "<emphasis role=\"bold\">Partitions.</emphasis> A partition stores objects, account databases, and container databases and helps manage locations where data lives in the cluster."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:40(title)
msgid "Object Storage building blocks"
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:48(title)
msgid "Proxy servers"
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:49(para)
msgid "Proxy servers are the public face of Object Storage and handle all of the incoming API requests. Once a proxy server receives a request, it determines the storage node based on the object's URL, for example, https://swift.example.com/v1/account/container/object. Proxy servers also coordinate responses, handle failures, and coordinate timestamps."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:54(para)
msgid "Proxy servers use a shared-nothing architecture and can be scaled as needed based on projected workloads. A minimum of two proxy servers should be deployed for redundancy. If one proxy server fails, the others take over."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:59(title)
msgid "Rings"
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:60(para)
msgid "A ring represents a mapping between the names of entities stored on disk and their physical locations. There are separate rings for accounts, containers, and objects. When other components need to perform any operation on an object, container, or account, they need to interact with the appropriate ring to determine their location in the cluster."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:65(para)
msgid "The ring maintains this mapping using zones, devices, partitions, and replicas. Each partition in the ring is replicated, by default, three times across the cluster, and partition locations are stored in the mapping maintained by the ring. The ring is also responsible for determining which devices are used for handoff in failure scenarios."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:70(para)
msgid "Data can be isolated into zones in the ring. Each partition replica is guaranteed to reside in a different zone. A zone could represent a drive, a server, a cabinet, a switch, or even a data center."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:73(para)
msgid "The partitions of the ring are equally divided among all of the devices in the Object Storage installation. When partitions need to be moved around (for example, if a device is added to the cluster), the ring ensures that a minimum number of partitions are moved at a time, and only one replica of a partition is moved at a time."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:77(para)
msgid "You can use weights to balance the distribution of partitions on drives across the cluster. This can be useful, for example, when differently sized drives are used in a cluster."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:80(para)
msgid "The ring is used by the proxy server and several background processes (like replication)."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:83(title)
msgid "The <emphasis role=\"bold\">ring</emphasis>"
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:90(para)
msgid "These rings are externally managed, in that the server processes themselves do not modify the rings, they are instead given new rings modified by other tools."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:92(para)
msgid "The ring uses a configurable number of bits from an MD5 hash for a path as a partition index that designates a device. The number of bits kept from the hash is known as the partition power, and 2 to the partition power indicates the partition count. Partitioning the full MD5 hash ring allows other parts of the cluster to work in batches of items at once which ends up either more efficient or at least less complex than working with each item separately or the entire cluster all at once."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:101(para)
msgid "Another configurable value is the replica count, which indicates how many of the partition-device assignments make up a single ring. For a given partition number, each replicas device will not be in the same zone as any other replica's device. Zones can be used to group devices based on physical locations, power separations, network separations, or any other attribute that would improve the availability of multiple replicas at the same time."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:109(title) ./doc/common/section_objectstorage-components.xml:123(title)
msgid "Zones"
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:110(para)
msgid "Object Storage allows configuring zones in order to isolate failure boundaries. Each data replica resides in a separate zone, if possible. At the smallest level, a zone could be a single drive or a grouping of a few drives. If there were five object storage servers, then each server would represent its own zone. Larger deployments would have an entire rack (or multiple racks) of object servers, each representing a zone. The goal of zones is to allow the cluster to tolerate significant outages of storage servers without losing all replicas of the data."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:117(para)
msgid "As mentioned earlier, everything in Object Storage is stored, by default, three times. Swift will place each replica \"as-uniquely-as-possible\" to ensure both high availability and high durability. This means that when chosing a replica location, Object Storage chooses a server in an unused zone before an unused server in a zone that already has a replica of the data."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:130(para)
msgid "When a disk fails, replica data is automatically distributed to the other zones to ensure there are three copies of the data."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:134(title) ./doc/common/section_objectstorage-components.xml:141(title)
msgid "Accounts and containers"
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:135(para)
msgid "Each account and container is an individual SQLite database that is distributed across the cluster. An account database contains the list of containers in that account. A container database contains the list of objects in that container."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:148(para)
msgid "To keep track of object data locations, each account in the system has a database that references all of its containers, and each container database references each object."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:153(title) ./doc/common/section_objectstorage-components.xml:166(title)
msgid "Partitions"
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:154(para)
msgid "A partition is a collection of stored data, including account databases, container databases, and objects. Partitions are core to the replication system."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:156(para)
msgid "Think of a partition as a bin moving throughout a fulfillment center warehouse. Individual orders get thrown into the bin. The system treats that bin as a cohesive entity as it moves throughout the system. A bin is easier to deal with than many little things. It makes for fewer moving parts throughout the system."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:160(para)
msgid "System replicators and object uploads/downloads operate on partitions. As the system scales up, its behavior continues to be predictable because the number of partitions is a fixed number."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:163(para)
msgid "Implementing a partition is conceptually simple, a partition is just a directory sitting on a disk with a corresponding hash table of what it contains."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:175(title)
msgid "Replicators"
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:176(para)
msgid "In order to ensure that there are three copies of the data everywhere, replicators continuously examine each partition. For each local partition, the replicator compares it against the replicated copies in the other zones to see if there are any differences."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:180(para)
msgid "The replicator knows if replication needs to take place by examining hashes. A hash file is created for each partition, which contains hashes of each directory in the partition. Each of the three hash files is compared. For a given partition, the hash files for each of the partition's copies are compared. If the hashes are different, then it is time to replicate, and the directory that needs to be replicated is copied over."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:186(para)
msgid "This is where partitions come in handy. With fewer things in the system, larger chunks of data are transferred around (rather than lots of little TCP connections, which is inefficient) and there is a consistent number of hashes to compare."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:189(para)
msgid "The cluster eventually has a consistent behavior where the newest data has a priority."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:199(para)
msgid "If a zone goes down, one of the nodes containing a replica notices and proactively copies data to a handoff location."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:203(title)
msgid "Use cases"
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:204(para)
msgid "The following sections show use cases for object uploads and downloads and introduce the components."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:206(title)
msgid "Upload"
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:207(para)
msgid "A client uses the REST API to make a HTTP request to PUT an object into an existing container. The cluster receives the request. First, the system must figure out where the data is going to go. To do this, the account name, container name, and object name are all used to determine the partition where this object should live."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:211(para)
msgid "Then a lookup in the ring figures out which storage nodes contain the partitions in question."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:213(para)
msgid "The data is then sent to each storage node where it is placed in the appropriate partition. At least two of the three writes must be successful before the client is notified that the upload was successful."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:216(para)
msgid "Next, the container database is updated asynchronously to reflect that there is a new object in it."
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:219(title)
msgid "Object Storage in use"
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:228(title)
msgid "Download"
msgstr ""
#: ./doc/common/section_objectstorage-components.xml:229(para)
msgid "A request comes in for an account/container/object. Using the same consistent hashing, the partition name is generated. A lookup in the ring reveals which storage nodes contain that partition. A request is made to one of the storage nodes to fetch the object and, if that fails, requests are made to the other nodes."
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:12(title)
msgid "Manage volumes"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:13(para)
msgid "A volume is a detachable block storage device, similar to a USB hard drive. You can attach a volume to only one instance. To create and manage volumes, you use a combination of <placeholder-1/> and <placeholder-2/> client commands."
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:17(title)
msgid "Migrate a volume"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:18(para)
msgid "As an administrator, you can migrate a volume with its data from one location to another in a manner that is transparent to users and workloads. You can migrate only detached volumes with no snapshots."
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:22(para)
msgid "Possible use cases for data migration include:"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:25(para)
msgid "Bring down a physical storage device for maintenance without disrupting workloads."
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:29(para)
msgid "Modify the properties of a volume."
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:32(para)
msgid "Free up space in a thinly-provisioned back end."
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:36(para)
msgid "Migrate a volume with the <placeholder-1/> command, as shown in the following example:"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:37(replaceable) ./doc/common/section_cli_cinder_manage_volumes.xml:275(replaceable)
msgid "volumeID"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:37(replaceable)
msgid "destinationHost"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:37(replaceable)
msgid "True|False"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:38(para)
msgid "In this example, <literal>--force-host-copy True</literal> forces the generic host-based migration mechanism and bypasses any driver optimizations."
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:41(para)
msgid "If the volume is in use or has snapshots, the specified host destination cannot accept the volume. If the user is not an administrator, the migration fails."
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:46(title)
msgid "Create a volume"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:47(para)
msgid "This example creates a my-new-volume volume based on an image."
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:50(para)
msgid "List images, and note the ID of the image that you want to use for your volume:"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:63(para)
msgid "List the availability zones, and note the ID of the availability zone in which you want to create your volume:"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:82(para)
msgid "Create a volume with 8GB of space, and specify the availability zone and image:"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:104(para)
msgid "To verify that your volume was created successfully, list the available volumes:"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:113(para)
msgid "If your volume was created successfully, its status is <literal>available</literal>. If its status is <literal>error</literal>, you might have exceeded your quota."
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:121(title)
msgid "Attach a volume to an instance"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:124(para)
msgid "Attach your volume to a server, specifying the server ID and the volume ID:"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:134(para)
msgid "Note the ID of your volume."
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:137(para)
msgid "Show information for your volume:"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:139(para)
msgid "The output shows that the volume is attached to the server with ID <literal>84c6e57d-a6b1-44b6-81eb-fcb36afd31b5</literal>, is in the nova availability zone, and is bootable."
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:166(title)
msgid "Resize a volume"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:169(para)
msgid "To resize your volume, you must first detach it from the server."
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:171(para)
msgid "To detach the volume from your server, pass the server ID and volume ID to the following command:"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:173(para) ./doc/common/section_cli_cinder_manage_volumes.xml:192(para)
msgid "The <placeholder-1/> command does not return any output."
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:185(para)
msgid "Note that the volume is now available."
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:188(para)
msgid "Resize the volume by passing the volume ID and the new size (a value greater than the old one) as parameters:"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:198(title)
msgid "Delete a volume"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:201(para)
msgid "To delete your volume, you must first detach it from the server."
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:203(para)
msgid "To detach the volume from your server and check for the list of existing volumes, see steps 1 and 2 in <xref linkend=\"cli_extend_volumes\"/>."
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:207(para)
msgid "Delete the volume using either the volume name or ID:"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:209(para)
msgid "The delete command does not return any output."
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:213(para)
msgid "List the volumes again, and note that the status of your volume is <literal>deleting</literal>:"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:223(para)
msgid "When the volume is fully deleted, it disappears from the list of volumes:"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:235(title)
msgid "Transfer a volume"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:236(para)
msgid "You can transfer a volume from one owner to another by using the <placeholder-1/> commands. The volume donor, or original owner, creates a transfer request and sends the created transfer ID and authorization key to the volume recipient. The volume recipient, or new owner, accepts the transfer by using the ID and key."
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:244(para)
msgid "The procedure for volume transfer is intended for tenants (both the volume donor and recipient) within the same cloud."
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:246(para)
msgid "Use cases include:"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:249(para)
msgid "Create a custom bootable volume or a volume with a large data set and transfer it to a customer."
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:252(para)
msgid "For bulk import of data to the cloud, the data ingress system creates a new Block Storage volume, copies data from the physical device, and transfers device ownership to the end user."
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:259(title)
msgid "Create a volume transfer request"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:262(para)
msgid "While logged in as the volume donor, list the available volumes:"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:272(para)
msgid "As the volume donor, request a volume transfer authorization code for a specific volume:"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:276(para)
msgid "The volume must be in an <literal>available</literal> state or the request will be denied. If the transfer request is valid in the database (that is, it has not expired or been deleted), the volume is placed in an <literal>awaiting transfer</literal> state. For example:"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:280(para)
msgid "The output shows the volume transfer ID in the <literal>id</literal> row and the authorization key."
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:292(para)
msgid "Optionally, you can specify a name for the transfer by using the <code>--display-name <replaceable>displayName</replaceable></code> parameter."
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:300(para)
msgid "Send the volume transfer ID and authorization key to the new owner (for example, by email)."
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:305(para)
msgid "View pending transfers:"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:314(para)
msgid "After the volume recipient, or new owner, accepts the transfer, you can see that the transfer is no longer available:"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:326(title)
msgid "Accept a volume transfer request"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:329(para)
msgid "As the volume recipient, you must first obtain the transfer ID and authorization key from the original owner."
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:334(para)
msgid "Display the transfer request details by using the ID:"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:335(replaceable) ./doc/common/section_cli_cinder_manage_volumes.xml:349(replaceable) ./doc/common/section_cli_cinder_manage_volumes.xml:393(replaceable)
msgid "transferID"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:348(para)
msgid "Accept the request:"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:349(replaceable)
msgid "authKey"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:360(para)
msgid "If you do not have a sufficient quota for the transfer, the transfer is refused."
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:368(title)
msgid "Delete a volume transfer"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:372(para)
msgid "List available volumes and their statuses:"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:383(para)
msgid "Find the matching transfer ID:"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:392(para)
msgid "Delete the volume:"
msgstr ""
#: ./doc/common/section_cli_cinder_manage_volumes.xml:398(para)
msgid "Verify that transfer list is now empty and that the volume is again available for transfer:"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:7(title)
msgid "OpenStack Compute"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:8(para)
msgid "Use OpenStack Compute to host and manage cloud computing systems. OpenStack Compute is a major part of an Infrastructure-as-a-Service (IaaS) system. The main modules are implemented in Python."
msgstr ""
#: ./doc/common/section_getstart_compute.xml:12(para)
msgid "OpenStack Compute interacts with OpenStack Identity for authentication, OpenStack Image Service for disk and server images, and OpenStack dashboard for the user and administrative interface. Image access is limited by projects, and by users; quotas are limited per project (the number of instances, for example). OpenStack Compute can scale horizontally on standard hardware, and download images to launch instances."
msgstr ""
#: ./doc/common/section_getstart_compute.xml:19(para)
msgid "OpenStack Compute consists of the following areas and their components:"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:22(title)
msgid "API"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:24(systemitem)
msgid "nova-api service"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:27(para)
msgid "Accepts and responds to end user compute API calls. The service supports the OpenStack Compute API, the Amazon EC2 API, and a special Admin API for privileged users to perform administrative actions. It enforces some policies and initiates most orchestration activities, such as running an instance."
msgstr ""
#: ./doc/common/section_getstart_compute.xml:36(term)
msgid "<systemitem class=\"service\">nova-api-metadata</systemitem> service"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:39(para)
msgid "Accepts metadata requests from instances. The <systemitem class=\"service\">nova-api-metadata</systemitem> service is generally used when you run in multi-host mode with <systemitem class=\"service\">nova-network</systemitem> installations. For details, see <link href=\"http://docs.openstack.org/admin-guide-cloud/content/section_metadata-service.html\">Metadata service</link> in the <citetitle>OpenStack Cloud Administrator Guide</citetitle>."
msgstr ""
#: ./doc/common/section_getstart_compute.xml:47(para)
msgid "On Debian systems, it is included in the <systemitem class=\"service\">nova-api</systemitem> package, and can be selected through <package>debconf</package>."
msgstr ""
#: ./doc/common/section_getstart_compute.xml:54(title)
msgid "Compute core"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:56(term)
msgid "<systemitem class=\"service\">nova-compute</systemitem> service"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:59(para)
msgid "A worker daemon that creates and terminates virtual machine instances through hypervisor APIs. For example:"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:64(para)
msgid "XenAPI for XenServer/XCP"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:67(para)
msgid "libvirt for KVM or QEMU"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:70(para)
msgid "VMwareAPI for VMware"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:73(para)
msgid "Processing is fairly complex. Basically, the daemon accepts actions from the queue and performs a series of system commands such as launching a KVM instance and updating its state in the database."
msgstr ""
#: ./doc/common/section_getstart_compute.xml:80(term)
msgid "<systemitem class=\"service\">nova-scheduler</systemitem> service"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:83(para)
msgid "Takes a virtual machine instance request from the queue and determines on which compute server host it runs."
msgstr ""
#: ./doc/common/section_getstart_compute.xml:88(term)
msgid "<systemitem class=\"service\">nova-conductor</systemitem> module"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:91(para)
msgid "Mediates interactions between the <systemitem class=\"service\">nova-compute</systemitem> service and the database. It eliminates direct accesses to the cloud database made by the <systemitem class=\"service\">nova-compute</systemitem> service. The <systemitem class=\"service\">nova-conductor</systemitem> module scales horizontally. However, do not deploy it on nodes where the <systemitem class=\"service\">nova-compute</systemitem> service runs. For more information, see <link href=\"http://russellbryantnet.wordpress.com/2012/11/19/a-new-nova-service-nova-conductor/\">A new Nova service: nova-conductor</link>."
msgstr ""
#: ./doc/common/section_getstart_compute.xml:106(title)
msgid "Networking for VMs"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:108(term)
msgid "<systemitem class=\"service\">nova-network</systemitem> worker daemon"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:111(para)
msgid "Similar to the <systemitem class=\"service\">nova-compute</systemitem> service, accepts networking tasks from the queue and manipulates the network. Performs tasks such as setting up bridging interfaces or changing IPtables rules."
msgstr ""
#: ./doc/common/section_getstart_compute.xml:121(title)
msgid "Console interface"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:123(term)
msgid "<systemitem class=\"service\">nova-consoleauth</systemitem> daemon"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:126(para)
msgid "Authorizes tokens for users that console proxies provide. See <systemitem class=\"service\">nova-novncproxy</systemitem> and <systemitem class=\"service\">nova-xvpnvcproxy</systemitem>. This service must be running for console proxies to work. You can run proxies of either type against a single <systemitem class=\"service\">nova-consoleauth</systemitem> service in a cluster configuration. For information, see <link href=\"http://docs.openstack.org/trunk/config-reference/content/about-nova-consoleauth.html\">About nova-consoleauth</link>."
msgstr ""
#: ./doc/common/section_getstart_compute.xml:139(term)
msgid "<systemitem class=\"service\">nova-novncproxy</systemitem> daemon"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:142(para)
msgid "Provides a proxy for accessing running instances through a VNC connection. Supports browser-based novnc clients."
msgstr ""
#: ./doc/common/section_getstart_compute.xml:148(term)
msgid "<systemitem class=\"service\">nova-xvpnvncproxy</systemitem> daemon"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:151(para)
msgid "Provides a proxy for accessing running instances through a VNC connection. Supports an OpenStack-specific Java client."
msgstr ""
#: ./doc/common/section_getstart_compute.xml:157(term)
msgid "<systemitem class=\"service\">nova-cert</systemitem> daemon"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:160(para)
msgid "x509 certificates."
msgstr ""
#: ./doc/common/section_getstart_compute.xml:164(para)
msgid "In Debian, a unique <package>nova-consoleproxy</package> package provides the <package>nova-novncproxy</package>, <package>nova-spicehtml5proxy</package>, and <package>nova-xvpvncproxy</package> packages. To select packages, edit the <filename>/etc/default/nova-consoleproxy</filename> file or use the <package>debconf</package> interface. You can also manually edit the <filename>/etc/default/nova-consoleproxy</filename> file, and stop and start the console daemons."
msgstr ""
#: ./doc/common/section_getstart_compute.xml:175(title)
msgid "Image management (EC2 scenario)"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:177(term)
msgid "<systemitem class=\"service\">nova-objectstore</systemitem> daemon"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:180(para)
msgid "An S3 interface for registering images with the OpenStack Image Service. Used primarily for installations that must support euca2ools. The euca2ools tools talk to <systemitem class=\"service\">nova-objectstore</systemitem> in <emphasis role=\"italic\">S3 language</emphasis>, and <systemitem class=\"service\">nova-objectstore</systemitem> translates S3 requests into Image Service requests."
msgstr ""
#: ./doc/common/section_getstart_compute.xml:190(term)
msgid "euca2ools client"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:192(para)
msgid "A set of command-line interpreter commands for managing cloud resources. Although it is not an OpenStack module, you can configure <systemitem class=\"service\">nova-api</systemitem> to support this EC2 interface. For more information, see the <link href=\"https://www.eucalyptus.com/docs/eucalyptus/3.4/index.html\">Eucalyptus 3.4 Documentation</link>."
msgstr ""
#: ./doc/common/section_getstart_compute.xml:203(title)
msgid "Command-line clients and other interfaces"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:205(term)
msgid "nova client"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:207(para)
msgid "Enables users to submit commands as a tenant administrator or end user."
msgstr ""
#: ./doc/common/section_getstart_compute.xml:213(title)
msgid "Other components"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:215(term)
msgid "The queue"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:217(para)
msgid "A central hub for passing messages between daemons. Usually implemented with <link href=\"http://www.rabbitmq.com/\">RabbitMQ</link>, but can be implemented with an AMQP message queue, such as <link href=\"http://qpid.apache.org/\">Apache Qpid</link> or <link href=\"http://www.zeromq.org/\">Zero MQ</link>."
msgstr ""
#: ./doc/common/section_getstart_compute.xml:227(term)
msgid "SQL database"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:229(para)
msgid "Stores most build-time and run-time states for a cloud infrastructure, including:"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:233(para)
msgid "Available instance types"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:236(para)
msgid "Instances in use"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:239(para)
msgid "Available networks"
msgstr ""
#: ./doc/common/section_getstart_compute.xml:245(para)
msgid "Theoretically, OpenStack Compute can support any database that SQL-Alchemy supports. Common databases are SQLite3 for test and development work, MySQL, and PostgreSQL."
msgstr ""
#: ./doc/common/section_cli_nova_manage_images.xml:4(title)
msgid "Create an image (nova)"
msgstr ""
#: ./doc/common/section_cli_nova_manage_images.xml:5(para)
msgid "You can use the <placeholder-1/> client to take a snapshot of a running instance to create an image."
msgstr ""
#: ./doc/common/section_cli_nova_manage_images.xml:7(para)
msgid "To minimize the potential for data loss and ensure that you create an accurate image, you should shut down the instance before you take a snapshot."
msgstr ""
#: ./doc/common/section_cli_nova_manage_images.xml:12(para)
msgid "For more information, see <link href=\"http://docs.openstack.org/openstack-ops/content/snapshots.html\">Taking Snapshots</link> in the <citetitle>OpenStack Operations Guide</citetitle>."
msgstr ""
#: ./doc/common/section_cli_nova_manage_images.xml:18(para)
msgid "List instances to get the server name:"
msgstr ""
#: ./doc/common/section_cli_nova_manage_images.xml:25(para)
msgid "In this example, the instance is named <literal>myCirrosServer</literal>."
msgstr ""
#: ./doc/common/section_cli_nova_manage_images.xml:28(para)
msgid "Use this instance to create a snapshot:"
msgstr ""
#: ./doc/common/section_cli_nova_manage_images.xml:30(para)
msgid "The command creates a snapshot and automatically uploads the image to your repository."
msgstr ""
#: ./doc/common/section_cli_nova_manage_images.xml:33(para)
msgid "For snapshots that you create from an instance that was booted from a volume:"
msgstr ""
#: ./doc/common/section_cli_nova_manage_images.xml:37(para)
msgid "The snapshot is based on the volume that is attached to the instance through the Block Storage service."
msgstr ""
#: ./doc/common/section_cli_nova_manage_images.xml:41(para)
msgid "No data is uploaded to the Image Service."
msgstr ""
#: ./doc/common/section_cli_nova_manage_images.xml:44(para)
msgid "You can find information about the snapshot in the properties of the image."
msgstr ""
#: ./doc/common/section_cli_nova_manage_images.xml:91(para)
msgid "To launch an instance from your image, include the image ID and flavor ID, as in the following example:"
msgstr ""
#: ./doc/common/section_keystone-concepts-group-management.xml:7(title)
msgid "Groups"
msgstr ""
#: ./doc/common/section_keystone-concepts-group-management.xml:8(para)
msgid "A group is a collection of users. Administrators can create groups and add users to them. Then, rather than assign a role to each user individually, assign a role to the group. Every group is in a domain. Groups were introduced with the Identity API v3."
msgstr ""
#. TODO: eventually remove the last sentence, when v3 is
#. commonplace
#: ./doc/common/section_keystone-concepts-group-management.xml:15(para)
msgid "Identity API V3 provides the following group-related operations:"
msgstr ""
#: ./doc/common/section_keystone-concepts-group-management.xml:19(para)
msgid "Create a group"
msgstr ""
#: ./doc/common/section_keystone-concepts-group-management.xml:22(para)
msgid "Delete a group"
msgstr ""
#: ./doc/common/section_keystone-concepts-group-management.xml:25(para)
msgid "Update a group (change its name or description)"
msgstr ""
#: ./doc/common/section_keystone-concepts-group-management.xml:29(para)
msgid "Add a user to a group"
msgstr ""
#: ./doc/common/section_keystone-concepts-group-management.xml:32(para)
msgid "Remove a user from a group"
msgstr ""
#: ./doc/common/section_keystone-concepts-group-management.xml:35(para)
msgid "List group members"
msgstr ""
#: ./doc/common/section_keystone-concepts-group-management.xml:38(para)
msgid "List groups for a user"
msgstr ""
#: ./doc/common/section_keystone-concepts-group-management.xml:41(para)
msgid "Assign a role on a tenant to a group"
msgstr ""
#: ./doc/common/section_keystone-concepts-group-management.xml:44(para)
msgid "Assign a role on a domain to a group"
msgstr ""
#: ./doc/common/section_keystone-concepts-group-management.xml:47(para)
msgid "Query role assignments to groups"
msgstr ""
#: ./doc/common/section_keystone-concepts-group-management.xml:51(para)
msgid "The Identity service server might not allow all operations. For example, if using the Identity server with the LDAP Identity back end and group updates are disabled, then a request to create, delete, or update a group fails."
msgstr ""
#: ./doc/common/section_keystone-concepts-group-management.xml:57(para)
msgid "Here are a couple of examples:"
msgstr ""
#: ./doc/common/section_keystone-concepts-group-management.xml:60(para)
msgid "Group A is granted Role A on Tenant A. If User A is a member of Group A, when User A gets a token scoped to Tenant A, the token also includes Role A."
msgstr ""
#: ./doc/common/section_keystone-concepts-group-management.xml:66(para)
msgid "Group B is granted Role B on Domain B. If User B is a member of Domain B, if User B gets a token scoped to Domain B, the token also includes Role B."
msgstr ""
#: ./doc/common/section_keystone_config_ldap-assignments.xml:7(title)
msgid "Separate role authorization and user authentication"
msgstr ""
#: ./doc/common/section_keystone_config_ldap-assignments.xml:8(para)
msgid "When you configure the Identity service to use an LDAP back end, you can split authentication and authorization using the <emphasis>Assignments</emphasis> feature."
msgstr ""
#: ./doc/common/section_keystone_config_ldap-assignments.xml:11(para)
msgid "The Assignments feature enables administrators to manage project role authorization using the Identity service's own SQL database, while still providing user authentication through the LDAP directory."
msgstr ""
#: ./doc/common/section_keystone_config_ldap-assignments.xml:15(para)
msgid "To configure this:"
msgstr ""
#: ./doc/common/section_keystone_config_ldap-assignments.xml:17(title)
msgid "Separating role authorization and user authentication through Assignments"
msgstr ""
#: ./doc/common/section_keystone_config_ldap-assignments.xml:20(para)
msgid "Configure the Identity service to authenticate users through the LDAP driver. To do so, first find the <literal>[identity]</literal> section in the <filename>/etc/keystone/keystone.conf</filename> configuration file. Then, set the <literal>driver</literal> configuration key in that section to <literal>keystone.identity.backends.ldap.Identity</literal>:"
msgstr ""
#: ./doc/common/section_keystone_config_ldap-assignments.xml:31(para)
msgid "Next, enable the Assignment driver. To do so, find the <literal>[assignment]</literal> section in the <filename>/etc/keystone/keystone.conf</filename> configuration file. Then, set the <literal>driver</literal> configuration key in that section to <literal>keystone.assignment.backends.sql.Assignment</literal>:"
msgstr ""
#: ./doc/common/section_keystone_config_ldap-assignments.xml:42(para)
msgid "On distributions that include <application>openstack-config</application>, you can configure both drivers by running the following commands instead:"
msgstr ""
#: ./doc/common/section_cli_install.xml:8(title)
msgid "Install the OpenStack command-line clients"
msgstr ""
#: ./doc/common/section_cli_install.xml:9(para)
msgid "Install the prerequisite software and the Python package for each OpenStack client."
msgstr ""
#: ./doc/common/section_cli_install.xml:12(title)
msgid "Install the prerequisite software"
msgstr ""
#: ./doc/common/section_cli_install.xml:14(para)
msgid "Most Linux distributions include packaged versions of the command-line clients that you can install directly, see <xref linkend=\"cli_clients_install_packages\"/>."
msgstr ""
#: ./doc/common/section_cli_install.xml:18(para)
msgid "If you need to install the command-line packages source packages, the following table lists the software that you need to have to run the command-line clients, and provides installation instructions as needed."
msgstr ""
#: ./doc/common/section_cli_install.xml:25(caption)
msgid "Prerequisite software"
msgstr ""
#: ./doc/common/section_cli_install.xml:30(th)
msgid "Prerequisite"
msgstr ""
#: ./doc/common/section_cli_install.xml:37(para)
msgid "Python 2.6 or later"
msgstr ""
#: ./doc/common/section_cli_install.xml:40(para)
msgid "Currently, the clients do not support Python 3."
msgstr ""
#: ./doc/common/section_cli_install.xml:46(para)
msgid "<package>setuptools</package> package"
msgstr ""
#: ./doc/common/section_cli_install.xml:49(para)
msgid "Installed by default on Mac OS X."
msgstr ""
#: ./doc/common/section_cli_install.xml:50(para)
msgid "Many Linux distributions provide packages to make <package>setuptools</package> easy to install. Search your package manager for <package>setuptools</package> to find an installation package. If you cannot find one, download the <package>setuptools</package> package directly from <link href=\"http://pypi.python.org/pypi/setuptools\">http://pypi.python.org/pypi/setuptools</link>."
msgstr ""
#: ./doc/common/section_cli_install.xml:58(para)
msgid "The recommended way to install <package>setuptools</package> on Microsoft Windows is to follow the documentation provided <link href=\"https://pypi.python.org/pypi/setuptools#windows\">on the setuptools website</link>. Another option is to use the unofficial binary installer maintained by Christoph Gohlke (<link href=\"http://www.lfd.uci.edu/~gohlke/pythonlibs/#setuptools\">http://www.lfd.uci.edu/~gohlke/pythonlibs/#setuptools</link>)."
msgstr ""
#: ./doc/common/section_cli_install.xml:71(package)
msgid "pip"
msgstr ""
#: ./doc/common/section_cli_install.xml:71(td)
msgid "<placeholder-1/> package"
msgstr ""
#: ./doc/common/section_cli_install.xml:73(para)
msgid "To install the clients on a Linux, Mac OS X, or Microsoft Windows system, use <package>pip</package>. It is easy to use, ensures that you get the latest version of the clients from the <link href=\"http://pypi.python.org/\">Python Package Index</link>, and lets you update or remove the packages later on."
msgstr ""
#: ./doc/common/section_cli_install.xml:82(para)
msgid "Install <package>pip</package> through the package manager for your system:"
msgstr ""
#: ./doc/common/section_cli_install.xml:85(title)
msgid "MacOS"
msgstr ""
#: ./doc/common/section_cli_install.xml:89(title)
msgid "Microsoft Windows"
msgstr ""
#: ./doc/common/section_cli_install.xml:90(para)
msgid "Ensure that the <filename>C:\\Python27\\Scripts</filename> directory is defined in the <literal>PATH</literal> environment variable, and use the <placeholder-1/> command from the <package>setuptools</package> package: <placeholder-2/>Another option is to use the unofficial binary installer provided by Christoph Gohlke (<link href=\"http://www.lfd.uci.edu/~gohlke/pythonlibs/#pip\">http://www.lfd.uci.edu/~gohlke/pythonlibs/#pip</link>)."
msgstr ""
#: ./doc/common/section_cli_install.xml:107(title)
msgid "Ubuntu and Debian"
msgstr ""
#: ./doc/common/section_cli_install.xml:113(title)
msgid "Red Hat Enterprise Linux, CentOS, or Fedora"
msgstr ""
#: ./doc/common/section_cli_install.xml:114(para)
msgid "A packaged version enables you to use <package>yum</package> to install the package: <placeholder-1/> There are also packaged versions of the clients available in <link href=\"http://openstack.redhat.com/\">RDO</link> that enable <package>yum</package> to install the clients as described in <xref linkend=\"cli_clients_install_packages\"/>."
msgstr ""
#: ./doc/common/section_cli_install.xml:126(title)
msgid "SUSE Linux Enterprise Linux 11"
msgstr ""
#: ./doc/common/section_cli_install.xml:127(para)
msgid "A <link href=\"https://build.opensuse.org/package/show?package=python-pip&amp;project=Cloud:OpenStack:Master\">packaged version available in the Open Build Service</link> enables you to use or <package>zypper</package> to install the package. First, add the Open Build Service repository: <placeholder-1/> Then install <package>pip</package> and use it to manage client installation: <placeholder-2/> There are also packaged versions of the clients available that enable <package>zypper</package> to install the clients as described in <xref linkend=\"cli_clients_install_packages\"/>."
msgstr ""
#: ./doc/common/section_cli_install.xml:142(title)
msgid "openSUSE"
msgstr ""
#: ./doc/common/section_cli_install.xml:143(para)
msgid "You can install <package>pip</package> and use it to manage client installation: <placeholder-1/> There are also packaged versions of the clients available that enable <package>zypper</package> to install the clients as described in <xref linkend=\"cli_clients_install_packages\"/>"
msgstr ""
#: ./doc/common/section_cli_install.xml:158(title)
msgid "Install the clients"
msgstr ""
#: ./doc/common/section_cli_install.xml:159(para)
msgid "When following the instructions in this section, replace <replaceable>PROJECT</replaceable> with the lowercase name of the client to install, such as <placeholder-1/>. Repeat for each client. The following values are valid:"
msgstr ""
#: ./doc/common/section_cli_install.xml:166(para)
msgid "<literal>ceilometer</literal> - Telemetry API"
msgstr ""
#: ./doc/common/section_cli_install.xml:170(para)
msgid "<literal>cinder</literal> - Block Storage API and extensions"
msgstr ""
#: ./doc/common/section_cli_install.xml:174(para)
msgid "<literal>glance</literal> - Image Service API"
msgstr ""
#: ./doc/common/section_cli_install.xml:178(para)
msgid "<literal>heat</literal> - Orchestration API"
msgstr ""
#: ./doc/common/section_cli_install.xml:182(para)
msgid "<literal>keystone</literal> - Identity service API and extensions"
msgstr ""
#: ./doc/common/section_cli_install.xml:186(para)
msgid "<literal>neutron</literal> - Networking API"
msgstr ""
#: ./doc/common/section_cli_install.xml:190(para)
msgid "<literal>nova</literal> - Compute API and extensions"
msgstr ""
#: ./doc/common/section_cli_install.xml:194(para)
msgid "<literal>sahara</literal> - Database Processing API"
msgstr ""
#: ./doc/common/section_cli_install.xml:198(para)
msgid "<literal>swift</literal> - Object Storage API"
msgstr ""
#: ./doc/common/section_cli_install.xml:202(para)
msgid "<literal>trove</literal> - Database Service API"
msgstr ""
#: ./doc/common/section_cli_install.xml:206(para)
msgid "<literal>common</literal> - Common OpenStack client"
msgstr ""
#: ./doc/common/section_cli_install.xml:211(para)
msgid "The following example shows the command for installing the nova client with <replaceable>pip</replaceable>."
msgstr ""
#: ./doc/common/section_cli_install.xml:216(title)
msgid "Installing with pip"
msgstr ""
#: ./doc/common/section_cli_install.xml:217(para)
msgid "Use <package>pip</package> to install the OpenStack clients on a Linux, Mac OS X, or Microsoft Windows system. It is easy to use and ensures that you get the latest version of the client from the <link href=\"http://pypi.python.org/pypi\">Python Package Index</link>. Also, <package>pip</package> enables you to update or remove a package."
msgstr ""
#: ./doc/common/section_cli_install.xml:224(para)
msgid "Install each client separately by using the following command:"
msgstr ""
#: ./doc/common/section_cli_install.xml:227(para)
msgid "For Mac OS X or Linux:"
msgstr ""
#: ./doc/common/section_cli_install.xml:228(replaceable) ./doc/common/section_cli_install.xml:230(replaceable) ./doc/common/section_cli_install.xml:242(replaceable) ./doc/common/section_cli_install.xml:246(replaceable) ./doc/common/section_cli_install.xml:253(replaceable) ./doc/common/section_cli_install.xml:262(replaceable) ./doc/common/section_cli_install.xml:265(replaceable) ./doc/common/section_cli_version.xml:10(replaceable)
msgid "PROJECT"
msgstr ""
#: ./doc/common/section_cli_install.xml:229(para)
msgid "For Microsoft Windows:"
msgstr ""
#: ./doc/common/section_cli_install.xml:234(title)
msgid "Installing from packages"
msgstr ""
#: ./doc/common/section_cli_install.xml:235(para)
msgid "RDO, openSUSE and SUSE Linux Enterprise have client packages that can be installed without <filename>pip</filename>."
msgstr ""
#: ./doc/common/section_cli_install.xml:237(para)
msgid "On Red Hat Enterprise Linux, CentOS, or Fedora, use <placeholder-1/> to install the clients from the packaged versions available in <link href=\"http://openstack.redhat.com/\">RDO</link>: <placeholder-2/>"
msgstr ""
#: ./doc/common/section_cli_install.xml:243(para)
msgid "For openSUSE, use <package>zypper</package> to install the clients from the distribution packages Service: <placeholder-1/>"
msgstr ""
#: ./doc/common/section_cli_install.xml:247(para)
msgid "For SUSE Linux Enterprise Server, use <package>zypper</package> to install the clients from the distribution packages in the Open Build Service. First, add the Open Build Service repository: <placeholder-1/> Then you can install the packages: <placeholder-2/>"
msgstr ""
#: ./doc/common/section_cli_install.xml:258(title)
msgid "Upgrade or remove clients"
msgstr ""
#: ./doc/common/section_cli_install.xml:259(para)
msgid "To upgrade a client, add the <literal>--upgrade</literal> option to the <placeholder-1/> command:"
msgstr ""
#: ./doc/common/section_cli_install.xml:263(para)
msgid "To remove the a client, run the <placeholder-1/> command:"
msgstr ""
#: ./doc/common/section_cli_install.xml:268(title)
msgid "What's next"
msgstr ""
#: ./doc/common/section_cli_install.xml:269(para)
msgid "Before you can run client commands, you must create and source the <filename><replaceable>PROJECT</replaceable>-openrc.sh</filename> file to set environment variables. See <xref linkend=\"cli_openrc\"/>."
msgstr ""
#: ./doc/common/section_cli_help.xml:7(title)
msgid "Get help for client commands"
msgstr ""
#: ./doc/common/section_cli_help.xml:8(para)
msgid "To get usage information, including a list of commands with descriptions, for a client, run the following command:"
msgstr ""
#: ./doc/common/section_cli_help.xml:10(replaceable) ./doc/common/section_cli_help.xml:60(replaceable)
msgid "CLIENT_NAME"
msgstr ""
#: ./doc/common/section_cli_help.xml:11(para)
msgid "For example, to get help information for the swift client, run the following command:"
msgstr ""
#: ./doc/common/section_cli_help.xml:55(para)
msgid "Depending on your credentials, you might not have permission to use every command."
msgstr ""
#: ./doc/common/section_cli_help.xml:58(para)
msgid "After the <option>help</option> command, you can enter a command name to get help for that command, as follows:"
msgstr ""
#: ./doc/common/section_cli_help.xml:60(replaceable)
msgid "COMMAND_NAME"
msgstr ""
#: ./doc/common/section_cli_help.xml:61(para)
msgid "For example, to get help for the glance <placeholder-1/> command, enter the following command:"
msgstr ""
#: ./doc/common/section_cli_help.xml:65(para)
msgid "The command returns a description of the command and its positional and optional arguments:"
msgstr ""
#: ./doc/common/section_objectstorage-intro.xml:8(para)
msgid "OpenStack Object Storage (code-named swift) is open source software for creating redundant, scalable data storage using clusters of standardized servers to store petabytes of accessible data. It is a long-term storage system for large amounts of static data that can be retrieved, leveraged, and updated. Object Storage uses a distributed architecture with no central point of control, providing greater scalability, redundancy, and permanence. Objects are written to multiple hardware devices, with the OpenStack software responsible for ensuring data replication and integrity across the cluster. Storage clusters scale horizontally by adding new nodes. Should a node fail, OpenStack works to replicate its content from other active nodes. Because OpenStack uses software logic to ensure data replication and distribution across different devices, inexpensive commodity hard drives and servers can be used in lieu of more expensive equipment."
msgstr ""
#: ./doc/common/section_objectstorage-intro.xml:19(para)
msgid "Object Storage is ideal for cost effective, scale-out storage. It provides a fully distributed, API-accessible storage platform that can be integrated directly into applications or used for backup, archiving, and data retention."
msgstr ""
#: ./doc/common/section_config_format.xml:9(title)
msgid "Configuration file format"
msgstr ""
#: ./doc/common/section_config_format.xml:11(para)
msgid "OpenStack uses the <glossterm>INI</glossterm> file format for configuration files. An INI file is a simple text file that specifies options as <literal>key=value</literal> pairs, grouped into sections. The <literal>DEFAULT</literal> section contains most of the configuration options. Lines starting with a hash sign (<literal>#</literal>) are comment lines. For example:"
msgstr ""
#: ./doc/common/section_config_format.xml:30(replaceable)
msgid "KEYSTONE_DBPASS"
msgstr ""
#: ./doc/common/section_config_format.xml:30(replaceable)
msgid "controller"
msgstr ""
#: ./doc/common/section_config_format.xml:33(para)
msgid "Options can have different types for values. The comments in the sample config files always mention these. The following types are used by OpenStack:"
msgstr ""
#: ./doc/common/section_config_format.xml:40(term)
msgid "boolean value"
msgstr ""
#: ./doc/common/section_config_format.xml:42(para)
msgid "Enables or disables an option. The allowed values are <literal>true</literal> and <literal>false</literal>."
msgstr ""
#: ./doc/common/section_config_format.xml:52(term)
msgid "floating point value"
msgstr ""
#: ./doc/common/section_config_format.xml:54(para)
msgid "A floating point number like <literal>0.25</literal> or <literal>1000</literal>."
msgstr ""
#: ./doc/common/section_config_format.xml:63(term)
msgid "integer value"
msgstr ""
#: ./doc/common/section_config_format.xml:65(para)
msgid "An integer number is a number without fractional components, like <literal>0</literal> or <literal>42</literal>."
msgstr ""
#: ./doc/common/section_config_format.xml:75(term)
msgid "list value"
msgstr ""
#: ./doc/common/section_config_format.xml:77(para)
msgid "Represents values of other types, separated by commas. As an example, the following sets <option>allowed_rpc_exception_modules</option> to a list containing the four elements <literal>oslo.messaging.exceptions</literal>, <literal>nova.exception</literal>, <literal>cinder.exception</literal>, and <literal>exceptions</literal>:"
msgstr ""
#: ./doc/common/section_config_format.xml:93(term)
msgid "multi valued"
msgstr ""
#: ./doc/common/section_config_format.xml:95(para)
msgid "A multi-valued option is a string value and can be given more than once, all values will be used."
msgstr ""
#: ./doc/common/section_config_format.xml:106(term)
msgid "string value"
msgstr ""
#: ./doc/common/section_config_format.xml:108(para)
msgid "Strings can be optionally enclosed with single or double quotes."
msgstr ""
#: ./doc/common/section_config_format.xml:128(title)
msgid "Sections"
msgstr ""
#: ./doc/common/section_config_format.xml:135(literal) ./doc/common/tables/ceilometer-database.xml:18(th) ./doc/common/tables/neutron-openvswitch_agent.xml:18(th) ./doc/common/tables/heat-clients.xml:18(th) ./doc/common/tables/cinder-solidfire.xml:18(th) ./doc/common/tables/neutron-rpc.xml:18(th) ./doc/common/tables/nova-periodic.xml:18(th) ./doc/common/tables/keystone-policy.xml:18(th) ./doc/common/tables/glance-auth_token.xml:18(th) ./doc/common/tables/cinder-netapp_7mode_nfs.xml:18(th) ./doc/common/tables/cinder-nimble.xml:18(th) ./doc/common/tables/swift-proxy-server-DEFAULT.xml:8(literal) ./doc/common/tables/ceilometer-redis.xml:18(th) ./doc/common/tables/cinder-storage_ceph.xml:18(th) ./doc/common/tables/nova-testing.xml:18(th) ./doc/common/tables/nova-metadata.xml:18(th) ./doc/common/tables/cinder-hp3par.xml:18(th) ./doc/common/tables/keystone-misc.xml:18(th) ./doc/common/tables/glance-ca.xml:18(th) ./doc/common/tables/neutron-scheduler.xml:18(th) ./doc/common/tables/cinder-fusionio.xml:18(th) ./doc/common/tables/cinder-storage_xen.xml:18(th) ./doc/common/tables/ceilometer-common.xml:18(th) ./doc/common/tables/cinder-pure.xml:18(th) ./doc/common/tables/cinder-database.xml:18(th) ./doc/common/tables/ceilometer-logging.xml:18(th) ./doc/common/tables/heat-common.xml:18(th) ./doc/common/tables/nova-ipv6.xml:18(th) ./doc/common/tables/sahara-zeromq.xml:18(th) ./doc/common/tables/nova-vnc.xml:18(th) ./doc/common/tables/trove-qpid.xml:18(th) ./doc/common/tables/keystone-api.xml:18(th) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:8(literal) ./doc/common/tables/glance-rpc.xml:18(th) ./doc/common/tables/neutron-policy.xml:18(th) ./doc/common/tables/nova-xen.xml:18(th) ./doc/common/tables/trove-amqp.xml:18(th) ./doc/common/tables/glance-matchmaker.xml:18(th) ./doc/common/tables/nova-rabbitmq.xml:18(th) ./doc/common/tables/sahara-database.xml:18(th) ./doc/common/tables/neutron-ml2_cisco.xml:18(th) ./doc/common/tables/nova-policy.xml:18(th) ./doc/common/tables/ceilometer-inspector.xml:18(th) ./doc/common/tables/cinder-scheduler.xml:18(th) ./doc/common/tables/neutron-logging.xml:18(th) ./doc/common/tables/nova-availabilityzones.xml:18(th) ./doc/common/tables/cinder-netapp_eseries_iscsi.xml:18(th) ./doc/common/tables/neutron-rootwrap.xml:18(th) ./doc/common/tables/cinder-auth.xml:18(th) ./doc/common/tables/heat-qpid.xml:18(th) ./doc/common/tables/neutron-auth_token.xml:18(th) ./doc/common/tables/nova-ldap.xml:18(th) ./doc/common/tables/sahara-debug.xml:18(th) ./doc/common/tables/cinder-quota.xml:18(th) ./doc/common/tables/nova-compute.xml:18(th) ./doc/common/tables/nova-scheduler.xml:18(th) ./doc/common/tables/cinder-backups_ceph.xml:18(th) ./doc/common/tables/heat-cfn_api.xml:18(th) ./doc/common/tables/neutron-vmware.xml:18(th) ./doc/common/tables/cinder-zfssa.xml:18(th) ./doc/common/tables/nova-zeromq.xml:18(th) ./doc/common/tables/cinder-storage.xml:18(th) ./doc/common/tables/glance-registry.xml:18(th) ./doc/common/tables/heat-quota.xml:18(th) ./doc/common/tables/trove-network.xml:18(th) ./doc/common/tables/nova-common.xml:18(th) ./doc/common/tables/nova-volumes.xml:18(th) ./doc/common/tables/neutron-dvr.xml:18(th) ./doc/common/tables/heat-zeromq.xml:18(th) ./doc/common/tables/heat-amqp.xml:18(th) ./doc/common/tables/cinder-logging.xml:18(th) ./doc/common/tables/swift-container-server-DEFAULT.xml:8(literal) ./doc/common/tables/glance-rabbitmq.xml:18(th) ./doc/common/tables/neutron-l3_agent.xml:18(th) ./doc/common/tables/glance-policy.xml:18(th) ./doc/common/tables/nova-neutron.xml:18(th) ./doc/common/tables/cinder-backups.xml:18(th) ./doc/common/tables/cinder-zoning.xml:18(th) ./doc/common/tables/heat-notification.xml:18(th) ./doc/common/tables/nova-vpn.xml:18(th) ./doc/common/tables/trove-common.xml:18(th) ./doc/common/tables/trove-api.xml:18(th) ./doc/common/tables/cinder-zadara.xml:18(th) ./doc/common/tables/nova-conductor.xml:18(th) ./doc/common/tables/nova-livemigration.xml:18(th) ./doc/common/tables/heat-rabbitmq.xml:18(th) ./doc/common/tables/keystone-amqp.xml:18(th) ./doc/common/tables/keystone-rpc.xml:18(th) ./doc/common/tables/swift-object-server-DEFAULT.xml:8(literal) ./doc/common/tables/cinder-zones.xml:18(th) ./doc/common/tables/cinder-scality.xml:18(th) ./doc/common/tables/neutron-agent.xml:18(th) ./doc/common/tables/cinder-emc.xml:18(th) ./doc/common/tables/cinder-vmware.xml:18(th) ./doc/common/tables/heat-metadata_api.xml:18(th) ./doc/common/tables/trove-rabbitmq.xml:18(th) ./doc/common/tables/cinder-netapp_cdot_iscsi.xml:18(th) ./doc/common/tables/neutron-ml2_ofa.xml:18(th) ./doc/common/tables/glance-api.xml:18(th) ./doc/common/tables/heat-waitcondition_api.xml:18(th) ./doc/common/tables/cinder-storwize.xml:18(th) ./doc/common/tables/cinder-hplefthand.xml:18(th) ./doc/common/tables/neutron-ipv6_ra.xml:18(th) ./doc/common/tables/nova-rootwrap.xml:18(th) ./doc/common/tables/heat-loadbalancer.xml:18(th) ./doc/common/tables/ceilometer-api.xml:18(th) ./doc/common/tables/ceilometer-exchange.xml:18(th) ./doc/common/tables/cinder-lvm.xml:18(th) ./doc/common/tables/trove-dns.xml:18(th) ./doc/common/tables/sahara-amqp.xml:18(th) ./doc/common/tables/trove-volume.xml:18(th) ./doc/common/tables/heat-auth_token.xml:18(th) ./doc/common/tables/neutron-quotas.xml:18(th) ./doc/common/tables/cinder-storage_nfs.xml:18(th) ./doc/common/tables/cinder-hds-hnas.xml:18(th) ./doc/common/tables/heat-api.xml:18(th) ./doc/common/tables/neutron-ryu.xml:18(th) ./doc/common/tables/glance-logging.xml:18(th) ./doc/common/tables/cinder-swift.xml:18(th) ./doc/common/tables/neutron-metering_agent.xml:18(th) ./doc/common/tables/neutron-zeromq.xml:18(th) ./doc/common/tables/cinder-storage_glusterfs.xml:18(th) ./doc/common/tables/cinder-common.xml:18(th) ./doc/common/tables/glance-swift.xml:18(th) ./doc/common/tables/trove-quota.xml:18(th) ./doc/common/tables/trove-clients.xml:18(th) ./doc/common/tables/cinder-auth_token.xml:18(th) ./doc/common/tables/cinder-xiv.xml:18(th) ./doc/common/tables/nova-glance.xml:18(th) ./doc/common/tables/keystone-auth_token.xml:18(th) ./doc/common/tables/nova-s3.xml:18(th) ./doc/common/tables/nova-pci.xml:18(th) ./doc/common/tables/sahara-common.xml:18(th) ./doc/common/tables/cinder-api.xml:18(th) ./doc/common/tables/trove-heat.xml:18(th) ./doc/common/tables/swift-container-sync-realms-DEFAULT.xml:8(literal) ./doc/common/tables/cinder-windows.xml:18(th) ./doc/common/tables/cinder-san-solaris.xml:18(th) ./doc/common/tables/keystone-rabbitmq.xml:18(th) ./doc/common/tables/keystone-zeromq.xml:18(th) ./doc/common/tables/glance-zeromq.xml:18(th) ./doc/common/tables/neutron-cfg_agent.xml:18(th) ./doc/common/tables/ceilometer-rpc.xml:18(th) ./doc/common/tables/trove-rpc.xml:18(th) ./doc/common/tables/ceilometer-swift.xml:18(th) ./doc/common/tables/trove-backup.xml:18(th) ./doc/common/tables/nova-network.xml:18(th) ./doc/common/tables/cinder-prophetstor_dpl.xml:18(th) ./doc/common/tables/nova-ca.xml:18(th) ./doc/common/tables/neutron-dhcp_agent.xml:18(th) ./doc/common/tables/ceilometer-collector.xml:18(th) ./doc/common/tables/cinder-hds-hus.xml:18(th) ./doc/common/tables/cinder-netapp_7mode_iscsi.xml:18(th) ./doc/common/tables/heat-debug.xml:18(th) ./doc/common/tables/nova-kombu.xml:18(th) ./doc/common/tables/trove-guestagent.xml:18(th) ./doc/common/tables/nova-qpid.xml:18(th) ./doc/common/tables/glance-qpid.xml:18(th) ./doc/common/tables/sahara-rpc.xml:18(th) ./doc/common/tables/cinder-ibmnas.xml:18(th) ./doc/common/tables/glance-amqp.xml:18(th) ./doc/common/tables/cinder-fujitsu_eternus_dx.xml:18(th) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:8(literal) ./doc/common/tables/sahara-logging.xml:18(th) ./doc/common/tables/neutron-testing.xml:18(th) ./doc/common/tables/neutron-ca.xml:18(th) ./doc/common/tables/ceilometer-debug.xml:18(th) ./doc/common/tables/trove-compute.xml:18(th) ./doc/common/tables/sahara-rabbitmq.xml:18(th) ./doc/common/tables/cinder-rpc.xml:18(th) ./doc/common/tables/cinder-hpmsa.xml:18(th) ./doc/common/tables/cinder-storage_gpfs.xml:18(th) ./doc/common/tables/trove-zeromq.xml:18(th) ./doc/common/tables/neutron-lbaas.xml:18(th) ./doc/common/tables/cinder-backups_swift.xml:18(th) ./doc/common/tables/trove-database.xml:18(th) ./doc/common/tables/nova-authentication.xml:18(th) ./doc/common/tables/cinder-ca.xml:18(th) ./doc/common/tables/neutron-notifier.xml:18(th) ./doc/common/tables/nova-rpc_all.xml:18(th) ./doc/common/tables/cinder-eqlx.xml:18(th) ./doc/common/tables/nova-ec2.xml:18(th) ./doc/common/tables/cinder-block-device.xml:18(th) ./doc/common/tables/neutron-metadata.xml:18(th) ./doc/common/tables/nova-fping.xml:18(th) ./doc/common/tables/trove-cluster.xml:18(th) ./doc/common/tables/sahara-qpid.xml:18(th) ./doc/common/tables/neutron-compute.xml:18(th) ./doc/common/tables/glance-imagecache.xml:18(th) ./doc/common/tables/cinder-nas.xml:18(th) ./doc/common/tables/cinder-netapp_cdot_nfs.xml:18(th) ./doc/common/tables/keystone-logging.xml:18(th) ./doc/common/tables/heat-rpc.xml:18(th) ./doc/common/tables/trove-taskmanager.xml:18(th) ./doc/common/tables/heat-cloudwatch_api.xml:18(th) ./doc/common/tables/cinder-hitachi.xml:18(th) ./doc/common/tables/cinder-images.xml:18(th) ./doc/common/tables/cinder-huawei.xml:18(th) ./doc/common/tables/nova-console.xml:18(th) ./doc/common/tables/cinder-nexenta_nfs.xml:18(th) ./doc/common/tables/nova-database.xml:18(th) ./doc/common/tables/nova-quota.xml:18(th) ./doc/common/tables/heat-logging.xml:18(th) ./doc/common/tables/heat-crypt.xml:18(th) ./doc/common/tables/cinder-coraid.xml:18(th) ./doc/common/tables/neutron-wsgi.xml:18(th) ./doc/common/tables/cinder-compute.xml:18(th) ./doc/common/tables/glance-wsgi.xml:18(th) ./doc/common/tables/neutron-qpid.xml:18(th) ./doc/common/tables/nova-rpc.xml:18(th) ./doc/common/tables/cinder-backups_tsm.xml:18(th) ./doc/common/tables/cinder-san.xml:18(th) ./doc/common/tables/nova-logging.xml:18(th) ./doc/common/tables/keystone-security.xml:18(th) ./doc/common/tables/nova-api.xml:18(th) ./doc/common/tables/trove-auth_token.xml:18(th) ./doc/common/tables/glance-common.xml:18(th) ./doc/common/tables/swift-account-server-DEFAULT.xml:8(literal) ./doc/common/tables/trove-nova.xml:18(th) ./doc/common/tables/neutron-rabbitmq.xml:18(th) ./doc/common/tables/neutron-api.xml:18(th) ./doc/common/tables/trove-logging.xml:18(th) ./doc/common/tables/keystone-redis.xml:18(th) ./doc/common/tables/nova-xvpnvncproxy.xml:18(th) ./doc/common/tables/heat-clients_backends.xml:18(th) ./doc/common/tables/glance-testing.xml:18(th) ./doc/common/tables/neutron-common.xml:18(th) ./doc/common/tables/nova-hypervisor.xml:18(th) ./doc/common/tables/keystone-qpid.xml:18(th) ./doc/common/tables/nova-wsgi.xml:18(th) ./doc/common/tables/nova-configdrive.xml:18(th) ./doc/common/tables/ceilometer-qpid.xml:18(th) ./doc/common/tables/cinder-datera.xml:18(th) ./doc/common/tables/ceilometer-rabbitmq.xml:18(th) ./doc/common/tables/trove-debug.xml:18(th) ./doc/common/tables/trove-swift.xml:18(th) ./doc/common/tables/nova-libvirt.xml:18(th) ./doc/common/tables/ceilometer-amqp.xml:18(th) ./doc/common/tables/ceilometer-glance.xml:18(th) ./doc/common/tables/keystone-debug.xml:18(th) ./doc/common/tables/cinder-rootwrap.xml:18(th) ./doc/common/tables/cinder-nexenta_iscsi.xml:18(th)
msgid "[DEFAULT]"
msgstr ""
#: ./doc/common/section_config_format.xml:137(para)
msgid "Contains most configuration options. If the documentation for a configuration option does not specify its section, assume that it appears in this section."
msgstr ""
#: ./doc/common/section_config_format.xml:146(literal) ./doc/common/tables/ceilometer-database.xml:25(th) ./doc/common/tables/cinder-database.xml:29(th) ./doc/common/tables/glance-database.xml:18(th) ./doc/common/tables/sahara-database.xml:25(th) ./doc/common/tables/neutron-database.xml:18(th) ./doc/common/tables/nova-database.xml:25(th) ./doc/common/tables/heat-database.xml:18(th) ./doc/common/tables/keystone-database.xml:18(th)
msgid "[database]"
msgstr ""
#: ./doc/common/section_config_format.xml:148(para)
msgid "Configuration options for the database that stores the state of the OpenStack service."
msgstr ""
#: ./doc/common/section_config_format.xml:129(para)
msgid "Configuration options are grouped by section. Most configuration files support at least the following sections: <placeholder-1/>"
msgstr ""
#: ./doc/common/section_config_format.xml:159(title)
msgid "Substitution"
msgstr ""
#: ./doc/common/section_config_format.xml:161(para)
msgid "The configuration file supports variable substitution. After you set a configuration option, it can be referenced in later configuration values when you precede it with a <literal>$</literal>, like <literal>$OPTION</literal>."
msgstr ""
#: ./doc/common/section_config_format.xml:168(para)
msgid "The following example uses the values of <literal>rabbit_host</literal> and <literal>rabbit_port</literal> to define the value of the <literal>rabbit_hosts</literal> option, in this case as <literal>controller:5672</literal>."
msgstr ""
#: ./doc/common/section_config_format.xml:186(para)
msgid "To avoid substitution, use <literal>$$</literal>, it is replaced by a single <literal>$</literal>. For example, if your LDAP DNS password is <literal>$xkj432</literal>, specify it, as follows: <placeholder-1/>"
msgstr ""
#: ./doc/common/section_config_format.xml:192(para)
msgid "The code uses the Python <literal>string.Template.safe_substitute()</literal> method to implement variable substitution. For more details on how variable substitution is resolved, see <link href=\"http://docs.python.org/2/library/string.html#template-strings\">http://docs.python.org/2/library/string.html#template-strings</link> and <link href=\"http://www.python.org/dev/peps/pep-0292/\">PEP 292</link>."
msgstr ""
#: ./doc/common/section_config_format.xml:205(title)
msgid "Whitespace"
msgstr ""
#: ./doc/common/section_config_format.xml:206(para)
msgid "To include whitespace in a configuration value, use a quoted string. For example:"
msgstr ""
#: ./doc/common/section_config_format.xml:212(title)
msgid "Define an alternate location for a config file"
msgstr ""
#: ./doc/common/section_config_format.xml:213(para)
msgid "Most services and the and the <placeholder-1/> command-line clients load the configuration file. To define an alternate location for the configuration file, pass the <parameter>--config-file <replaceable>CONFIG_FILE</replaceable></parameter> parameter when you start a service or call a <placeholder-2/> command."
msgstr ""
#: ./doc/common/section_getstart_image.xml:7(title)
msgid "OpenStack Image Service"
msgstr ""
#: ./doc/common/section_getstart_image.xml:8(para)
msgid "The OpenStack Image Service is central to Infrastructure-as-a-Service (IaaS) as shown in <xref linkend=\"conceptual-architecture\"/>. It accepts API requests for disk or server images, and image metadata from end users or OpenStack Compute components. It also supports the storage of disk or server images on various repository types, including OpenStack Object Storage."
msgstr ""
#: ./doc/common/section_getstart_image.xml:14(para)
msgid "A number of periodic processes run on the OpenStack Image Service to support caching. Replication services ensure consistency and availability through the cluster. Other periodic processes include auditors, updaters, and reapers."
msgstr ""
#: ./doc/common/section_getstart_image.xml:18(para)
msgid "The OpenStack Image Service includes the following components:"
msgstr ""
#: ./doc/common/section_getstart_image.xml:22(systemitem)
msgid "glance-api"
msgstr ""
#: ./doc/common/section_getstart_image.xml:23(para)
msgid "Accepts Image API calls for image discovery, retrieval, and storage."
msgstr ""
#: ./doc/common/section_getstart_image.xml:27(systemitem)
msgid "glance-registry"
msgstr ""
#: ./doc/common/section_getstart_image.xml:28(para)
msgid "Stores, processes, and retrieves metadata about images. Metadata includes items such as size and type."
msgstr ""
#: ./doc/common/section_getstart_image.xml:30(title)
msgid "Security note"
msgstr ""
#: ./doc/common/section_getstart_image.xml:31(para)
msgid "The registry is a private internal service meant for use by OpenStack Image Service. Do not disclose it to users."
msgstr ""
#: ./doc/common/section_getstart_image.xml:37(term)
msgid "Database"
msgstr ""
#: ./doc/common/section_getstart_image.xml:38(para)
msgid "Stores image metadata and you can choose your database depending on your preference. Most deployments use MySQL or SQLite."
msgstr ""
#: ./doc/common/section_getstart_image.xml:43(term)
msgid "Storage repository for image files"
msgstr ""
#: ./doc/common/section_getstart_image.xml:44(para)
msgid "Various repository types are supported including normal file systems, Object Storage, RADOS block devices, HTTP, and Amazon S3. Note that some repositories will only support read-only usage."
msgstr ""
#: ./doc/common/ch_getstart.xml:7(title)
msgid "Get started with OpenStack"
msgstr ""
#: ./doc/common/ch_getstart.xml:8(para)
msgid "The OpenStack project is an open source cloud computing platform for all types of clouds, which aims to be simple to implement, massively scalable, and feature rich. Developers and cloud computing technologists from around the world create the OpenStack project."
msgstr ""
#: ./doc/common/ch_getstart.xml:13(para)
msgid "OpenStack provides an Infrastructure-as-a-Service (<glossterm>IaaS</glossterm>) solution through a set of interrelated services. Each service offers an application programming interface (<glossterm>API</glossterm>) that facilitates this integration. Depending on your needs, you can install some or all services."
msgstr ""
#: ./doc/common/ch_getstart.xml:21(para)
msgid "The following table describes the OpenStack services that make up the OpenStack architecture:"
msgstr ""
#: ./doc/common/ch_getstart.xml:24(caption) ./doc/common/ch_getstart.xml:189(title)
msgid "OpenStack services"
msgstr ""
#: ./doc/common/ch_getstart.xml:31(th)
msgid "Project name"
msgstr ""
#: ./doc/common/ch_getstart.xml:39(glossterm)
msgid "Dashboard"
msgstr ""
#: ./doc/common/ch_getstart.xml:43(glossterm)
msgid "Horizon"
msgstr ""
#: ./doc/common/ch_getstart.xml:45(td)
msgid "Provides a web-based self-service portal to interact with underlying OpenStack services, such as launching an instance, assigning IP addresses and configuring access controls."
msgstr ""
#: ./doc/common/ch_getstart.xml:57(glossterm)
msgid "Nova"
msgstr ""
#: ./doc/common/ch_getstart.xml:59(td)
msgid "Manages the lifecycle of compute instances in an OpenStack environment. Responsibilities include spawning, scheduling and decommissioning of virtual machines on demand."
msgstr ""
#: ./doc/common/ch_getstart.xml:71(glossterm)
msgid "Neutron"
msgstr ""
#: ./doc/common/ch_getstart.xml:73(td)
msgid "Enables Network-Connectivity-as-a-Service for other OpenStack services, such as OpenStack Compute. Provides an API for users to define networks and the attachments into them. Has a pluggable architecture that supports many popular networking vendors and technologies."
msgstr ""
#: ./doc/common/ch_getstart.xml:80(th)
msgid "Storage"
msgstr ""
#: ./doc/common/ch_getstart.xml:88(glossterm)
msgid "Swift"
msgstr ""
#: ./doc/common/ch_getstart.xml:91(glossterm)
msgid "RESTful"
msgstr ""
#: ./doc/common/ch_getstart.xml:90(td)
msgid "Stores and retrieves arbitrary unstructured data objects via a <placeholder-1/>, HTTP based API. It is highly fault tolerant with its data replication and scale out architecture. Its implementation is not like a file server with mountable directories."
msgstr ""
#: ./doc/common/ch_getstart.xml:104(glossterm)
msgid "Cinder"
msgstr ""
#: ./doc/common/ch_getstart.xml:106(td)
msgid "Provides persistent block storage to running instances. Its pluggable driver architecture facilitates the creation and management of block storage devices."
msgstr ""
#: ./doc/common/ch_getstart.xml:111(th)
msgid "Shared services"
msgstr ""
#: ./doc/common/ch_getstart.xml:115(glossterm)
msgid "Identity service"
msgstr ""
#: ./doc/common/ch_getstart.xml:119(glossterm)
msgid "Keystone"
msgstr ""
#: ./doc/common/ch_getstart.xml:121(td)
msgid "Provides an authentication and authorization service for other OpenStack services. Provides a catalog of endpoints for all OpenStack services."
msgstr ""
#: ./doc/common/ch_getstart.xml:132(glossterm)
msgid "Glance"
msgstr ""
#: ./doc/common/ch_getstart.xml:134(td)
msgid "Stores and retrieves virtual machine disk images. OpenStack Compute makes use of this during instance provisioning."
msgstr ""
#: ./doc/common/ch_getstart.xml:147(glossterm)
msgid "Ceilometer"
msgstr ""
#: ./doc/common/ch_getstart.xml:149(td)
msgid "Monitors and meters the OpenStack cloud for billing, benchmarking, scalability, and statistical purposes."
msgstr ""
#: ./doc/common/ch_getstart.xml:154(th)
msgid "Higher-level services"
msgstr ""
#: ./doc/common/ch_getstart.xml:161(glossterm)
msgid "Heat"
msgstr ""
#: ./doc/common/ch_getstart.xml:165(glossterm)
msgid "HOT"
msgstr ""
#: ./doc/common/ch_getstart.xml:163(td)
msgid "Orchestrates multiple composite cloud applications by using either the native <placeholder-1/> template format or the AWS CloudFormation template format, through both an OpenStack-native REST API and a CloudFormation-compatible Query API."
msgstr ""
#: ./doc/common/ch_getstart.xml:177(glossterm)
msgid "Trove"
msgstr ""
#: ./doc/common/ch_getstart.xml:179(td)
msgid "Provides scalable and reliable Cloud Database-as-a-Service functionality for both relational and non-relational database engines."
msgstr ""
#: ./doc/common/ch_getstart.xml:190(para)
msgid "This section describes OpenStack services in detail."
msgstr ""
#: ./doc/common/ch_getstart.xml:209(title)
msgid "Feedback"
msgstr ""
#: ./doc/common/section_fibrechannel.xml:7(title)
msgid "Fibre Channel support in Compute"
msgstr ""
#: ./doc/common/section_fibrechannel.xml:8(para)
msgid "Fibre Channel support in OpenStack Compute is remote block storage attached to compute nodes for VMs."
msgstr ""
#. TODO: This below statement needs to be verified for current release
#: ./doc/common/section_fibrechannel.xml:11(para)
msgid "In the Grizzly release, Fibre Channel supported only the KVM hypervisor."
msgstr ""
#: ./doc/common/section_fibrechannel.xml:13(para)
msgid "Compute and Block Storage for Fibre Channel do not support automatic zoning. Fibre Channel arrays must be pre-zoned or directly attached to the KVM hosts."
msgstr ""
#: ./doc/common/section_fibrechannel.xml:17(title)
msgid "KVM host requirements"
msgstr ""
#: ./doc/common/section_fibrechannel.xml:18(para)
msgid "You must install these packages on the KVM host:"
msgstr ""
#: ./doc/common/section_fibrechannel.xml:21(para)
msgid "<package>sysfsutils</package> - Nova uses the <package>systool</package> application in this package."
msgstr ""
#: ./doc/common/section_fibrechannel.xml:27(para)
msgid "<package>sg3-utils</package> - Nova uses the <package>sg_scan</package> and <package>sginfo</package> applications."
msgstr ""
#: ./doc/common/section_fibrechannel.xml:33(para)
msgid "Installing the <package>multipath-tools</package> package is optional."
msgstr ""
#: ./doc/common/section_fibrechannel.xml:37(title)
msgid "Install required packages"
msgstr ""
#: ./doc/common/section_fibrechannel.xml:38(para)
msgid "Use these commands to install the system packages:"
msgstr ""
#: ./doc/common/section_fibrechannel.xml:42(para)
msgid "For systems running openSUSE or SUSE Linux Enterprise Server:"
msgstr ""
#: ./doc/common/section_fibrechannel.xml:47(para)
msgid "For systems running Red Hat:"
msgstr ""
#: ./doc/common/section_fibrechannel.xml:51(para)
msgid "For systems running Ubuntu:"
msgstr ""
#: ./doc/common/section_keystone-concepts-domain-management.xml:7(title)
msgid "Domains"
msgstr ""
#: ./doc/common/section_keystone-concepts-domain-management.xml:8(para)
msgid "A domain defines administrative boundaries for the management of Identity entities. A domain may represent an individual, company, or operator-owned space. It is used for exposing administrative activities directly to the system users."
msgstr ""
#: ./doc/common/section_keystone-concepts-domain-management.xml:11(para)
msgid "A domain is a collection of tenants, users, and roles. Users may be given a domain's administrator role. A domain administrator may create tenants, users, and groups within a domain and assign roles to users and groups."
msgstr ""
#: ./doc/common/section_dashboard_customizing.xml:7(title)
msgid "Customize the dashboard"
msgstr ""
#: ./doc/common/section_dashboard_customizing.xml:8(para)
msgid "Adapted from <link href=\"http://www.prestonlee.com/2012/05/09/how-to-custom-brand-the-openstack-horizon-dashboard/\">How To Custom Brand The OpenStack “Horizon” Dashboard</link>."
msgstr ""
#: ./doc/common/section_dashboard_customizing.xml:12(para)
msgid "You install the OpenStack dashboard through the <literal>openstack-dashboard</literal> package. You can customize the dashboard with your own colors, logo, and site title through a CSS file."
msgstr ""
#: ./doc/common/section_dashboard_customizing.xml:16(para)
msgid "Canonical also provides an <literal>openstack-dashboard-ubuntu-theme</literal> package that brands the Python-based Django interface."
msgstr ""
#: ./doc/common/section_dashboard_customizing.xml:48(para)
msgid "Create a graphical logo with a transparent background. The text <literal>TGen Cloud</literal> in this example is rendered through <filename>.png</filename> files of multiple sizes created with a graphics program."
msgstr ""
#: ./doc/common/section_dashboard_customizing.xml:53(para)
msgid "Use a 200×27 for the logged-in banner graphic, and 365×50 for the login screen graphic."
msgstr ""
#: ./doc/common/section_dashboard_customizing.xml:57(para)
msgid "Set the HTML title, which appears at the top of the browser window, by adding the following line to <filename>/etc/openstack-dashboard/local_settings.py</filename>:"
msgstr ""
#: ./doc/common/section_dashboard_customizing.xml:60(code)
msgid "SITE_BRANDING = \"Example, Inc. Cloud\""
msgstr ""
#: ./doc/common/section_dashboard_customizing.xml:64(para)
msgid "Upload your new graphic files to the following location: <filename>/usr/share/openstack-dashboard/openstack_dashboard/static/dashboard/img/</filename>"
msgstr ""
#: ./doc/common/section_dashboard_customizing.xml:69(para)
msgid "Create a CSS style sheet in the following directory: <filename>/usr/share/openstack-dashboard/openstack_dashboard/static/dashboard/css/</filename>"
msgstr ""
#: ./doc/common/section_dashboard_customizing.xml:73(para)
msgid "Edit your CSS file to override the Ubuntu customizations in the <filename>ubuntu.css</filename> file."
msgstr ""
#: ./doc/common/section_dashboard_customizing.xml:76(para)
msgid "Change the colors and image file names as appropriate, though the relative directory paths should be the same. The following example file shows you how to customize your CSS file:"
msgstr ""
#: ./doc/common/section_dashboard_customizing.xml:115(para)
msgid "Open the following HTML template in an editor: <filename>/usr/share/openstack-dashboard/openstack_dashboard/templates/_stylesheets.html</filename>"
msgstr ""
#: ./doc/common/section_dashboard_customizing.xml:119(para)
msgid "Add a line to include your <filename>custom.css</filename> file:"
msgstr ""
#: ./doc/common/section_dashboard_customizing.xml:124(emphasis)
msgid "&lt;link href='{{ STATIC_URL }}dashboard/css/custom.css' media='screen' rel='stylesheet' /&gt;"
msgstr ""
#: ./doc/common/section_dashboard_customizing.xml:128(title)
msgid "Restart Apache:"
msgstr ""
#: ./doc/common/section_dashboard_customizing.xml:129(para) ./doc/common/section_dashboard_sessions.xml:181(para)
msgid "On Ubuntu: <placeholder-1/>"
msgstr ""
#: ./doc/common/section_dashboard_customizing.xml:132(para)
msgid "On Fedora, RHEL, CentOS: <placeholder-1/>"
msgstr ""
#: ./doc/common/section_dashboard_customizing.xml:135(para) ./doc/common/section_dashboard_sessions.xml:188(para)
msgid "On openSUSE: <placeholder-1/>"
msgstr ""
#: ./doc/common/section_dashboard_customizing.xml:140(para)
msgid "Reload the dashboard in your browser to view your changes."
msgstr ""
#: ./doc/common/section_dashboard_customizing.xml:142(para)
msgid "Modify your CSS file as appropriate."
msgstr ""
#: ./doc/common/section_compute_config-api.xml:7(title)
msgid "Configure the Compute API"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:8(para)
msgid "The Compute API, run by the <systemitem class=\"service\">nova-api</systemitem> daemon, is the component of OpenStack Compute that receives and responds to user requests, whether they be direct API calls, or via the CLI tools or dashboard."
msgstr ""
#: ./doc/common/section_compute_config-api.xml:14(title)
msgid "Configure Compute API password handling"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:15(para)
msgid "The OpenStack Compute API enables users to specify an administrative password when they create or rebuild a server instance. If the user does not specify a password, a random password is generated and returned in the API response."
msgstr ""
#: ./doc/common/section_compute_config-api.xml:20(para)
msgid "In practice, how the admin password is handled depends on the hypervisor in use and might require additional configuration of the instance. For example, you might have to install an agent to handle the password setting. If the hypervisor and instance configuration do not support setting a password at server create time, the password that is returned by the create API call is misleading because it was ignored."
msgstr ""
#: ./doc/common/section_compute_config-api.xml:28(para)
msgid "To prevent this confusion, use the <option>enable_instance_password</option> configuration option to disable the return of the admin password for installations that do not support setting instance passwords."
msgstr ""
#: ./doc/common/section_compute_config-api.xml:35(title)
msgid "Configure Compute API rate limiting"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:36(para)
msgid "OpenStack Compute supports API rate limiting for the OpenStack API. The rate limiting allows an administrator to configure limits on the type and number of API calls that can be made in a specific time interval."
msgstr ""
#: ./doc/common/section_compute_config-api.xml:40(para)
msgid "When API rate limits are exceeded, HTTP requests return an error with a status code of <errorcode>403</errorcode><errortext>Forbidden</errortext>."
msgstr ""
#: ./doc/common/section_compute_config-api.xml:43(para)
msgid "Rate limiting is not available for the EC2 API."
msgstr ""
#: ./doc/common/section_compute_config-api.xml:46(title)
msgid "Define limits"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:47(para)
msgid "To define limits, set these values:"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:50(para)
msgid "The <emphasis role=\"bold\">HTTP method</emphasis> used in the API call, typically one of GET, PUT, POST, or DELETE."
msgstr ""
#: ./doc/common/section_compute_config-api.xml:55(para)
msgid "A <emphasis role=\"bold\">human readable URI</emphasis> that is used as a friendly description of where the limit is applied."
msgstr ""
#: ./doc/common/section_compute_config-api.xml:60(para)
msgid "A <emphasis role=\"bold\">regular expression</emphasis>. The limit is applied to all URIs that match the regular expression and HTTP method."
msgstr ""
#: ./doc/common/section_compute_config-api.xml:66(para)
msgid "A <emphasis role=\"bold\">limit value </emphasis> that specifies the maximum count of units before the limit takes effect."
msgstr ""
#: ./doc/common/section_compute_config-api.xml:71(para)
msgid "An <emphasis role=\"bold\">interval</emphasis> that specifies time frame to which the limit is applied. The interval can be SECOND, MINUTE, HOUR, or DAY."
msgstr ""
#: ./doc/common/section_compute_config-api.xml:77(para)
msgid "Rate limits are applied in relative order to the HTTP method, going from least to most specific."
msgstr ""
#: ./doc/common/section_compute_config-api.xml:81(title)
msgid "Default limits"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:82(para)
msgid "Normally, you install OpenStack Compute with the following limits enabled:"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:85(caption)
msgid "Default API rate limits"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:88(th) ./doc/common/section_compute_config-api.xml:159(para)
msgid "HTTP method"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:89(th)
msgid "API URI"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:90(th)
msgid "API regular expression"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:91(th)
msgid "Limit"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:96(td) ./doc/common/section_compute_config-api.xml:102(td)
msgid "POST"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:97(td) ./doc/common/section_compute_config-api.xml:109(td) ./doc/common/section_compute_config-api.xml:121(td)
msgid "any URI (*)"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:98(td) ./doc/common/section_compute_config-api.xml:110(td) ./doc/common/section_compute_config-api.xml:122(td)
msgid ".*"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:99(td) ./doc/common/section_compute_config-api.xml:105(td) ./doc/common/section_compute_config-api.xml:111(td) ./doc/common/section_compute_config-api.xml:117(td) ./doc/common/section_compute_config-api.xml:123(td)
msgid "120 per minute"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:103(td)
msgid "/servers"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:104(td)
msgid "^/servers"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:108(td)
msgid "PUT"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:114(td) ./doc/common/section_compute_config-api.xml:126(td)
msgid "GET"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:115(td)
msgid "*changes-since*"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:116(td)
msgid ".*changes-since.*"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:120(td)
msgid "DELETE"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:127(td)
msgid "*/os-fping"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:128(td)
msgid "^/os-fping"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:129(td)
msgid "12 per minute"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:135(title)
msgid "Configure and change limits"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:136(para)
msgid "As part of the WSGI pipeline, the <filename>etc/nova/api-paste.ini</filename> file defines the actual limits."
msgstr ""
#: ./doc/common/section_compute_config-api.xml:139(para)
msgid "To enable limits, include the <option>ratelimit</option>' filter in the API pipeline specification. If the <option>ratelimit</option> filter is removed from the pipeline, limiting is disabled. You must also define the rate limit filter. The lines appear as follows:"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:153(para)
msgid "To modify the limits, add a <literal>limits</literal> specification to the <literal>[filter:ratelimit]</literal> section of the file. Specify the limits in this order:"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:162(para)
msgid "friendly URI"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:165(para)
msgid "regex"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:168(para)
msgid "limit"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:171(para)
msgid "interval"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:174(para)
msgid "The following example shows the default rate-limiting values:"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:181(title)
msgid "Configuration reference"
msgstr ""
#: ./doc/common/section_compute_config-api.xml:182(para)
msgid "The Compute API configuration options are documented in <xref linkend=\"config_table_nova_api\"/>."
msgstr ""
#: ./doc/common/section_cli_nova_fileinjection.xml:9(title)
msgid "Inject files into instances"
msgstr ""
#: ./doc/common/section_cli_nova_fileinjection.xml:10(para)
msgid "You can inject local files into the instance file system when you launch an instance."
msgstr ""
#: ./doc/common/section_cli_nova_fileinjection.xml:12(para)
msgid "Use the <parameter>--file dst-path=src-path</parameter> parameter on the nova <placeholder-1/> command."
msgstr ""
#: ./doc/common/section_cli_nova_fileinjection.xml:14(para)
msgid "You can inject up to five files."
msgstr ""
#: ./doc/common/section_cli_nova_fileinjection.xml:15(para)
msgid "For example, you might inject the <filename>special_authorized_keysfile</filename> file into the instance rather than using the regular ssh key injection."
msgstr ""
#: ./doc/common/section_cli_nova_fileinjection.xml:18(para)
msgid "Run the following command:<placeholder-1/>"
msgstr ""
#: ./doc/common/ch_preface.xml:7(title)
msgid "Preface"
msgstr ""
#: ./doc/common/section_dashboard-configure.xml:7(title)
msgid "Configure the dashboard"
msgstr ""
#: ./doc/common/section_dashboard-configure.xml:9(para)
msgid "You can configure the dashboard for a simple HTTP deployment."
msgstr ""
#: ./doc/common/section_dashboard-configure.xml:15(para)
msgid "Also, you can configure the size of the VNC window in the dashboard."
msgstr ""
#: ./doc/common/section_storage-concepts.xml:11(title)
msgid "Storage concepts"
msgstr ""
#: ./doc/common/section_storage-concepts.xml:12(para)
msgid "The OpenStack stack uses the following storage types:"
msgstr ""
#: ./doc/common/section_storage-concepts.xml:14(caption)
msgid "Storage types"
msgstr ""
#: ./doc/common/section_storage-concepts.xml:20(td)
msgid "On-instance / ephemeral"
msgstr ""
#: ./doc/common/section_storage-concepts.xml:21(td)
msgid "Block storage (cinder)"
msgstr ""
#: ./doc/common/section_storage-concepts.xml:27(td)
msgid "Runs operating systems and provides scratch space"
msgstr ""
#: ./doc/common/section_storage-concepts.xml:28(td)
msgid "Used for adding additional persistent storage to a virtual machine (VM)"
msgstr ""
#: ./doc/common/section_storage-concepts.xml:30(td)
msgid "Used for storing virtual machine images and data"
msgstr ""
#: ./doc/common/section_storage-concepts.xml:33(td)
msgid "Persists until VM is terminated"
msgstr ""
#: ./doc/common/section_storage-concepts.xml:34(td) ./doc/common/section_storage-concepts.xml:35(td)
msgid "Persists until deleted"
msgstr ""
#: ./doc/common/section_storage-concepts.xml:38(td) ./doc/common/section_storage-concepts.xml:39(td)
msgid "Access associated with a VM"
msgstr ""
#: ./doc/common/section_storage-concepts.xml:40(td)
msgid "Available from anywhere"
msgstr ""
#: ./doc/common/section_storage-concepts.xml:43(td)
msgid "Implemented as a filesystem underlying OpenStack Compute"
msgstr ""
#: ./doc/common/section_storage-concepts.xml:45(td)
msgid "Mounted via OpenStack Block Storage controlled protocol (for example, iSCSI)"
msgstr ""
#: ./doc/common/section_storage-concepts.xml:47(td)
msgid "REST API"
msgstr ""
#: ./doc/common/section_storage-concepts.xml:50(td)
msgid "Administrator configures size setting, based on flavors"
msgstr ""
#: ./doc/common/section_storage-concepts.xml:52(td)
msgid "Sizings based on need"
msgstr ""
#: ./doc/common/section_storage-concepts.xml:53(td)
msgid "Easily scalable for future growth"
msgstr ""
#: ./doc/common/section_storage-concepts.xml:56(td)
msgid "Example: 10GB first disk, 30GB/core second disk"
msgstr ""
#: ./doc/common/section_storage-concepts.xml:57(td)
msgid "Example: 1TB \"extra hard drive\""
msgstr ""
#: ./doc/common/section_storage-concepts.xml:58(td)
msgid "Example: 10s of TBs of data set storage"
msgstr ""
#: ./doc/common/section_storage-concepts.xml:65(para)
msgid "<emphasis>You cannot use OpenStack Object Storage like a traditional hard drive.</emphasis> The Object Storage relaxes some of the constraints of a POSIX-style file system to get other gains. You can access the objects through an API which uses HTTP. Subsequently you don't have to provide atomic operations (that is, relying on eventual consistency), you can scale a storage system easily and avoid a central point of failure."
msgstr ""
#: ./doc/common/section_storage-concepts.xml:74(para)
msgid "<emphasis>The OpenStack Image Service is used to manage the virtual machine images in an OpenStack cluster, not store them.</emphasis> It provides an abstraction to different methods for storage - a bridge to the storage, not the storage itself."
msgstr ""
#: ./doc/common/section_storage-concepts.xml:81(para)
msgid "<emphasis>The OpenStack Object Storage can function on its own.</emphasis> The Object Storage (swift) product can be used independently of the Compute (nova) product."
msgstr ""
#: ./doc/common/section_storage-concepts.xml:63(para)
msgid "You should note that:<placeholder-1/>"
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:7(title)
msgid "Add security group and rules"
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:8(para)
msgid "The following procedure shows you how to add security groups and add rules to the default security group."
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:11(title)
msgid "Add or delete a security group"
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:12(para)
msgid "Use the <placeholder-1/> command to add security groups."
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:14(para)
msgid "The following example shows how to create the <literal>secure1</literal> security group:"
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:22(para)
msgid "After you create the security group, you can view it in the security group list:"
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:31(para)
msgid "Use the <placeholder-1/> command to delete security groups. You cannot delete the default security group. The default security group has these initial settings:"
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:37(para)
msgid "All the traffic originated by the instances (outbound traffic) is allowed"
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:41(para)
msgid "All the traffic destined to instances (inbound traffic) is denied"
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:45(para)
msgid "All the instances inside the group are allowed to talk to each other"
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:50(para)
msgid "You can add extra rules into the default security group for handling the egress traffic. Rules are ingress only at this time."
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:54(para)
msgid "The following example deletes the <literal>secure1</literal> group. When you view the security group list, it no longer appears:"
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:66(title)
msgid "Modify security group rules"
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:70(para)
msgid "You cannot change the default outbound behavior."
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:67(para)
msgid "The security group rules control the incoming traffic that can access the instances in the group, while all outbound traffic is automatically allowed. <placeholder-1/>Every security group rule is a policy that allows you to specify inbound connections that can access the instance by source address, destination port, and IP protocol (TCP, UDP or ICMP). Currently, you cannot manage IPv6 and other protocols through the security rules, making them permitted by default. To manage such protocols, you can deploy a firewall in front of your OpenStack cloud to control other types of traffic. The command requires the following arguments for both TCP and UDP rules:"
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:85(emphasis) ./doc/common/section_cli_nova_secgroups.xml:125(emphasis) ./doc/common/section_cli_nova_secgroups.xml:210(emphasis)
msgid "&lt;secgroup&gt;"
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:87(para) ./doc/common/section_cli_nova_secgroups.xml:127(para) ./doc/common/section_cli_nova_secgroups.xml:212(para)
msgid "ID of security group."
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:92(emphasis) ./doc/common/section_cli_nova_secgroups.xml:132(emphasis) ./doc/common/section_cli_nova_secgroups.xml:217(emphasis)
msgid "&lt;ip_proto&gt;"
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:94(para) ./doc/common/section_cli_nova_secgroups.xml:219(para)
msgid "IP protocol (icmp, tcp, udp)."
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:99(emphasis) ./doc/common/section_cli_nova_secgroups.xml:224(emphasis)
msgid "&lt;from_port&gt;"
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:101(para) ./doc/common/section_cli_nova_secgroups.xml:226(para)
msgid "Port at start of range."
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:106(emphasis) ./doc/common/section_cli_nova_secgroups.xml:231(emphasis)
msgid "&lt;to_port&gt;"
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:108(para) ./doc/common/section_cli_nova_secgroups.xml:233(para)
msgid "Port at end of range."
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:113(emphasis) ./doc/common/section_cli_nova_secgroups.xml:153(emphasis) ./doc/common/section_cli_nova_secgroups.xml:238(emphasis)
msgid "&lt;cidr&gt;"
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:115(para) ./doc/common/section_cli_nova_secgroups.xml:240(para)
msgid "CIDR for address range."
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:119(para)
msgid "For ICMP rules, instead of specifying a begin and end port, you specify the allowed ICMP code and ICMP type:"
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:134(para)
msgid "IP protocol (with icmp specified)."
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:139(emphasis)
msgid "&lt;ICMP_code&gt;"
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:141(para)
msgid "The ICMP code."
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:146(emphasis)
msgid "&lt;ICMP_type&gt;"
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:148(para)
msgid "The ICMP type."
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:155(para)
msgid "CIDR for the source address range."
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:160(para)
msgid "Entering <literal>-1</literal> for both code and type indicates that all ICMP codes and types are allowed."
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:165(title)
msgid "The CIDR notation"
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:166(para)
msgid "That notation allows you to specify a base IP address and a suffix that designates the number of significant bits in the IP address used to identify the network. For example, by specifying a <literal>88.170.60.32/27</literal>, you specify <literal>88.170.60.32</literal> as the <emphasis role=\"bold\">base IP</emphasis> and <literal>27</literal> as the <emphasis role=\"bold\">suffix</emphasis>. Because you use an IPv4 format, only 5 bits are available for the host part (32 minus 27). The <literal>0.0.0.0/0</literal> notation means you allow the entire IPv4 range, which allows all addresses."
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:180(para)
msgid "For example, to allow any IP address to access a web server running on one of your instances inside the default security group:"
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:189(para)
msgid "To allow any IP address to ping an instance inside the default security group (Code 0, Type 8 for the ECHO request):"
msgstr ""
#: ./doc/common/section_cli_nova_secgroups.xml:205(para)
msgid "To delete a rule, you must specify exactly the same arguments that you used to create it:"
msgstr ""
#: ./doc/common/section_cli_version.xml:7(title)
msgid "Discover the version number for a client"
msgstr ""
#: ./doc/common/section_cli_version.xml:8(para)
msgid "Run the following command to discover the version number for a client:"
msgstr ""
#: ./doc/common/section_cli_version.xml:11(para)
msgid "For example, to see the version number for the <placeholder-1/> client, run the following command:"
msgstr ""
#: ./doc/common/section_cli_version.xml:15(para)
msgid "The version number (2.15.0 in the example) is returned."
msgstr ""
#: ./doc/common/section_getstart_orchestration.xml:7(title)
msgid "Orchestration module concepts"
msgstr ""
#: ./doc/common/section_getstart_orchestration.xml:8(para)
msgid "The Orchestration module provides a template-based orchestration for describing a cloud application, by running OpenStack API calls to generate running cloud applications. The software integrates other core components of OpenStack into a one-file template system. The templates allow you to create most OpenStack resource types, such as instances, floating IPs, volumes, security groups and users. It also provides advanced functionality, such as instance high availability, instance auto-scaling, and nested stacks. This enables OpenStack core projects to receive a larger user base."
msgstr ""
#: ./doc/common/section_getstart_orchestration.xml:18(para)
msgid "The service enables deployers to integrate with the Orchestration module directly or through custom plug-ins."
msgstr ""
#: ./doc/common/section_getstart_orchestration.xml:20(para)
msgid "The Orchestration module consists of the following components:"
msgstr ""
#: ./doc/common/section_getstart_orchestration.xml:24(term)
msgid "<code>heat</code> command-line client"
msgstr ""
#: ./doc/common/section_getstart_orchestration.xml:25(para)
msgid "A CLI that communicates with the heat-api to run AWS CloudFormation APIs. End developers can directly use the Orchestration REST API."
msgstr ""
#: ./doc/common/section_getstart_orchestration.xml:30(term)
msgid "<code>heat-api</code> component"
msgstr ""
#: ./doc/common/section_getstart_orchestration.xml:30(para)
msgid "An OpenStack-native REST API that processes API requests by sending them to the heat-engine over Remote Procedure Call (RPC)."
msgstr ""
#: ./doc/common/section_getstart_orchestration.xml:36(term)
msgid "<code>heat-api-cfn</code> component"
msgstr ""
#: ./doc/common/section_getstart_orchestration.xml:36(para)
msgid "An AWS Query API that is compatible with AWS CloudFormation. It processes API requests by sending them to the heat-engine over RPC."
msgstr ""
#: ./doc/common/section_getstart_orchestration.xml:42(code)
msgid "heat-engine"
msgstr ""
#: ./doc/common/section_getstart_orchestration.xml:43(para)
msgid "Orchestrates the launching of templates and provides events back to the API consumer."
msgstr ""
#: ./doc/common/ch_using_openstack_overview.xml:7(title)
msgid "How can I <phrase audience=\"enduser\">use</phrase><phrase audience=\"adminuser\">administer</phrase> an OpenStack cloud?"
msgstr ""
#: ./doc/common/ch_using_openstack_overview.xml:11(para)
msgid "As an OpenStack cloud end user, you can provision your own resources within the limits set by administrators."
msgstr ""
#: ./doc/common/ch_using_openstack_overview.xml:13(para)
msgid "As an OpenStack cloud administrative user, you can manage tenants, known as <glossterm baseform=\"project\">projects</glossterm>, users, services, images, flavors, and quotas."
msgstr ""
#: ./doc/common/ch_using_openstack_overview.xml:16(para)
msgid "The examples in this guide show you how to perform tasks by using the following methods:"
msgstr ""
#: ./doc/common/ch_using_openstack_overview.xml:20(para)
msgid "OpenStack dashboard. Use this web-based graphical interface, code named <link href=\"https://github.com/openstack/horizon/\">horizon</link>, to view, create, and manage resources<phrase audience=\"adminuser\"> and services</phrase>."
msgstr ""
#: ./doc/common/ch_using_openstack_overview.xml:26(para)
msgid "OpenStack command-line clients. Each core OpenStack project has a command-line client that you can use to run simple commands to view, create, and manage resources<phrase audience=\"adminuser\"> and services</phrase> in a cloud and automate tasks by using scripts."
msgstr ""
#: ./doc/common/ch_using_openstack_overview.xml:32(para)
msgid "You can modify these examples for your specific use cases."
msgstr ""
#: ./doc/common/ch_using_openstack_overview.xml:33(para)
msgid "In addition to these ways of interacting with a cloud, you can access the OpenStack APIs directly or indirectly through <link href=\"http://curl.haxx.se/\">cURL</link> commands or open SDKs. You can automate access or build tools to manage resources and services by using the native OpenStack APIs or the EC2 compatibility API."
msgstr ""
#: ./doc/common/ch_using_openstack_overview.xml:37(para)
msgid "To use the OpenStack APIs, it helps to be familiar with HTTP/1.1, RESTful web services, the OpenStack services, and JSON or XML data serialization formats."
msgstr ""
#: ./doc/common/ch_using_openstack_overview.xml:40(title)
msgid "Who should read this book?"
msgstr ""
#: ./doc/common/ch_using_openstack_overview.xml:41(para)
msgid "This book is written for anyone who uses virtual machines and cloud resources to develop software or perform research. You should have years of experience with Linux-based tool sets and be comfortable using both GUI and CLI based tools. While this book includes some information about using Python to create and manage cloud resources, Python knowledge is not a pre-requisite for reading this book."
msgstr ""
#: ./doc/common/ch_using_openstack_overview.xml:46(para)
msgid "This book is written for administrators who maintain and secure an OpenStack cloud installation to serve end users' needs. You should have years of experience with Linux-based tools for system administration. You should also be familiar with OpenStack basics, such as managing projects and users, troubleshooting, performing backup and recovery, and monitoring. For more information, see the <link href=\"http://docs.openstack.org/ops\"><citetitle>OpenStack Operations Guide</citetitle></link>."
msgstr ""
#. When image changes, this message will be marked fuzzy or untranslated for you.
#. It doesn't matter what you translate it to: it's not used at all.
#: ./doc/common/section_keystone-concepts.xml:136(None) ./doc/common/section_keystone-concepts.xml:141(None)
msgid "@@image: 'figures/SCH_5002_V00_NUAC-Keystone.png'; md5=734714c50c99fc1d74bdfd9f9cd049a6"
msgstr ""
#: ./doc/common/section_keystone-concepts.xml:8(title)
msgid "OpenStack Identity concepts"
msgstr ""
#: ./doc/common/section_keystone-concepts.xml:9(para)
msgid "The OpenStack<glossterm>Identity Service</glossterm> performs the following functions:"
msgstr ""
#: ./doc/common/section_keystone-concepts.xml:13(para)
msgid "Tracking users and their permissions."
msgstr ""
#: ./doc/common/section_keystone-concepts.xml:16(para)
msgid "Providing a catalog of available services with their API endpoints."
msgstr ""
#: ./doc/common/section_keystone-concepts.xml:20(para)
msgid "When installing OpenStack Identity service, you must register each service in your OpenStack installation. Identity service can then track which OpenStack services are installed, and where they are located on the network."
msgstr ""
#: ./doc/common/section_keystone-concepts.xml:24(para)
msgid "To understand OpenStack Identity, you must understand the following concepts:"
msgstr ""
#: ./doc/common/section_keystone-concepts.xml:28(term)
msgid "User"
msgstr ""
#: ./doc/common/section_keystone-concepts.xml:30(para)
msgid "Digital representation of a person, system, or service who uses OpenStack cloud services. The Identity service validates that incoming requests are made by the user who claims to be making the call. Users have a login and may be assigned tokens to access resources. Users can be directly assigned to a particular tenant and behave as if they are contained in that tenant."
msgstr ""
#: ./doc/common/section_keystone-concepts.xml:41(term)
msgid "Credentials"
msgstr ""
#: ./doc/common/section_keystone-concepts.xml:43(para)
msgid "Data that confirms the user's identity. For example: user name and password, user name and API key, or an authentication token provided by the Identity Service."
msgstr ""
#: ./doc/common/section_keystone-concepts.xml:50(term)
msgid "Authentication"
msgstr ""
#: ./doc/common/section_keystone-concepts.xml:52(para)
msgid "The process of confirming the identity of a user. OpenStack Identity confirms an incoming request by validating a set of credentials supplied by the user."
msgstr ""
#: ./doc/common/section_keystone-concepts.xml:56(para)
msgid "These credentials are initially a user name and password, or a user name and API key. When user credentials are validated, OpenStack Identity issues an authentication token which the user provides in subsequent requests."
msgstr ""
#: ./doc/common/section_keystone-concepts.xml:64(term)
msgid "Token"
msgstr ""
#: ./doc/common/section_keystone-concepts.xml:66(para)
msgid "An alpha-numeric string of text used to access OpenStack APIs and resources. A token may be revoked at any time and is valid for a finite duration."
msgstr ""
#: ./doc/common/section_keystone-concepts.xml:70(para)
msgid "While OpenStack Identity supports token-based authentication in this release, the intention is to support additional protocols in the future. Its main purpose is to be an integration service, and not aspire to be a full-fledged identity store and management solution."
msgstr ""
#: ./doc/common/section_keystone-concepts.xml:79(term)
msgid "Tenant"
msgstr ""
#: ./doc/common/section_keystone-concepts.xml:81(para)
msgid "A container used to group or isolate resources. Tenants also group or isolate identity objects. Depending on the service operator, a tenant may map to a customer, account, organization, or project."
msgstr ""
#: ./doc/common/section_keystone-concepts.xml:90(para)
msgid "An OpenStack service, such as Compute (nova), Object Storage (swift), or Image Service (glance). It provides one or more endpoints in which users can access resources and perform operations."
msgstr ""
#: ./doc/common/section_keystone-concepts.xml:97(term)
msgid "Endpoint"
msgstr ""
#: ./doc/common/section_keystone-concepts.xml:99(para)
msgid "A network-accessible address where you access a service, usually a URL address. If you are using an extension for templates, an endpoint template can be created, which represents the templates of all the consumable services that are available across the regions."
msgstr ""
#: ./doc/common/section_keystone-concepts.xml:107(term)
msgid "Role"
msgstr ""
#: ./doc/common/section_keystone-concepts.xml:109(para)
msgid "A personality with a defined set of user rights and privileges to perform a specific set of operations."
msgstr ""
#: ./doc/common/section_keystone-concepts.xml:111(para)
msgid "In the Identity service, a token that is issued to a user includes the list of roles. Services that are being called by that user determine how they interpret the set of roles a user has and to which operations or resources each role grants access."
msgstr ""
#: ./doc/common/section_keystone-concepts.xml:119(term)
msgid "Keystone Client"
msgstr ""
#: ./doc/common/section_keystone-concepts.xml:121(para)
msgid "A command line interface for the OpenStack Identity API. For example, users can run the <placeholder-1/> and <placeholder-2/> commands to register services in their OpenStack installations."
msgstr ""
#: ./doc/common/section_keystone-concepts.xml:130(para)
msgid "The following diagram shows the OpenStack Identity process flow:"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:7(title)
msgid "Features and benefits"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:12(th)
msgid "Features"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:13(th)
msgid "Benefits"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:18(emphasis)
msgid "Leverages commodity hardware"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:19(td)
msgid "No lock-in, lower price/GB."
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:22(emphasis)
msgid "HDD/node failure agnostic"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:23(td)
msgid "Self-healing, reliable, data redundancy protects from failures."
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:27(emphasis)
msgid "Unlimited storage"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:28(td)
msgid "Large and flat namespace, highly scalable read/write access, able to serve content directly from storage system."
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:32(emphasis)
msgid "Multi-dimensional scalability"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:34(td)
msgid "Scale-out architecture: Scale vertically and horizontally-distributed storage. Backs up and archives large amounts of data with linear performance."
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:39(emphasis)
msgid "Account/container/object structure"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:40(td)
msgid "No nesting, not a traditional file system: Optimized for scale, it scales to multiple petabytes and billions of objects."
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:45(emphasis)
msgid "Built-in replication 3✕ + data redundancy (compared with 2✕ on RAID)"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:48(td)
msgid "A configurable number of accounts, containers and object copies for high availability."
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:52(emphasis)
msgid "Easily add capacity (unlike RAID resize)"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:54(td)
msgid "Elastic data scaling with ease"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:57(emphasis)
msgid "No central database"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:58(td)
msgid "Higher performance, no bottlenecks"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:61(emphasis)
msgid "RAID not required"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:62(td)
msgid "Handle many small, random reads and writes efficiently"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:65(emphasis)
msgid "Built-in management utilities"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:66(td)
msgid "Account management: Create, add, verify, and delete users; Container management: Upload, download, and verify; Monitoring: Capacity, host, network, log trawling, and cluster health."
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:72(emphasis)
msgid "Drive auditing"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:73(td)
msgid "Detect drive failures preempting data corruption"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:76(emphasis)
msgid "Expiring objects"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:77(td)
msgid "Users can set an expiration time or a TTL on an object to control access"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:81(emphasis)
msgid "Direct object access"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:82(td)
msgid "Enable direct browser access to content, such as for a control panel"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:86(emphasis)
msgid "Realtime visibility into client requests"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:88(td)
msgid "Know what users are requesting."
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:91(emphasis)
msgid "Supports S3 API"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:92(td)
msgid "Utilize tools that were designed for the popular S3 API."
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:96(emphasis)
msgid "Restrict containers per account"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:98(td)
msgid "Limit access to control usage by user."
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:101(emphasis)
msgid "Support for NetApp, Nexenta, SolidFire"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:103(td)
msgid "Unified support for block volumes using a variety of storage systems."
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:107(emphasis)
msgid "Snapshot and backup API for block volumes"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:109(td)
msgid "Data protection and recovery for VM data."
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:112(emphasis)
msgid "Standalone volume API available"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:114(td)
msgid "Separate endpoint and API for integration with other compute systems."
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:118(emphasis)
msgid "Integration with Compute"
msgstr ""
#: ./doc/common/section_objectstorage-features.xml:120(td)
msgid "Fully integrated with Compute for attaching block volumes and reporting on usage."
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:7(title)
msgid "Set up session storage for the dashboard"
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:8(para)
msgid "The dashboard uses <link href=\"https://docs.djangoproject.com/en/dev/topics/http/sessions/\">Django sessions framework</link> to handle user session data. However, you can use any available session back end. You customize the session back end through the <literal>SESSION_ENGINE</literal> setting in your <filename>local_settings</filename> file (on Fedora/RHEL/CentOS: <filename> /etc/openstack-dashboard/local_settings</filename>, on Ubuntu and Debian: <filename>/etc/openstack-dashboard/local_settings.py</filename> and on openSUSE: <filename>/srv/www/openstack-dashboard/openstack_dashboard/local/local_settings.py</filename>)."
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:19(para)
msgid "The following sections describe the pros and cons of each option as it pertains to deploying the dashboard."
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:22(title)
msgid "Local memory cache"
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:23(para)
msgid "Local memory storage is the quickest and easiest session back end to set up, as it has no external dependencies whatsoever. It has the following significant drawbacks:"
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:29(para)
msgid "No shared storage across processes or workers."
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:33(para)
msgid "No persistence after a process terminates."
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:37(para)
msgid "The local memory back end is enabled as the default for Horizon solely because it has no dependencies. It is not recommended for production use, or even for serious development work. Enabled by:"
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:50(title)
msgid "Key-value stores"
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:51(para)
msgid "You can use applications such as Memcached or Redis for external caching. These applications offer persistence and shared storage and are useful for small-scale deployments and/or development."
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:56(title)
msgid "Memcached"
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:57(para)
msgid "Memcached is a high-performance and distributed memory object caching system providing in-memory key-value store for small chunks of arbitrary data."
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:59(para) ./doc/common/section_dashboard_sessions.xml:81(para)
msgid "Requirements:"
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:62(para)
msgid "Memcached service running and accessible."
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:65(para)
msgid "Python module <literal>python-memcached</literal> installed."
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:68(para) ./doc/common/section_dashboard_sessions.xml:90(para)
msgid "Enabled by:"
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:78(title)
msgid "Redis"
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:79(para)
msgid "Redis is an open source, BSD licensed, advanced key-value store. It is often referred to as a data structure server."
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:84(para)
msgid "Redis service running and accessible."
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:87(para)
msgid "Python modules <literal>redis</literal> and <literal>django-redis</literal> installed."
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:104(title)
msgid "Initialize and configure the database"
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:105(para)
msgid "Database-backed sessions are scalable, persistent, and can be made high-concurrency and highly-available."
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:107(para)
msgid "However, database-backed sessions are one of the slower session storages and incur a high overhead under heavy usage. Proper configuration of your database deployment can also be a substantial undertaking and is far beyond the scope of this documentation."
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:114(para)
msgid "Start the mysql command-line client:"
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:118(para)
msgid "Enter the MySQL root user's password when prompted."
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:122(para)
msgid "To configure the MySQL database, create the dash database:"
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:127(para)
msgid "Create a MySQL user for the newly created dash database that has full control of the database. Replace <replaceable>DASH_DBPASS</replaceable> with a password for the new user:"
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:131(replaceable) ./doc/common/section_dashboard_sessions.xml:132(replaceable) ./doc/common/section_dashboard_sessions.xml:152(replaceable)
msgid "DASH_DBPASS"
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:135(para)
msgid "Enter quit at the <literal>mysql&gt;</literal> prompt to exit MySQL."
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:139(para)
msgid "In the <filename>local_settings</filename> file (on Fedora/RHEL/CentOS: <filename> /etc/openstack-dashboard/local_settings</filename>, on Ubuntu/Debian: <filename>/etc/openstack-dashboard/local_settings.py</filename> and on openSUSE: <filename>/srv/www/openstack-dashboard/openstack_dashboard/local/local_settings.py</filename>), change these options:"
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:159(para)
msgid "After configuring the <filename>local_settings</filename> as shown, you can run the <placeholder-1/> command to populate this newly created database."
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:164(para)
msgid "Note on openSUSE the path is <filename>/srv/www/openstack-dashboard/manage.py</filename>."
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:166(para)
msgid "As a result, the following output is returned:"
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:174(para)
msgid "To avoid a warning when you restart Apache on Ubuntu, create a <filename>blackhole</filename> directory in the dashboard directory, as follows:"
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:180(title)
msgid "Restart and refresh Apache"
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:184(para)
msgid "On Fedora/RHEL/CentOS: <placeholder-1/><placeholder-2/>"
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:193(para)
msgid "On Ubuntu, restart the <systemitem class=\"service\">nova-api</systemitem> service to ensure that the API server can connect to the dashboard without error:"
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:201(title)
msgid "Cached database"
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:202(para)
msgid "To mitigate the performance issues of database queries, you can use the Django <placeholder-1/> session back end, which utilizes both your database and caching infrastructure to perform write-through caching and efficient retrieval."
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:207(para)
msgid "Enable this hybrid setting by configuring both your database and cache, as discussed previously. Then, set the following value:"
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:213(title)
msgid "Cookies"
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:214(para)
msgid "If you use Django 1.4 or later, the <placeholder-1/> back end avoids server load and scaling problems."
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:216(para)
msgid "This back end stores session data in a cookie, which is stored by the users browser. The back end uses a cryptographic signing technique to ensure session data is not tampered with during transport. This is not the same as encryption; session data is still readable by an attacker."
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:222(para)
msgid "The pros of this engine are that it requires no additional dependencies or infrastructure overhead, and it scales indefinitely as long as the quantity of session data being stored fits into a normal cookie."
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:226(para)
msgid "The biggest downside is that it places session data into storage on the users machine and transports it over the wire. It also limits the quantity of session data that can be stored."
msgstr ""
#: ./doc/common/section_dashboard_sessions.xml:230(para)
msgid "See the Django <link href=\"https://docs.djangoproject.com/en/dev/topics/http/sessions/#using-cookie-based-sessions\">cookie-based sessions</link> documentation."
msgstr ""
#: ./doc/common/section_kvm_enable.xml:7(title)
msgid "Enable KVM"
msgstr ""
#: ./doc/common/section_kvm_enable.xml:8(para)
msgid "To perform these steps, you must be logged in as the <systemitem>root</systemitem> user."
msgstr ""
#: ./doc/common/section_kvm_enable.xml:12(para)
msgid "To determine whether the <literal>svm</literal> or <literal>vmx</literal> CPU extensions are present, run this command:"
msgstr ""
#: ./doc/common/section_kvm_enable.xml:16(para)
msgid "This command generates output if the CPU is hardware-virtualization capable. Even if output is shown, you might still need to enable virtualization in the system BIOS for full support."
msgstr ""
#: ./doc/common/section_kvm_enable.xml:20(para)
msgid "If no output appears, consult your system documentation to ensure that your CPU and motherboard support hardware virtualization. Verify that any relevant hardware virtualization options are enabled in the system BIOS."
msgstr ""
#: ./doc/common/section_kvm_enable.xml:25(para)
msgid "The BIOS for each manufacturer is different. If you must enable virtualization in the BIOS, look for an option containing the words <literal>virtualization</literal>, <literal>VT</literal>, <literal>VMX</literal>, or <literal>SVM</literal>."
msgstr ""
#: ./doc/common/section_kvm_enable.xml:33(para)
msgid "To list the loaded kernel modules and verify that the <literal>kvm</literal> modules are loaded, run this command:"
msgstr ""
#: ./doc/common/section_kvm_enable.xml:37(para)
msgid "If the output includes <systemitem>kvm_intel</systemitem> or <systemitem>kvm_amd</systemitem>, the <systemitem>kvm</systemitem> hardware virtualization modules are loaded and your kernel meets the module requirements for OpenStack Compute."
msgstr ""
#: ./doc/common/section_kvm_enable.xml:44(para)
msgid "If the output does not show that the <literal>kvm</literal> module is loaded, run this command to load it:"
msgstr ""
#: ./doc/common/section_kvm_enable.xml:48(para)
msgid "Run the command for your CPU. For Intel, run this command:"
msgstr ""
#: ./doc/common/section_kvm_enable.xml:51(para)
msgid "For AMD, run this command:"
msgstr ""
#: ./doc/common/section_kvm_enable.xml:53(para)
msgid "Because a KVM installation can change user group membership, you might need to log in again for changes to take effect."
msgstr ""
#: ./doc/common/section_kvm_enable.xml:56(para)
msgid "If the kernel modules do not load automatically, use the procedures listed in these subsections."
msgstr ""
#: ./doc/common/section_kvm_enable.xml:60(para)
msgid "If the checks indicate that required hardware virtualization support or kernel modules are disabled or unavailable, you must either enable this support on the system or find a system with this support."
msgstr ""
#: ./doc/common/section_kvm_enable.xml:65(para)
msgid "Some systems require that you enable VT support in the system BIOS. If you believe your processor supports hardware acceleration but the previous command did not produce output, reboot your machine, enter the system BIOS, and enable the VT option."
msgstr ""
#: ./doc/common/section_kvm_enable.xml:71(para)
msgid "If KVM acceleration is not supported, configure Compute to use a different hypervisor, such as <link href=\"http://docs.openstack.org/trunk/config-reference/content/qemu.html\">QEMU</link> or <link href=\"http://docs.openstack.org/trunk/config-reference/content/introduction-to-xen.html\">Xen</link>."
msgstr ""
#: ./doc/common/section_kvm_enable.xml:77(para)
msgid "These procedures help you load the kernel modules for Intel-based and AMD-based processors if they do not load automatically during KVM installation."
msgstr ""
#: ./doc/common/section_kvm_enable.xml:81(title)
msgid "Intel-based processors"
msgstr ""
#: ./doc/common/section_kvm_enable.xml:82(para)
msgid "If your compute host is Intel-based, run these commands as root to load the kernel modules:"
msgstr ""
#: ./doc/common/section_kvm_enable.xml:86(para)
msgid "Add these lines to the <filename>/etc/modules</filename> file so that these modules load on reboot:"
msgstr ""
#: ./doc/common/section_kvm_enable.xml:92(title)
msgid "AMD-based processors"
msgstr ""
#: ./doc/common/section_kvm_enable.xml:93(para)
msgid "If your compute host is AMD-based, run these commands as root to load the kernel modules:"
msgstr ""
#: ./doc/common/section_kvm_enable.xml:97(para)
msgid "Add these lines to <filename>/etc/modules</filename> file so that these modules load on reboot:"
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:7(caption) ./doc/common/tables/cinder-database.xml:7(caption) ./doc/common/tables/glance-database.xml:7(caption) ./doc/common/tables/sahara-database.xml:7(caption) ./doc/common/tables/neutron-database.xml:7(caption) ./doc/common/tables/trove-database.xml:7(caption) ./doc/common/tables/nova-database.xml:7(caption) ./doc/common/tables/heat-database.xml:7(caption) ./doc/common/tables/keystone-database.xml:7(caption)
msgid "Description of database configuration options"
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:12(th) ./doc/common/tables/neutron-openvswitch_agent.xml:12(th) ./doc/common/tables/heat-clients.xml:12(th) ./doc/common/tables/cinder-solidfire.xml:12(th) ./doc/common/tables/neutron-rpc.xml:12(th) ./doc/common/tables/trove-db_percona.xml:12(th) ./doc/common/tables/nova-periodic.xml:12(th) ./doc/common/tables/keystone-auth.xml:12(th) ./doc/common/tables/keystone-policy.xml:12(th) ./doc/common/tables/glance-auth_token.xml:12(th) ./doc/common/tables/cinder-netapp_7mode_nfs.xml:12(th) ./doc/common/tables/cinder-nimble.xml:12(th) ./doc/common/tables/swift-container-server-container-sync.xml:14(th) ./doc/common/tables/swift-proxy-server-DEFAULT.xml:14(th) ./doc/common/tables/cinder-zoning_fabric.xml:12(th) ./doc/common/tables/ceilometer-redis.xml:12(th) ./doc/common/tables/cinder-storage_ceph.xml:12(th) ./doc/common/tables/ceilometer-vmware.xml:12(th) ./doc/common/tables/neutron-cisco.xml:12(th) ./doc/common/tables/nova-testing.xml:12(th) ./doc/common/tables/nova-metadata.xml:12(th) ./doc/common/tables/heat-clients_nova.xml:12(th) ./doc/common/tables/cinder-hp3par.xml:12(th) ./doc/common/tables/keystone-misc.xml:12(th) ./doc/common/tables/swift-proxy-server-filter-cname_lookup.xml:14(th) ./doc/common/tables/glance-ca.xml:12(th) ./doc/common/tables/neutron-scheduler.xml:12(th) ./doc/common/tables/glance-rbd.xml:12(th) ./doc/common/tables/cinder-fusionio.xml:12(th) ./doc/common/tables/cinder-storage_xen.xml:12(th) ./doc/common/tables/ceilometer-common.xml:12(th) ./doc/common/tables/cinder-pure.xml:12(th) ./doc/common/tables/swift-container-reconciler-filter-catch_errors.xml:14(th) ./doc/common/tables/cinder-database.xml:12(th) ./doc/common/tables/ceilometer-logging.xml:12(th) ./doc/common/tables/heat-common.xml:12(th) ./doc/common/tables/nova-ipv6.xml:12(th) ./doc/common/tables/sahara-zeromq.xml:12(th) ./doc/common/tables/nova-vnc.xml:12(th) ./doc/common/tables/ceilometer-nova_cells.xml:12(th) ./doc/common/tables/swift-container-reconciler-app-proxy-server.xml:14(th) ./doc/common/tables/trove-qpid.xml:12(th) ./doc/common/tables/keystone-api.xml:12(th) ./doc/common/tables/swift-object-expirer-pipeline-main.xml:14(th) ./doc/common/tables/nova-ironic.xml:12(th) ./doc/common/tables/swift-container-server-container-auditor.xml:14(th) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:14(th) ./doc/common/tables/glance-rpc.xml:12(th) ./doc/common/tables/neutron-policy.xml:12(th) ./doc/common/tables/glance-database.xml:12(th) ./doc/common/tables/nova-spice.xml:12(th) ./doc/common/tables/heat-clients_heat.xml:12(th) ./doc/common/tables/nova-xen.xml:12(th) ./doc/common/tables/trove-amqp.xml:12(th) ./doc/common/tables/glance-matchmaker.xml:12(th) ./doc/common/tables/ceilometer-auth_token.xml:12(th) ./doc/common/tables/nova-rabbitmq.xml:12(th) ./doc/common/tables/sahara-database.xml:12(th) ./doc/common/tables/neutron-ml2_cisco.xml:12(th) ./doc/common/tables/nova-policy.xml:12(th) ./doc/common/tables/keystone-identity.xml:12(th) ./doc/common/tables/ceilometer-inspector.xml:12(th) ./doc/common/tables/cinder-scheduler.xml:12(th) ./doc/common/tables/trove-db_cassandra.xml:12(th) ./doc/common/tables/neutron-logging.xml:12(th) ./doc/common/tables/nova-availabilityzones.xml:12(th) ./doc/common/tables/keystone-catalog.xml:12(th) ./doc/common/tables/cinder-netapp_eseries_iscsi.xml:12(th) ./doc/common/tables/neutron-ml2_fslsdn.xml:12(th) ./doc/common/tables/neutron-rootwrap.xml:12(th) ./doc/common/tables/cinder-auth.xml:12(th) ./doc/common/tables/swift-swift-swift-constraints.xml:14(th) ./doc/common/tables/heat-qpid.xml:12(th) ./doc/common/tables/swift-object-expirer-filter-catch_errors.xml:14(th) ./doc/common/tables/swift-proxy-server-filter-slo.xml:14(th) ./doc/common/tables/nova-zookeeper.xml:12(th) ./doc/common/tables/nova-keymgr.xml:12(th) ./doc/common/tables/neutron-auth_token.xml:12(th) ./doc/common/tables/swift-swift-storage-policy-0.xml:14(th) ./doc/common/tables/swift-proxy-server-filter-cache.xml:14(th) ./doc/common/tables/nova-ldap.xml:12(th) ./doc/common/tables/swift-container-server-filter-recon.xml:14(th) ./doc/common/tables/sahara-debug.xml:12(th) ./doc/common/tables/swift-proxy-server-pipeline-main.xml:14(th) ./doc/common/tables/ceilometer-auth.xml:12(th) ./doc/common/tables/cinder-quota.xml:12(th) ./doc/common/tables/swift-proxy-server-filter-account-quotas.xml:14(th) ./doc/common/tables/keystone-os_inherit.xml:12(th) ./doc/common/tables/neutron-sdnve.xml:12(th) ./doc/common/tables/nova-compute.xml:12(th) ./doc/common/tables/nova-scheduler.xml:12(th) ./doc/common/tables/cinder-backups_ceph.xml:12(th) ./doc/common/tables/nova-vmware.xml:12(th) ./doc/common/tables/heat-cfn_api.xml:12(th) ./doc/common/tables/neutron-vmware.xml:12(th) ./doc/common/tables/nova-rdp.xml:12(th) ./doc/common/tables/trove-ca.xml:12(th) ./doc/common/tables/keystone-assignment.xml:12(th) ./doc/common/tables/cinder-zfssa.xml:12(th) ./doc/common/tables/nova-zeromq.xml:12(th) ./doc/common/tables/cinder-storage.xml:12(th) ./doc/common/tables/glance-registry.xml:12(th) ./doc/common/tables/swift-swift-storage-policy-1.xml:14(th) ./doc/common/tables/neutron-embrane.xml:12(th) ./doc/common/tables/heat-quota.xml:12(th) ./doc/common/tables/trove-network.xml:12(th) ./doc/common/tables/swift-account-server-filter-healthcheck.xml:14(th) ./doc/common/tables/nova-common.xml:12(th) ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:14(th) ./doc/common/tables/nova-volumes.xml:12(th) ./doc/common/tables/neutron-redis.xml:12(th) ./doc/common/tables/trove-db_mysql.xml:12(th) ./doc/common/tables/neutron-dvr.xml:12(th) ./doc/common/tables/heat-zeromq.xml:12(th) ./doc/common/tables/heat-amqp.xml:12(th) ./doc/common/tables/neutron-linuxbridge_agent.xml:12(th) ./doc/common/tables/cinder-logging.xml:12(th) ./doc/common/tables/nova-redis.xml:12(th) ./doc/common/tables/swift-container-server-DEFAULT.xml:14(th) ./doc/common/tables/glance-rabbitmq.xml:12(th) ./doc/common/tables/neutron-l3_agent.xml:12(th) ./doc/common/tables/swift-container-server-pipeline-main.xml:14(th) ./doc/common/tables/glance-policy.xml:12(th) ./doc/common/tables/nova-neutron.xml:12(th) ./doc/common/tables/sahara-redis.xml:12(th) ./doc/common/tables/cinder-backups.xml:12(th) ./doc/common/tables/cinder-keymgr.xml:12(th) ./doc/common/tables/keystone-ldap.xml:12(th) ./doc/common/tables/trove-db_postgresql.xml:12(th) ./doc/common/tables/glance-vmware.xml:12(th) ./doc/common/tables/swift-account-server-filter-xprofile.xml:14(th) ./doc/common/tables/ceilometer-xenapi.xml:12(th) ./doc/common/tables/swift-proxy-server-filter-xprofile.xml:14(th) ./doc/common/tables/swift-proxy-server-filter-container-quotas.xml:14(th) ./doc/common/tables/cinder-zoning.xml:12(th) ./doc/common/tables/heat-notification.xml:12(th) ./doc/common/tables/swift-container-server-filter-healthcheck.xml:14(th) ./doc/common/tables/nova-vpn.xml:12(th) ./doc/common/tables/neutron-vpn.xml:12(th) ./doc/common/tables/swift-object-server-filter-xprofile.xml:14(th) ./doc/common/tables/swift-object-expirer-object-expirer.xml:14(th) ./doc/common/tables/trove-common.xml:12(th) ./doc/common/tables/trove-api.xml:12(th) ./doc/common/tables/cinder-zadara.xml:12(th) ./doc/common/tables/swift-object-server-filter-healthcheck.xml:14(th) ./doc/common/tables/nova-conductor.xml:12(th) ./doc/common/tables/swift-object-server-app-object-server.xml:14(th) ./doc/common/tables/swift-proxy-server-filter-catch_errors.xml:14(th) ./doc/common/tables/nova-livemigration.xml:12(th) ./doc/common/tables/swift-container-reconciler-container-reconciler.xml:14(th) ./doc/common/tables/heat-rabbitmq.xml:12(th) ./doc/common/tables/swift-proxy-server-filter-keystoneauth.xml:14(th) ./doc/common/tables/keystone-amqp.xml:12(th) ./doc/common/tables/keystone-rpc.xml:12(th) ./doc/common/tables/swift-object-server-DEFAULT.xml:14(th) ./doc/common/tables/cinder-zones.xml:12(th) ./doc/common/tables/cinder-scality.xml:12(th) ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:14(th) ./doc/common/tables/neutron-agent.xml:12(th) ./doc/common/tables/cinder-emc.xml:12(th) ./doc/common/tables/cinder-vmware.xml:12(th) ./doc/common/tables/neutron-ml2_flat.xml:12(th) ./doc/common/tables/heat-metadata_api.xml:12(th) ./doc/common/tables/trove-rabbitmq.xml:12(th) ./doc/common/tables/nova-upgrade_levels.xml:12(th) ./doc/common/tables/cinder-netapp_cdot_iscsi.xml:12(th) ./doc/common/tables/neutron-ml2_ofa.xml:12(th) ./doc/common/tables/glance-api.xml:12(th) ./doc/common/tables/heat-waitcondition_api.xml:12(th) ./doc/common/tables/swift-proxy-server-filter-gatekeeper.xml:14(th) ./doc/common/tables/swift-rsyncd-container.xml:14(th) ./doc/common/tables/cinder-storwize.xml:12(th) ./doc/common/tables/cinder-hplefthand.xml:12(th) ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:14(th) ./doc/common/tables/sahara-auth_token.xml:12(th) ./doc/common/tables/neutron-ipv6_ra.xml:12(th) ./doc/common/tables/glance-s3.xml:12(th) ./doc/common/tables/nova-rootwrap.xml:12(th) ./doc/common/tables/heat-loadbalancer.xml:12(th) ./doc/common/tables/ceilometer-api.xml:12(th) ./doc/common/tables/ceilometer-exchange.xml:12(th) ./doc/common/tables/cinder-lvm.xml:12(th) ./doc/common/tables/trove-dns.xml:12(th) ./doc/common/tables/sahara-amqp.xml:12(th) ./doc/common/tables/swift-container-reconciler-filter-proxy-logging.xml:14(th) ./doc/common/tables/nova-cells.xml:12(th) ./doc/common/tables/trove-volume.xml:12(th) ./doc/common/tables/heat-auth_token.xml:12(th) ./doc/common/tables/neutron-quotas.xml:12(th) ./doc/common/tables/nova-auth_token.xml:12(th) ./doc/common/tables/cinder-storage_nfs.xml:12(th) ./doc/common/tables/cinder-hds-hnas.xml:12(th) ./doc/common/tables/heat-api.xml:12(th) ./doc/common/tables/swift-proxy-server-filter-tempurl.xml:14(th) ./doc/common/tables/heat-clients_ceilometer.xml:12(th) ./doc/common/tables/neutron-ryu.xml:12(th) ./doc/common/tables/glance-logging.xml:12(th) ./doc/common/tables/cinder-swift.xml:12(th) ./doc/common/tables/swift-rsyncd-account.xml:14(th) ./doc/common/tables/neutron-metering_agent.xml:12(th) ./doc/common/tables/neutron-zeromq.xml:12(th) ./doc/common/tables/heat-clients_glance.xml:12(th) ./doc/common/tables/cinder-storage_glusterfs.xml:12(th) ./doc/common/tables/cinder-common.xml:12(th) ./doc/common/tables/glance-swift.xml:12(th) ./doc/common/tables/trove-quota.xml:12(th) ./doc/common/tables/trove-clients.xml:12(th) ./doc/common/tables/cinder-auth_token.xml:12(th) ./doc/common/tables/ceilometer-alarm.xml:12(th) ./doc/common/tables/ceilometer-events.xml:12(th) ./doc/common/tables/neutron-lbaas_haproxy.xml:12(th) ./doc/common/tables/cinder-xiv.xml:12(th) ./doc/common/tables/swift-proxy-server-filter-name_check.xml:14(th) ./doc/common/tables/neutron-sriov.xml:12(th) ./doc/common/tables/neutron-ml2_bigswitch.xml:12(th) ./doc/common/tables/nova-glance.xml:12(th) ./doc/common/tables/neutron-database.xml:12(th) ./doc/common/tables/keystone-auth_token.xml:12(th) ./doc/common/tables/nova-s3.xml:12(th) ./doc/common/tables/nova-serial_console.xml:12(th) ./doc/common/tables/nova-pci.xml:12(th) ./doc/common/tables/swift-account-server-filter-recon.xml:14(th) ./doc/common/tables/heat-clients_cinder.xml:12(th) ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:14(th) ./doc/common/tables/keystone-revoke.xml:12(th) ./doc/common/tables/sahara-common.xml:12(th) ./doc/common/tables/cinder-api.xml:12(th) ./doc/common/tables/trove-db_couchbase.xml:12(th) ./doc/common/tables/heat-clients_trove.xml:12(th) ./doc/common/tables/swift-account-server-account-replicator.xml:14(th) ./doc/common/tables/neutron-plumgrid.xml:12(th) ./doc/common/tables/trove-heat.xml:12(th) ./doc/common/tables/glance-sheepdog.xml:12(th) ./doc/common/tables/keystone-mapping.xml:12(th) ./doc/common/tables/swift-container-sync-realms-DEFAULT.xml:14(th) ./doc/common/tables/cinder-windows.xml:12(th) ./doc/common/tables/cinder-san-solaris.xml:12(th) ./doc/common/tables/neutron-nuage.xml:12(th) ./doc/common/tables/keystone-rabbitmq.xml:12(th) ./doc/common/tables/keystone-zeromq.xml:12(th) ./doc/common/tables/glance-zeromq.xml:12(th) ./doc/common/tables/neutron-bigswitch.xml:12(th) ./doc/common/tables/neutron-cfg_agent.xml:12(th) ./doc/common/tables/ceilometer-rpc.xml:12(th) ./doc/common/tables/swift-container-server-container-updater.xml:14(th) ./doc/common/tables/trove-db_mongodb.xml:12(th) ./doc/common/tables/swift-object-server-object-replicator.xml:14(th) ./doc/common/tables/glance-filesystem.xml:12(th) ./doc/common/tables/trove-rpc.xml:12(th) ./doc/common/tables/ceilometer-swift.xml:12(th) ./doc/common/tables/trove-backup.xml:12(th) ./doc/common/tables/nova-network.xml:12(th) ./doc/common/tables/glance-redis.xml:12(th) ./doc/common/tables/keystone-ssl.xml:12(th) ./doc/common/tables/cinder-prophetstor_dpl.xml:12(th) ./doc/common/tables/nova-ca.xml:12(th) ./doc/common/tables/neutron-l3_arista.xml:12(th) ./doc/common/tables/neutron-dhcp_agent.xml:12(th) ./doc/common/tables/ceilometer-collector.xml:12(th) ./doc/common/tables/cinder-hds-hus.xml:12(th) ./doc/common/tables/cinder-netapp_7mode_iscsi.xml:12(th) ./doc/common/tables/swift-swift-swift-hash.xml:14(th) ./doc/common/tables/neutron-ml2_gre.xml:12(th) ./doc/common/tables/neutron-varmour.xml:12(th) ./doc/common/tables/heat-debug.xml:12(th) ./doc/common/tables/swift-proxy-server-filter-dlo.xml:14(th) ./doc/common/tables/nova-kombu.xml:12(th) ./doc/common/tables/trove-guestagent.xml:12(th) ./doc/common/tables/nova-qpid.xml:12(th) ./doc/common/tables/glance-qpid.xml:12(th) ./doc/common/tables/sahara-rpc.xml:12(th) ./doc/common/tables/neutron-lbaas_radware.xml:12(th) ./doc/common/tables/neutron-ml2_sriov.xml:12(th) ./doc/common/tables/neutron-ml2_l2pop.xml:12(th) ./doc/common/tables/cinder-ibmnas.xml:12(th) ./doc/common/tables/glance-amqp.xml:12(th) ./doc/common/tables/neutron-embrane_lb.xml:12(th) ./doc/common/tables/cinder-fujitsu_eternus_dx.xml:12(th) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:14(th) ./doc/common/tables/sahara-logging.xml:12(th) ./doc/common/tables/swift-proxy-server-filter-authtoken.xml:14(th) ./doc/common/tables/neutron-testing.xml:12(th) ./doc/common/tables/swift-object-server-pipeline-main.xml:14(th) ./doc/common/tables/swift-memcache-memcache.xml:14(th) ./doc/common/tables/neutron-ca.xml:12(th) ./doc/common/tables/ceilometer-debug.xml:12(th) ./doc/common/tables/swift-account-server-app-account-server.xml:14(th) ./doc/common/tables/swift-proxy-server-filter-formpost.xml:14(th) ./doc/common/tables/trove-compute.xml:12(th) ./doc/common/tables/sahara-rabbitmq.xml:12(th) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:14(th) ./doc/common/tables/swift-container-server-filter-xprofile.xml:14(th) ./doc/common/tables/swift-object-expirer-filter-cache.xml:14(th) ./doc/common/tables/trove-db_redis.xml:12(th) ./doc/common/tables/cinder-rpc.xml:12(th) ./doc/common/tables/swift-container-sync-realms-realm2.xml:14(th) ./doc/common/tables/cinder-hpmsa.xml:12(th) ./doc/common/tables/nova-apiv3.xml:12(th) ./doc/common/tables/keystone-oauth.xml:12(th) ./doc/common/tables/cinder-storage_gpfs.xml:12(th) ./doc/common/tables/neutron-ml2_vlan.xml:12(th) ./doc/common/tables/swift-object-server-object-auditor.xml:14(th) ./doc/common/tables/trove-zeromq.xml:12(th) ./doc/common/tables/neutron-lbaas.xml:12(th) ./doc/common/tables/swift-container-reconciler-filter-cache.xml:14(th) ./doc/common/tables/cinder-backups_swift.xml:12(th) ./doc/common/tables/trove-database.xml:12(th) ./doc/common/tables/swift-container-server-app-container-server.xml:14(th) ./doc/common/tables/nova-authentication.xml:12(th) ./doc/common/tables/neutron-nvsd.xml:12(th) ./doc/common/tables/cinder-ca.xml:12(th) ./doc/common/tables/swift-account-server-pipeline-main.xml:14(th) ./doc/common/tables/glance-gridfs.xml:12(th) ./doc/common/tables/neutron-notifier.xml:12(th) ./doc/common/tables/nova-rpc_all.xml:12(th) ./doc/common/tables/neutron-hyperv_agent.xml:12(th) ./doc/common/tables/ceilometer-tripleo.xml:12(th) ./doc/common/tables/keystone-federation.xml:12(th) ./doc/common/tables/cinder-eqlx.xml:12(th) ./doc/common/tables/heat-redis.xml:12(th) ./doc/common/tables/nova-ec2.xml:12(th) ./doc/common/tables/keystone-credential.xml:12(th) ./doc/common/tables/cinder-block-device.xml:12(th) ./doc/common/tables/neutron-metadata.xml:12(th) ./doc/common/tables/neutron-lbaas_netscaler.xml:12(th) ./doc/common/tables/nova-fping.xml:12(th) ./doc/common/tables/swift-proxy-server-filter-staticweb.xml:14(th) ./doc/common/tables/trove-cluster.xml:12(th) ./doc/common/tables/swift-container-server-container-replicator.xml:14(th) ./doc/common/tables/sahara-qpid.xml:12(th) ./doc/common/tables/neutron-ml2_ncs.xml:12(th) ./doc/common/tables/neutron-ml2_arista.xml:12(th) ./doc/common/tables/nova-trustedcomputing.xml:12(th) ./doc/common/tables/swift-proxy-server-filter-bulk.xml:14(th) ./doc/common/tables/swift-object-expirer-app-proxy-server.xml:14(th) ./doc/common/tables/neutron-compute.xml:12(th) ./doc/common/tables/glance-imagecache.xml:12(th) ./doc/common/tables/neutron-ml2_brocade.xml:12(th) ./doc/common/tables/swift-account-server-account-auditor.xml:14(th) ./doc/common/tables/cinder-nas.xml:12(th) ./doc/common/tables/cinder-netapp_cdot_nfs.xml:12(th) ./doc/common/tables/heat-clients_swift.xml:12(th) ./doc/common/tables/keystone-logging.xml:12(th) ./doc/common/tables/neutron-brocade.xml:12(th) ./doc/common/tables/neutron-ml2_odl.xml:12(th) ./doc/common/tables/swift-object-server-filter-recon.xml:14(th) ./doc/common/tables/heat-rpc.xml:12(th) ./doc/common/tables/trove-taskmanager.xml:12(th) ./doc/common/tables/heat-cloudwatch_api.xml:12(th) ./doc/common/tables/cinder-hitachi.xml:12(th) ./doc/common/tables/cinder-images.xml:12(th) ./doc/common/tables/cinder-huawei.xml:12(th) ./doc/common/tables/nova-console.xml:12(th) ./doc/common/tables/cinder-profiler.xml:12(th) ./doc/common/tables/neutron-fwaas.xml:12(th) ./doc/common/tables/cinder-nexenta_nfs.xml:12(th) ./doc/common/tables/nova-database.xml:12(th) ./doc/common/tables/nova-quota.xml:12(th) ./doc/common/tables/heat-logging.xml:12(th) ./doc/common/tables/trove-redis.xml:12(th) ./doc/common/tables/keystone-stats.xml:12(th) ./doc/common/tables/heat-crypt.xml:12(th) ./doc/common/tables/neutron-midonet.xml:12(th) ./doc/common/tables/cinder-coraid.xml:12(th) ./doc/common/tables/neutron-wsgi.xml:12(th) ./doc/common/tables/cinder-compute.xml:12(th) ./doc/common/tables/swift-rsyncd-object.xml:14(th) ./doc/common/tables/glance-wsgi.xml:12(th) ./doc/common/tables/swift-drive-audit-drive-audit.xml:14(th) ./doc/common/tables/nova-baremetal.xml:12(th) ./doc/common/tables/neutron-qpid.xml:12(th) ./doc/common/tables/nova-rpc.xml:12(th) ./doc/common/tables/cinder-backups_tsm.xml:12(th) ./doc/common/tables/cinder-san.xml:12(th) ./doc/common/tables/nova-logging.xml:12(th) ./doc/common/tables/neutron-nec.xml:12(th) ./doc/common/tables/keystone-security.xml:12(th) ./doc/common/tables/heat-clients_neutron.xml:12(th) ./doc/common/tables/nova-api.xml:12(th) ./doc/common/tables/neutron-opencontrail.xml:12(th) ./doc/common/tables/neutron-ml2_mlnx.xml:12(th) ./doc/common/tables/trove-auth_token.xml:12(th) ./doc/common/tables/keystone-trust.xml:12(th) ./doc/common/tables/swift-container-reconciler-pipeline-main.xml:14(th) ./doc/common/tables/glance-cinder.xml:12(th) ./doc/common/tables/swift-object-server-object-updater.xml:14(th) ./doc/common/tables/glance-common.xml:12(th) ./doc/common/tables/neutron-ml2_vxlan.xml:12(th) ./doc/common/tables/swift-dispersion-dispersion.xml:14(th) ./doc/common/tables/swift-account-server-DEFAULT.xml:14(th) ./doc/common/tables/swift-proxy-server-filter-domain_remap.xml:14(th) ./doc/common/tables/trove-nova.xml:12(th) ./doc/common/tables/neutron-meta.xml:12(th) ./doc/common/tables/neutron-rabbitmq.xml:12(th) ./doc/common/tables/keystone-ec2.xml:12(th) ./doc/common/tables/heat-clients_keystone.xml:12(th) ./doc/common/tables/neutron-api.xml:12(th) ./doc/common/tables/trove-logging.xml:12(th) ./doc/common/tables/keystone-kvs.xml:12(th) ./doc/common/tables/keystone-redis.xml:12(th) ./doc/common/tables/nova-xvpnvncproxy.xml:12(th) ./doc/common/tables/glance-paste.xml:12(th) ./doc/common/tables/swift-proxy-server-filter-list-endpoints.xml:14(th) ./doc/common/tables/swift-account-server-account-reaper.xml:14(th) ./doc/common/tables/nova-hyperv.xml:12(th) ./doc/common/tables/swift-proxy-server-filter-container_sync.xml:14(th) ./doc/common/tables/heat-clients_backends.xml:12(th) ./doc/common/tables/glance-testing.xml:12(th) ./doc/common/tables/neutron-common.xml:12(th) ./doc/common/tables/nova-hypervisor.xml:12(th) ./doc/common/tables/keystone-qpid.xml:12(th) ./doc/common/tables/swift-container-sync-realms-realm1.xml:14(th) ./doc/common/tables/swift-proxy-server-filter-healthcheck.xml:14(th) ./doc/common/tables/nova-wsgi.xml:12(th) ./doc/common/tables/keystone-cache.xml:12(th) ./doc/common/tables/nova-ephemeral_storage_encryption.xml:12(th) ./doc/common/tables/nova-configdrive.xml:12(th) ./doc/common/tables/keystone-token.xml:12(th) ./doc/common/tables/ceilometer-qpid.xml:12(th) ./doc/common/tables/cinder-datera.xml:12(th) ./doc/common/tables/heat-database.xml:12(th) ./doc/common/tables/ceilometer-rabbitmq.xml:12(th) ./doc/common/tables/neutron-ml2.xml:12(th) ./doc/common/tables/keystone-database.xml:12(th) ./doc/common/tables/glance-profiler.xml:12(th) ./doc/common/tables/keystone-memcache.xml:12(th) ./doc/common/tables/trove-debug.xml:12(th) ./doc/common/tables/trove-swift.xml:12(th) ./doc/common/tables/nova-tilera.xml:12(th) ./doc/common/tables/nova-libvirt.xml:12(th) ./doc/common/tables/neutron-mlnx.xml:12(th) ./doc/common/tables/cinder-zoning_manager.xml:12(th) ./doc/common/tables/ceilometer-amqp.xml:12(th) ./doc/common/tables/ceilometer-glance.xml:12(th) ./doc/common/tables/neutron-securitygroups.xml:12(th) ./doc/common/tables/keystone-debug.xml:12(th) ./doc/common/tables/cinder-rootwrap.xml:12(th) ./doc/common/tables/cinder-nexenta_iscsi.xml:12(th)
msgid "Configuration option = Default value"
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:21(td)
msgid "database_connection = None"
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:22(td)
msgid "(StrOpt) DEPRECATED - Database connection string."
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:28(td)
msgid "alarm_connection = None"
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:29(td) ./doc/common/tables/ceilometer-conf-changes.xml:89(td)
msgid "(StrOpt) The connection string used to connect to the alarm database. (if unset, connection is used)"
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:32(td) ./doc/common/tables/cinder-database.xml:32(td) ./doc/common/tables/glance-database.xml:21(td) ./doc/common/tables/sahara-database.xml:28(td) ./doc/common/tables/neutron-database.xml:21(td) ./doc/common/tables/nova-database.xml:28(td) ./doc/common/tables/heat-database.xml:21(td) ./doc/common/tables/keystone-database.xml:21(td)
msgid "backend = sqlalchemy"
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:33(td) ./doc/common/tables/cinder-database.xml:33(td) ./doc/common/tables/glance-database.xml:22(td) ./doc/common/tables/sahara-database.xml:29(td) ./doc/common/tables/neutron-database.xml:22(td) ./doc/common/tables/nova-database.xml:29(td) ./doc/common/tables/heat-database.xml:22(td) ./doc/common/tables/keystone-database.xml:22(td)
msgid "(StrOpt) The back end to use for the database."
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:36(td) ./doc/common/tables/cinder-database.xml:36(td) ./doc/common/tables/glance-database.xml:25(td) ./doc/common/tables/sahara-database.xml:32(td) ./doc/common/tables/neutron-database.xml:25(td) ./doc/common/tables/nova-database.xml:32(td) ./doc/common/tables/heat-database.xml:25(td) ./doc/common/tables/keystone-database.xml:25(td)
msgid "connection = None"
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:37(td) ./doc/common/tables/cinder-database.xml:37(td) ./doc/common/tables/glance-database.xml:26(td) ./doc/common/tables/sahara-database.xml:33(td) ./doc/common/tables/neutron-database.xml:26(td) ./doc/common/tables/nova-database.xml:33(td) ./doc/common/tables/heat-database.xml:26(td) ./doc/common/tables/keystone-database.xml:26(td)
msgid "(StrOpt) The SQLAlchemy connection string to use to connect to the database."
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:40(td) ./doc/common/tables/cinder-database.xml:40(td) ./doc/common/tables/glance-database.xml:29(td) ./doc/common/tables/sahara-database.xml:36(td) ./doc/common/tables/neutron-database.xml:29(td) ./doc/common/tables/nova-database.xml:36(td) ./doc/common/tables/heat-database.xml:29(td) ./doc/common/tables/keystone-database.xml:29(td)
msgid "connection_debug = 0"
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:41(td) ./doc/common/tables/cinder-database.xml:41(td) ./doc/common/tables/glance-database.xml:30(td) ./doc/common/tables/sahara-database.xml:37(td) ./doc/common/tables/neutron-database.xml:30(td) ./doc/common/tables/nova-database.xml:37(td) ./doc/common/tables/heat-database.xml:30(td) ./doc/common/tables/keystone-database.xml:30(td)
msgid "(IntOpt) Verbosity of SQL debugging information: 0=None, 100=Everything."
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:44(td) ./doc/common/tables/cinder-database.xml:44(td) ./doc/common/tables/glance-database.xml:33(td) ./doc/common/tables/sahara-database.xml:40(td) ./doc/common/tables/neutron-database.xml:33(td) ./doc/common/tables/nova-database.xml:40(td) ./doc/common/tables/heat-database.xml:33(td) ./doc/common/tables/keystone-database.xml:33(td)
msgid "connection_trace = False"
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:45(td) ./doc/common/tables/cinder-database.xml:45(td) ./doc/common/tables/glance-database.xml:34(td) ./doc/common/tables/sahara-database.xml:41(td) ./doc/common/tables/neutron-database.xml:34(td) ./doc/common/tables/nova-database.xml:41(td) ./doc/common/tables/heat-database.xml:34(td) ./doc/common/tables/keystone-database.xml:34(td)
msgid "(BoolOpt) Add Python stack traces to SQL as comment strings."
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:48(td) ./doc/common/tables/cinder-database.xml:48(td) ./doc/common/tables/glance-database.xml:37(td) ./doc/common/tables/sahara-database.xml:44(td) ./doc/common/tables/neutron-database.xml:37(td) ./doc/common/tables/nova-database.xml:44(td) ./doc/common/tables/heat-database.xml:37(td) ./doc/common/tables/keystone-database.xml:37(td)
msgid "db_inc_retry_interval = True"
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:49(td) ./doc/common/tables/cinder-database.xml:49(td) ./doc/common/tables/glance-database.xml:38(td) ./doc/common/tables/sahara-database.xml:45(td) ./doc/common/tables/heat-conf-changes.xml:77(td) ./doc/common/tables/ceilometer-conf-changes.xml:93(td) ./doc/common/tables/neutron-database.xml:38(td) ./doc/common/tables/nova-database.xml:45(td) ./doc/common/tables/heat-database.xml:38(td) ./doc/common/tables/keystone-database.xml:38(td) ./doc/common/tables/cinder-conf-changes.xml:417(td)
msgid "(BoolOpt) If True, increases the interval between database connection retries up to db_max_retry_interval."
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:52(td) ./doc/common/tables/cinder-database.xml:52(td) ./doc/common/tables/glance-database.xml:41(td) ./doc/common/tables/sahara-database.xml:48(td) ./doc/common/tables/neutron-database.xml:41(td) ./doc/common/tables/nova-database.xml:48(td) ./doc/common/tables/heat-database.xml:41(td) ./doc/common/tables/keystone-database.xml:41(td)
msgid "db_max_retries = 20"
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:53(td) ./doc/common/tables/cinder-database.xml:53(td) ./doc/common/tables/glance-database.xml:42(td) ./doc/common/tables/sahara-database.xml:49(td) ./doc/common/tables/heat-conf-changes.xml:81(td) ./doc/common/tables/ceilometer-conf-changes.xml:97(td) ./doc/common/tables/neutron-database.xml:42(td) ./doc/common/tables/nova-database.xml:49(td) ./doc/common/tables/heat-database.xml:42(td) ./doc/common/tables/keystone-database.xml:42(td) ./doc/common/tables/cinder-conf-changes.xml:421(td)
msgid "(IntOpt) Maximum database connection retries before error is raised. Set to -1 to specify an infinite retry count."
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:56(td) ./doc/common/tables/cinder-database.xml:56(td) ./doc/common/tables/glance-database.xml:45(td) ./doc/common/tables/sahara-database.xml:52(td) ./doc/common/tables/neutron-database.xml:45(td) ./doc/common/tables/nova-database.xml:52(td) ./doc/common/tables/heat-database.xml:45(td) ./doc/common/tables/keystone-database.xml:45(td)
msgid "db_max_retry_interval = 10"
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:57(td) ./doc/common/tables/cinder-database.xml:57(td) ./doc/common/tables/glance-database.xml:46(td) ./doc/common/tables/sahara-database.xml:53(td) ./doc/common/tables/heat-conf-changes.xml:85(td) ./doc/common/tables/ceilometer-conf-changes.xml:101(td) ./doc/common/tables/neutron-database.xml:46(td) ./doc/common/tables/nova-database.xml:53(td) ./doc/common/tables/heat-database.xml:46(td) ./doc/common/tables/keystone-database.xml:46(td) ./doc/common/tables/cinder-conf-changes.xml:425(td)
msgid "(IntOpt) If db_inc_retry_interval is set, the maximum seconds between database connection retries."
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:60(td) ./doc/common/tables/cinder-database.xml:60(td) ./doc/common/tables/glance-database.xml:49(td) ./doc/common/tables/sahara-database.xml:56(td) ./doc/common/tables/neutron-database.xml:49(td) ./doc/common/tables/nova-database.xml:56(td) ./doc/common/tables/heat-database.xml:49(td) ./doc/common/tables/keystone-database.xml:49(td)
msgid "db_retry_interval = 1"
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:61(td) ./doc/common/tables/cinder-database.xml:61(td) ./doc/common/tables/glance-database.xml:50(td) ./doc/common/tables/sahara-database.xml:57(td) ./doc/common/tables/heat-conf-changes.xml:89(td) ./doc/common/tables/ceilometer-conf-changes.xml:105(td) ./doc/common/tables/neutron-database.xml:50(td) ./doc/common/tables/nova-database.xml:57(td) ./doc/common/tables/heat-database.xml:50(td) ./doc/common/tables/keystone-database.xml:50(td) ./doc/common/tables/cinder-conf-changes.xml:429(td)
msgid "(IntOpt) Seconds between database connection retries."
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:64(td) ./doc/common/tables/cinder-database.xml:64(td) ./doc/common/tables/glance-database.xml:53(td) ./doc/common/tables/sahara-database.xml:60(td) ./doc/common/tables/neutron-database.xml:53(td) ./doc/common/tables/nova-database.xml:60(td) ./doc/common/tables/heat-database.xml:53(td) ./doc/common/tables/keystone-database.xml:53(td)
msgid "idle_timeout = 3600"
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:65(td) ./doc/common/tables/cinder-database.xml:65(td) ./doc/common/tables/glance-database.xml:54(td) ./doc/common/tables/sahara-database.xml:61(td) ./doc/common/tables/neutron-database.xml:54(td) ./doc/common/tables/nova-database.xml:61(td) ./doc/common/tables/heat-database.xml:54(td) ./doc/common/tables/keystone-database.xml:54(td)
msgid "(IntOpt) Timeout before idle SQL connections are reaped."
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:68(td) ./doc/common/tables/cinder-database.xml:68(td) ./doc/common/tables/glance-database.xml:57(td) ./doc/common/tables/sahara-database.xml:64(td) ./doc/common/tables/neutron-database.xml:57(td) ./doc/common/tables/nova-database.xml:64(td) ./doc/common/tables/heat-database.xml:57(td) ./doc/common/tables/keystone-database.xml:57(td)
msgid "max_overflow = None"
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:69(td) ./doc/common/tables/cinder-database.xml:69(td) ./doc/common/tables/glance-database.xml:58(td) ./doc/common/tables/sahara-database.xml:65(td) ./doc/common/tables/neutron-database.xml:58(td) ./doc/common/tables/nova-database.xml:65(td) ./doc/common/tables/heat-database.xml:58(td) ./doc/common/tables/keystone-database.xml:58(td)
msgid "(IntOpt) If set, use this value for max_overflow with SQLAlchemy."
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:72(td) ./doc/common/tables/cinder-database.xml:72(td) ./doc/common/tables/glance-database.xml:61(td) ./doc/common/tables/sahara-database.xml:68(td) ./doc/common/tables/neutron-database.xml:61(td) ./doc/common/tables/nova-database.xml:68(td) ./doc/common/tables/heat-database.xml:61(td) ./doc/common/tables/keystone-database.xml:61(td)
msgid "max_pool_size = None"
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:73(td) ./doc/common/tables/cinder-database.xml:73(td) ./doc/common/tables/glance-database.xml:62(td) ./doc/common/tables/sahara-database.xml:69(td) ./doc/common/tables/neutron-database.xml:62(td) ./doc/common/tables/nova-database.xml:69(td) ./doc/common/tables/heat-database.xml:62(td) ./doc/common/tables/keystone-database.xml:62(td)
msgid "(IntOpt) Maximum number of SQL connections to keep open in a pool."
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:76(td) ./doc/common/tables/cinder-database.xml:76(td) ./doc/common/tables/glance-database.xml:65(td) ./doc/common/tables/sahara-database.xml:72(td) ./doc/common/tables/neutron-database.xml:65(td) ./doc/common/tables/nova-database.xml:72(td) ./doc/common/tables/heat-database.xml:65(td) ./doc/common/tables/keystone-database.xml:65(td)
msgid "max_retries = 10"
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:77(td) ./doc/common/tables/cinder-database.xml:77(td) ./doc/common/tables/glance-database.xml:66(td) ./doc/common/tables/sahara-database.xml:73(td) ./doc/common/tables/neutron-database.xml:66(td) ./doc/common/tables/nova-database.xml:73(td) ./doc/common/tables/heat-database.xml:66(td) ./doc/common/tables/keystone-database.xml:66(td)
msgid "(IntOpt) Maximum db connection retries during startup. Set to -1 to specify an infinite retry count."
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:80(td)
msgid "metering_connection = None"
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:81(td) ./doc/common/tables/ceilometer-conf-changes.xml:109(td)
msgid "(StrOpt) The connection string used to connect to the meteting database. (if unset, connection is used)"
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:84(td) ./doc/common/tables/cinder-database.xml:80(td) ./doc/common/tables/glance-database.xml:69(td) ./doc/common/tables/sahara-database.xml:76(td) ./doc/common/tables/neutron-database.xml:69(td) ./doc/common/tables/nova-database.xml:76(td) ./doc/common/tables/heat-database.xml:69(td) ./doc/common/tables/keystone-database.xml:69(td)
msgid "min_pool_size = 1"
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:85(td) ./doc/common/tables/cinder-database.xml:81(td) ./doc/common/tables/glance-database.xml:70(td) ./doc/common/tables/sahara-database.xml:77(td) ./doc/common/tables/neutron-database.xml:70(td) ./doc/common/tables/nova-database.xml:77(td) ./doc/common/tables/heat-database.xml:70(td) ./doc/common/tables/keystone-database.xml:70(td)
msgid "(IntOpt) Minimum number of SQL connections to keep open in a pool."
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:88(td) ./doc/common/tables/cinder-database.xml:84(td) ./doc/common/tables/glance-database.xml:73(td) ./doc/common/tables/sahara-database.xml:80(td) ./doc/common/tables/neutron-database.xml:73(td) ./doc/common/tables/nova-database.xml:80(td) ./doc/common/tables/heat-database.xml:73(td) ./doc/common/tables/keystone-database.xml:73(td)
msgid "mysql_sql_mode = TRADITIONAL"
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:89(td) ./doc/common/tables/cinder-database.xml:85(td) ./doc/common/tables/glance-database.xml:74(td) ./doc/common/tables/sahara-database.xml:81(td) ./doc/common/tables/heat-conf-changes.xml:93(td) ./doc/common/tables/neutron-conf-changes.xml:177(td) ./doc/common/tables/ceilometer-conf-changes.xml:113(td) ./doc/common/tables/neutron-database.xml:74(td) ./doc/common/tables/nova-database.xml:81(td) ./doc/common/tables/heat-database.xml:74(td) ./doc/common/tables/keystone-database.xml:74(td) ./doc/common/tables/cinder-conf-changes.xml:433(td)
msgid "(StrOpt) The SQL mode to be used for MySQL sessions. This option, including the default, overrides any server-set SQL mode. To use whatever SQL mode is set by the server configuration, set this to no value. Example: mysql_sql_mode="
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:92(td) ./doc/common/tables/cinder-database.xml:88(td) ./doc/common/tables/glance-database.xml:77(td) ./doc/common/tables/sahara-database.xml:84(td) ./doc/common/tables/neutron-database.xml:77(td) ./doc/common/tables/nova-database.xml:84(td) ./doc/common/tables/heat-database.xml:77(td) ./doc/common/tables/keystone-database.xml:77(td)
msgid "pool_timeout = None"
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:93(td) ./doc/common/tables/cinder-database.xml:89(td) ./doc/common/tables/glance-database.xml:78(td) ./doc/common/tables/sahara-database.xml:85(td) ./doc/common/tables/neutron-database.xml:78(td) ./doc/common/tables/nova-database.xml:85(td) ./doc/common/tables/heat-database.xml:78(td) ./doc/common/tables/keystone-database.xml:78(td) ./doc/common/tables/cinder-conf-changes.xml:437(td)
msgid "(IntOpt) If set, use this value for pool_timeout with SQLAlchemy."
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:96(td) ./doc/common/tables/cinder-database.xml:92(td) ./doc/common/tables/glance-database.xml:81(td) ./doc/common/tables/sahara-database.xml:88(td) ./doc/common/tables/neutron-database.xml:81(td) ./doc/common/tables/nova-database.xml:88(td) ./doc/common/tables/heat-database.xml:81(td) ./doc/common/tables/keystone-database.xml:81(td)
msgid "retry_interval = 10"
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:97(td) ./doc/common/tables/cinder-database.xml:93(td) ./doc/common/tables/glance-database.xml:82(td) ./doc/common/tables/sahara-database.xml:89(td) ./doc/common/tables/neutron-database.xml:82(td) ./doc/common/tables/nova-database.xml:89(td) ./doc/common/tables/heat-database.xml:82(td) ./doc/common/tables/keystone-database.xml:82(td)
msgid "(IntOpt) Interval between retries of opening a SQL connection."
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:100(td) ./doc/common/tables/cinder-database.xml:96(td) ./doc/common/tables/glance-database.xml:85(td) ./doc/common/tables/sahara-database.xml:92(td) ./doc/common/tables/neutron-database.xml:85(td) ./doc/common/tables/nova-database.xml:92(td) ./doc/common/tables/heat-database.xml:85(td) ./doc/common/tables/keystone-database.xml:85(td)
msgid "slave_connection = None"
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:101(td) ./doc/common/tables/cinder-database.xml:97(td) ./doc/common/tables/glance-database.xml:86(td) ./doc/common/tables/sahara-database.xml:93(td) ./doc/common/tables/glance-conf-changes.xml:29(td) ./doc/common/tables/keystone-conf-changes.xml:37(td) ./doc/common/tables/neutron-database.xml:86(td) ./doc/common/tables/nova-database.xml:93(td) ./doc/common/tables/heat-database.xml:86(td) ./doc/common/tables/keystone-database.xml:86(td) ./doc/common/tables/cinder-conf-changes.xml:441(td)
msgid "(StrOpt) The SQLAlchemy connection string to use to connect to the slave database."
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:104(td) ./doc/common/tables/cinder-database.xml:100(td) ./doc/common/tables/glance-database.xml:89(td) ./doc/common/tables/sahara-database.xml:96(td) ./doc/common/tables/neutron-database.xml:89(td) ./doc/common/tables/nova-database.xml:96(td) ./doc/common/tables/heat-database.xml:89(td) ./doc/common/tables/keystone-database.xml:89(td)
msgid "sqlite_db = oslo.sqlite"
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:105(td) ./doc/common/tables/cinder-database.xml:101(td) ./doc/common/tables/glance-database.xml:90(td) ./doc/common/tables/sahara-database.xml:97(td) ./doc/common/tables/heat-conf-changes.xml:97(td) ./doc/common/tables/neutron-conf-changes.xml:181(td) ./doc/common/tables/ceilometer-conf-changes.xml:117(td) ./doc/common/tables/neutron-database.xml:90(td) ./doc/common/tables/nova-database.xml:97(td) ./doc/common/tables/heat-database.xml:90(td) ./doc/common/tables/keystone-database.xml:90(td) ./doc/common/tables/cinder-conf-changes.xml:445(td)
msgid "(StrOpt) The file name to use with SQLite."
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:108(td) ./doc/common/tables/cinder-database.xml:104(td) ./doc/common/tables/glance-database.xml:93(td) ./doc/common/tables/sahara-database.xml:100(td) ./doc/common/tables/neutron-database.xml:93(td) ./doc/common/tables/nova-database.xml:100(td) ./doc/common/tables/heat-database.xml:93(td) ./doc/common/tables/keystone-database.xml:93(td)
msgid "sqlite_synchronous = True"
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:109(td) ./doc/common/tables/cinder-database.xml:105(td) ./doc/common/tables/glance-database.xml:94(td) ./doc/common/tables/sahara-database.xml:101(td) ./doc/common/tables/heat-conf-changes.xml:101(td) ./doc/common/tables/neutron-conf-changes.xml:185(td) ./doc/common/tables/ceilometer-conf-changes.xml:121(td) ./doc/common/tables/neutron-database.xml:94(td) ./doc/common/tables/nova-database.xml:101(td) ./doc/common/tables/heat-database.xml:94(td) ./doc/common/tables/keystone-database.xml:94(td) ./doc/common/tables/cinder-conf-changes.xml:449(td)
msgid "(BoolOpt) If True, SQLite uses synchronous mode."
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:112(td)
msgid "time_to_live = -1"
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:113(td)
msgid "(IntOpt) Number of seconds that samples are kept in the database for (&lt;= 0 means forever)."
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:116(td) ./doc/common/tables/cinder-database.xml:108(td) ./doc/common/tables/glance-database.xml:97(td) ./doc/common/tables/sahara-database.xml:104(td) ./doc/common/tables/neutron-database.xml:97(td) ./doc/common/tables/nova-database.xml:104(td) ./doc/common/tables/heat-database.xml:97(td) ./doc/common/tables/keystone-database.xml:97(td)
msgid "use_db_reconnect = False"
msgstr ""
#: ./doc/common/tables/ceilometer-database.xml:117(td) ./doc/common/tables/cinder-database.xml:109(td) ./doc/common/tables/glance-database.xml:98(td) ./doc/common/tables/sahara-database.xml:105(td) ./doc/common/tables/heat-conf-changes.xml:105(td) ./doc/common/tables/ceilometer-conf-changes.xml:125(td) ./doc/common/tables/neutron-database.xml:98(td) ./doc/common/tables/nova-database.xml:105(td) ./doc/common/tables/heat-database.xml:98(td) ./doc/common/tables/keystone-database.xml:98(td) ./doc/common/tables/cinder-conf-changes.xml:453(td)
msgid "(BoolOpt) Enable the experimental use of database reconnect on connection lost."
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:7(caption)
msgid "Description of Open vSwitch agent configuration options"
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:21(td)
msgid "ovs_integration_bridge = br-int"
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:22(td)
msgid "(StrOpt) Name of Open vSwitch bridge to use"
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:25(td)
msgid "ovs_use_veth = False"
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:26(td)
msgid "(BoolOpt) Uses veth for an interface or not"
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:29(td)
msgid "ovs_vsctl_timeout = 10"
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:30(td)
msgid "(IntOpt) Timeout in seconds for ovs-vsctl commands"
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:33(th) ./doc/common/tables/neutron-rpc.xml:69(th) ./doc/common/tables/neutron-ml2_ofa.xml:33(th) ./doc/common/tables/neutron-metering_agent.xml:29(th) ./doc/common/tables/neutron-nvsd.xml:18(th) ./doc/common/tables/neutron-hyperv_agent.xml:18(th) ./doc/common/tables/neutron-common.xml:197(th)
msgid "[AGENT]"
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:36(td)
msgid "arp_responder = False"
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:37(td) ./doc/common/tables/neutron-conf-changes.xml:109(td)
msgid "(BoolOpt) Enable local ARP responder if it is supported. Requires OVS 2.1 and ML2 l2population driver. Allows the switch (when supporting an overlay) to respond to an ARP request locally without performing a costly ARP broadcast into the overlay."
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:40(td) ./doc/common/tables/neutron-ml2_ofa.xml:36(td)
msgid "dont_fragment = True"
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:41(td) ./doc/common/tables/neutron-conf-changes.xml:113(td) ./doc/common/tables/neutron-ml2_ofa.xml:37(td)
msgid "(BoolOpt) Set or un-set the don't fragment (DF) bit on outgoing IP packet carrying GRE/VXLAN tunnel."
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:44(td)
msgid "enable_distributed_routing = False"
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:45(td) ./doc/common/tables/neutron-conf-changes.xml:117(td)
msgid "(BoolOpt) Make the l2 agent run in DVR mode."
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:48(td) ./doc/common/tables/neutron-linuxbridge_agent.xml:43(td)
msgid "l2_population = False"
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:49(td)
msgid "(BoolOpt) Use ML2 l2population mechanism driver to learn remote MAC and IPs and improve tunnel scalability."
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:52(td)
msgid "minimize_polling = True"
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:53(td)
msgid "(BoolOpt) Minimize polling by monitoring ovsdb for interface changes."
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:56(td)
msgid "ovsdb_monitor_respawn_interval = 30"
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:57(td)
msgid "(IntOpt) The number of seconds to wait before respawning the ovsdb monitor after losing communication with it."
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:60(td)
msgid "tunnel_types ="
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:61(td)
msgid "(ListOpt) Network types supported by the agent (gre and/or vxlan)."
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:64(td)
msgid "veth_mtu = None"
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:65(td)
msgid "(IntOpt) MTU size of veth interfaces"
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:68(td)
msgid "vxlan_udp_port = 4789"
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:69(td)
msgid "(IntOpt) The UDP port to use for VXLAN tunnels."
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:72(th) ./doc/common/tables/neutron-cisco.xml:53(th)
msgid "[CISCO_N1K]"
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:75(td)
msgid "local_ip = 10.0.0.3"
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:76(td)
msgid "(StrOpt) N1K Local IP"
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:79(th) ./doc/common/tables/neutron-ryu.xml:29(th)
msgid "[OVS]"
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:82(td) ./doc/common/tables/neutron-cisco.xml:56(td)
msgid "bridge_mappings ="
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:83(td)
msgid "(ListOpt) List of &lt;physical_network&gt;:&lt;bridge&gt;. Deprecated for ofagent."
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:86(td)
msgid "enable_tunneling = False"
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:87(td)
msgid "(BoolOpt) Enable tunneling support."
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:90(td)
msgid "int_peer_patch_port = patch-tun"
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:91(td)
msgid "(StrOpt) Peer patch port in integration bridge for tunnel bridge."
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:94(td) ./doc/common/tables/neutron-cisco.xml:80(td) ./doc/common/tables/nova-vmware.xml:49(td) ./doc/common/tables/neutron-ml2_bigswitch.xml:155(td) ./doc/common/tables/neutron-bigswitch.xml:155(td) ./doc/common/tables/neutron-nvsd.xml:21(td)
msgid "integration_bridge = br-int"
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:95(td) ./doc/common/tables/neutron-sdnve.xml:42(td)
msgid "(StrOpt) Integration bridge to use."
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:98(td) ./doc/common/tables/neutron-linuxbridge_agent.xml:47(td)
msgid "local_ip ="
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:99(td)
msgid "(StrOpt) Local IP address of GRE tunnel endpoints."
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:102(td) ./doc/common/tables/neutron-linuxbridge_agent.xml:28(td) ./doc/common/tables/neutron-ml2_vlan.xml:21(td) ./doc/common/tables/neutron-hyperv_agent.xml:44(td)
msgid "network_vlan_ranges ="
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:103(td)
msgid "(ListOpt) List of &lt;physical_network&gt;:&lt;vlan_min&gt;:&lt;vlan_max&gt; or &lt;physical_network&gt;."
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:106(td) ./doc/common/tables/neutron-cisco.xml:100(td) ./doc/common/tables/neutron-linuxbridge_agent.xml:32(td) ./doc/common/tables/neutron-hyperv_agent.xml:48(td)
msgid "tenant_network_type = local"
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:107(td)
msgid "(StrOpt) Network type for tenant networks (local, vlan, gre, vxlan, or none)."
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:110(td)
msgid "tun_peer_patch_port = patch-int"
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:111(td)
msgid "(StrOpt) Peer patch port in tunnel bridge for integration bridge."
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:114(td) ./doc/common/tables/neutron-cisco.xml:104(td)
msgid "tunnel_bridge = br-tun"
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:115(td)
msgid "(StrOpt) Tunnel bridge to use."
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:118(td) ./doc/common/tables/neutron-ml2_gre.xml:21(td)
msgid "tunnel_id_ranges ="
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:119(td)
msgid "(ListOpt) List of &lt;tun_min&gt;:&lt;tun_max&gt;."
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:122(td)
msgid "tunnel_type ="
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:123(td)
msgid "(StrOpt) The type of tunnels to use when utilizing tunnels, either 'gre' or 'vxlan'."
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:126(td)
msgid "use_veth_interconnection = False"
msgstr ""
#: ./doc/common/tables/neutron-openvswitch_agent.xml:127(td) ./doc/common/tables/neutron-conf-changes.xml:157(td)
msgid "(BoolOpt) Use veths instead of patch ports to interconnect the integration bridge to physical bridges."
msgstr ""
#: ./doc/common/tables/heat-clients.xml:7(caption) ./doc/common/tables/trove-clients.xml:7(caption)
msgid "Description of clients configuration options"
msgstr ""
#: ./doc/common/tables/heat-clients.xml:21(td)
msgid "region_name_for_services = None"
msgstr ""
#: ./doc/common/tables/heat-clients.xml:22(td)
msgid "(StrOpt) Default region name used to get services endpoints."
msgstr ""
#: ./doc/common/tables/heat-clients.xml:25(th)
msgid "[clients]"
msgstr ""
#: ./doc/common/tables/heat-clients.xml:28(td) ./doc/common/tables/heat-clients_nova.xml:21(td) ./doc/common/tables/glance-ca.xml:21(td) ./doc/common/tables/heat-clients_heat.xml:21(td) ./doc/common/tables/heat-cfn_api.xml:63(td) ./doc/common/tables/trove-ca.xml:21(td) ./doc/common/tables/heat-api.xml:156(td) ./doc/common/tables/heat-clients_ceilometer.xml:21(td) ./doc/common/tables/heat-clients_glance.xml:21(td) ./doc/common/tables/heat-clients_cinder.xml:21(td) ./doc/common/tables/heat-clients_trove.xml:21(td) ./doc/common/tables/nova-ca.xml:64(td) ./doc/common/tables/neutron-ca.xml:36(td) ./doc/common/tables/cinder-ca.xml:36(td) ./doc/common/tables/heat-clients_swift.xml:21(td) ./doc/common/tables/heat-cloudwatch_api.xml:59(td) ./doc/common/tables/heat-clients_neutron.xml:21(td) ./doc/common/tables/heat-clients_keystone.xml:21(td)
msgid "ca_file = None"
msgstr ""
#: ./doc/common/tables/heat-clients.xml:29(td) ./doc/common/tables/heat-clients_nova.xml:22(td) ./doc/common/tables/heat-clients_heat.xml:22(td) ./doc/common/tables/heat-conf-changes.xml:53(td) ./doc/common/tables/heat-clients_ceilometer.xml:22(td) ./doc/common/tables/heat-clients_glance.xml:22(td) ./doc/common/tables/heat-clients_cinder.xml:22(td) ./doc/common/tables/heat-clients_trove.xml:22(td) ./doc/common/tables/heat-clients_swift.xml:22(td) ./doc/common/tables/heat-clients_neutron.xml:22(td) ./doc/common/tables/heat-clients_keystone.xml:22(td)
msgid "(StrOpt) Optional CA cert file to use in SSL connections."
msgstr ""
#: ./doc/common/tables/heat-clients.xml:32(td) ./doc/common/tables/heat-clients_nova.xml:25(td) ./doc/common/tables/glance-ca.xml:25(td) ./doc/common/tables/heat-clients_heat.xml:25(td) ./doc/common/tables/heat-cfn_api.xml:44(td) ./doc/common/tables/heat-cfn_api.xml:67(td) ./doc/common/tables/trove-ca.xml:25(td) ./doc/common/tables/heat-api.xml:126(td) ./doc/common/tables/heat-api.xml:160(td) ./doc/common/tables/heat-clients_ceilometer.xml:25(td) ./doc/common/tables/heat-clients_glance.xml:25(td) ./doc/common/tables/heat-clients_cinder.xml:25(td) ./doc/common/tables/heat-clients_trove.xml:25(td) ./doc/common/tables/nova-ca.xml:68(td) ./doc/common/tables/neutron-ca.xml:40(td) ./doc/common/tables/cinder-ca.xml:40(td) ./doc/common/tables/heat-clients_swift.xml:25(td) ./doc/common/tables/heat-cloudwatch_api.xml:40(td) ./doc/common/tables/heat-cloudwatch_api.xml:63(td) ./doc/common/tables/neutron-nec.xml:25(td) ./doc/common/tables/heat-clients_neutron.xml:25(td) ./doc/common/tables/heat-clients_keystone.xml:25(td)
msgid "cert_file = None"
msgstr ""
#: ./doc/common/tables/heat-clients.xml:33(td) ./doc/common/tables/heat-clients_nova.xml:26(td) ./doc/common/tables/heat-clients_heat.xml:26(td) ./doc/common/tables/heat-conf-changes.xml:57(td) ./doc/common/tables/heat-clients_ceilometer.xml:26(td) ./doc/common/tables/heat-clients_glance.xml:26(td) ./doc/common/tables/heat-clients_cinder.xml:26(td) ./doc/common/tables/heat-clients_trove.xml:26(td) ./doc/common/tables/heat-clients_swift.xml:26(td) ./doc/common/tables/heat-clients_neutron.xml:26(td) ./doc/common/tables/heat-clients_keystone.xml:26(td)
msgid "(StrOpt) Optional PEM-formatted certificate chain file."
msgstr ""
#: ./doc/common/tables/heat-clients.xml:36(td) ./doc/common/tables/heat-clients_nova.xml:29(td) ./doc/common/tables/heat-clients_heat.xml:29(td) ./doc/common/tables/heat-clients_ceilometer.xml:29(td) ./doc/common/tables/heat-clients_glance.xml:29(td) ./doc/common/tables/heat-clients_cinder.xml:29(td) ./doc/common/tables/heat-clients_trove.xml:29(td) ./doc/common/tables/heat-clients_swift.xml:29(td) ./doc/common/tables/heat-clients_neutron.xml:29(td) ./doc/common/tables/swift-dispersion-dispersion.xml:56(td) ./doc/common/tables/heat-clients_keystone.xml:29(td)
msgid "endpoint_type = publicURL"
msgstr ""
#: ./doc/common/tables/heat-clients.xml:37(td) ./doc/common/tables/heat-clients_nova.xml:30(td) ./doc/common/tables/heat-clients_heat.xml:30(td) ./doc/common/tables/heat-conf-changes.xml:61(td) ./doc/common/tables/heat-clients_ceilometer.xml:30(td) ./doc/common/tables/heat-clients_glance.xml:30(td) ./doc/common/tables/heat-clients_cinder.xml:30(td) ./doc/common/tables/heat-clients_trove.xml:30(td) ./doc/common/tables/heat-clients_swift.xml:30(td) ./doc/common/tables/heat-clients_neutron.xml:30(td) ./doc/common/tables/heat-clients_keystone.xml:30(td)
msgid "(StrOpt) Type of endpoint in Identity service catalog to use for communication with the OpenStack service."
msgstr ""
#: ./doc/common/tables/heat-clients.xml:40(td) ./doc/common/tables/glance-auth_token.xml:112(td) ./doc/common/tables/heat-clients_nova.xml:37(td) ./doc/common/tables/heat-clients_heat.xml:33(td) ./doc/common/tables/ceilometer-auth_token.xml:105(td) ./doc/common/tables/neutron-auth_token.xml:112(td) ./doc/common/tables/ceilometer-auth.xml:21(td) ./doc/common/tables/sahara-auth_token.xml:105(td) ./doc/common/tables/heat-auth_token.xml:112(td) ./doc/common/tables/nova-auth_token.xml:105(td) ./doc/common/tables/heat-clients_ceilometer.xml:33(td) ./doc/common/tables/heat-clients_glance.xml:33(td) ./doc/common/tables/cinder-auth_token.xml:112(td) ./doc/common/tables/keystone-auth_token.xml:112(td) ./doc/common/tables/heat-clients_cinder.xml:37(td) ./doc/common/tables/heat-clients_trove.xml:33(td) ./doc/common/tables/heat-clients_swift.xml:33(td) ./doc/common/tables/heat-clients_neutron.xml:33(td) ./doc/common/tables/trove-auth_token.xml:112(td) ./doc/common/tables/keystone-ec2.xml:36(td) ./doc/common/tables/heat-clients_keystone.xml:33(td)
msgid "insecure = False"
msgstr ""
#: ./doc/common/tables/heat-clients.xml:41(td) ./doc/common/tables/heat-clients_nova.xml:38(td) ./doc/common/tables/heat-clients_heat.xml:34(td) ./doc/common/tables/heat-conf-changes.xml:65(td) ./doc/common/tables/heat-clients_ceilometer.xml:34(td) ./doc/common/tables/heat-clients_glance.xml:34(td) ./doc/common/tables/heat-clients_cinder.xml:38(td) ./doc/common/tables/heat-clients_trove.xml:34(td) ./doc/common/tables/heat-clients_swift.xml:34(td) ./doc/common/tables/heat-clients_neutron.xml:34(td) ./doc/common/tables/heat-clients_keystone.xml:34(td)
msgid "(BoolOpt) If set, then the server's certificate will not be verified."
msgstr ""
#: ./doc/common/tables/heat-clients.xml:44(td) ./doc/common/tables/heat-clients_nova.xml:41(td) ./doc/common/tables/glance-ca.xml:29(td) ./doc/common/tables/heat-clients_heat.xml:37(td) ./doc/common/tables/heat-cfn_api.xml:48(td) ./doc/common/tables/heat-cfn_api.xml:71(td) ./doc/common/tables/trove-ca.xml:29(td) ./doc/common/tables/heat-api.xml:130(td) ./doc/common/tables/heat-api.xml:164(td) ./doc/common/tables/heat-clients_ceilometer.xml:37(td) ./doc/common/tables/heat-clients_glance.xml:37(td) ./doc/common/tables/heat-clients_cinder.xml:41(td) ./doc/common/tables/heat-clients_trove.xml:37(td) ./doc/common/tables/nova-ca.xml:72(td) ./doc/common/tables/neutron-ca.xml:44(td) ./doc/common/tables/cinder-ca.xml:44(td) ./doc/common/tables/heat-clients_swift.xml:37(td) ./doc/common/tables/heat-cloudwatch_api.xml:44(td) ./doc/common/tables/heat-cloudwatch_api.xml:67(td) ./doc/common/tables/neutron-nec.xml:45(td) ./doc/common/tables/heat-clients_neutron.xml:37(td) ./doc/common/tables/heat-clients_keystone.xml:37(td)
msgid "key_file = None"
msgstr ""
#: ./doc/common/tables/heat-clients.xml:45(td) ./doc/common/tables/heat-clients_nova.xml:42(td) ./doc/common/tables/heat-clients_heat.xml:38(td) ./doc/common/tables/heat-conf-changes.xml:69(td) ./doc/common/tables/heat-clients_ceilometer.xml:38(td) ./doc/common/tables/heat-clients_glance.xml:38(td) ./doc/common/tables/heat-clients_cinder.xml:42(td) ./doc/common/tables/heat-clients_trove.xml:38(td) ./doc/common/tables/heat-clients_swift.xml:38(td) ./doc/common/tables/heat-clients_neutron.xml:38(td) ./doc/common/tables/heat-clients_keystone.xml:38(td)
msgid "(StrOpt) Optional PEM-formatted file that contains the private key."
msgstr ""
#: ./doc/common/tables/cinder-solidfire.xml:7(caption)
msgid "Description of SolidFire driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-solidfire.xml:21(td)
msgid "sf_account_prefix = None"
msgstr ""
#: ./doc/common/tables/cinder-solidfire.xml:22(td)
msgid "(StrOpt) Create SolidFire accounts with this prefix. Any string can be used here, but the string \"hostname\" is special and will create a prefix using the cinder node hostsname (previous default behavior). The default is NO prefix."
msgstr ""
#: ./doc/common/tables/cinder-solidfire.xml:25(td)
msgid "sf_allow_tenant_qos = False"
msgstr ""
#: ./doc/common/tables/cinder-solidfire.xml:26(td) ./doc/common/tables/cinder-storwize.xml:22(td) ./doc/common/tables/cinder-conf-changes.xml:281(td)
msgid "(BoolOpt) Allow tenants to specify QOS on create"
msgstr ""
#: ./doc/common/tables/cinder-solidfire.xml:29(td)
msgid "sf_api_port = 443"
msgstr ""
#: ./doc/common/tables/cinder-solidfire.xml:30(td)
msgid "(IntOpt) SolidFire API port. Useful if the device api is behind a proxy on a different port."
msgstr ""
#: ./doc/common/tables/cinder-solidfire.xml:33(td)
msgid "sf_emulate_512 = True"
msgstr ""
#: ./doc/common/tables/cinder-solidfire.xml:34(td)
msgid "(BoolOpt) Set 512 byte emulation on volume creation;"
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:7(caption) ./doc/common/tables/glance-rpc.xml:7(caption) ./doc/common/tables/ceilometer-rpc.xml:7(caption) ./doc/common/tables/trove-rpc.xml:7(caption) ./doc/common/tables/sahara-rpc.xml:7(caption) ./doc/common/tables/cinder-rpc.xml:7(caption) ./doc/common/tables/heat-rpc.xml:7(caption) ./doc/common/tables/nova-rpc.xml:7(caption)
msgid "Description of RPC configuration options"
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:21(td) ./doc/common/tables/trove-amqp.xml:21(td) ./doc/common/tables/heat-amqp.xml:21(td) ./doc/common/tables/keystone-amqp.xml:21(td) ./doc/common/tables/sahara-amqp.xml:21(td) ./doc/common/tables/glance-amqp.xml:21(td) ./doc/common/tables/cinder-rpc.xml:21(td) ./doc/common/tables/nova-rpc_all.xml:21(td) ./doc/common/tables/nova-rpc.xml:21(td) ./doc/common/tables/ceilometer-amqp.xml:21(td)
msgid "amqp_auto_delete = False"
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:22(td) ./doc/common/tables/trove-amqp.xml:22(td) ./doc/common/tables/heat-amqp.xml:22(td) ./doc/common/tables/keystone-amqp.xml:22(td) ./doc/common/tables/sahara-amqp.xml:22(td) ./doc/common/tables/glance-amqp.xml:22(td) ./doc/common/tables/cinder-rpc.xml:22(td) ./doc/common/tables/nova-rpc_all.xml:22(td) ./doc/common/tables/nova-rpc.xml:22(td) ./doc/common/tables/ceilometer-amqp.xml:22(td)
msgid "(BoolOpt) Auto-delete queues in amqp."
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:25(td) ./doc/common/tables/trove-amqp.xml:25(td) ./doc/common/tables/heat-amqp.xml:25(td) ./doc/common/tables/keystone-amqp.xml:25(td) ./doc/common/tables/sahara-amqp.xml:25(td) ./doc/common/tables/glance-amqp.xml:25(td) ./doc/common/tables/cinder-rpc.xml:25(td) ./doc/common/tables/nova-rpc_all.xml:25(td) ./doc/common/tables/nova-rpc.xml:25(td) ./doc/common/tables/ceilometer-amqp.xml:25(td)
msgid "amqp_durable_queues = False"
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:26(td) ./doc/common/tables/trove-amqp.xml:26(td) ./doc/common/tables/heat-amqp.xml:26(td) ./doc/common/tables/keystone-amqp.xml:26(td) ./doc/common/tables/sahara-amqp.xml:26(td) ./doc/common/tables/glance-amqp.xml:26(td) ./doc/common/tables/cinder-rpc.xml:26(td) ./doc/common/tables/nova-rpc_all.xml:26(td) ./doc/common/tables/nova-rpc.xml:26(td) ./doc/common/tables/ceilometer-amqp.xml:26(td)
msgid "(BoolOpt) Use durable queues in amqp."
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:29(td)
msgid "control_exchange = neutron"
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:30(td) ./doc/common/tables/heat-amqp.xml:30(td) ./doc/common/tables/glance-rabbitmq.xml:22(td) ./doc/common/tables/keystone-amqp.xml:30(td) ./doc/common/tables/ceilometer-exchange.xml:26(td) ./doc/common/tables/sahara-common.xml:35(td) ./doc/common/tables/cinder-rpc.xml:30(td) ./doc/common/tables/nova-rpc_all.xml:30(td) ./doc/common/tables/nova-rpc.xml:30(td)
msgid "(StrOpt) The default exchange under which topics are scoped. May be overridden by an exchange name specified in the transport_url option."
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:33(td) ./doc/common/tables/ceilometer-redis.xml:21(td) ./doc/common/tables/glance-matchmaker.xml:21(td) ./doc/common/tables/trove-rpc.xml:25(td) ./doc/common/tables/sahara-rpc.xml:41(td) ./doc/common/tables/cinder-rpc.xml:61(td) ./doc/common/tables/nova-rpc_all.xml:53(td) ./doc/common/tables/heat-rpc.xml:25(td) ./doc/common/tables/nova-rpc.xml:33(td) ./doc/common/tables/keystone-redis.xml:21(td)
msgid "matchmaker_heartbeat_freq = 300"
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:34(td) ./doc/common/tables/ceilometer-redis.xml:22(td) ./doc/common/tables/glance-matchmaker.xml:22(td) ./doc/common/tables/sahara-rpc.xml:42(td) ./doc/common/tables/cinder-rpc.xml:62(td) ./doc/common/tables/nova-rpc_all.xml:54(td) ./doc/common/tables/heat-rpc.xml:26(td) ./doc/common/tables/nova-rpc.xml:34(td) ./doc/common/tables/keystone-redis.xml:22(td)
msgid "(IntOpt) Heartbeat frequency."
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:37(td) ./doc/common/tables/ceilometer-redis.xml:25(td) ./doc/common/tables/glance-matchmaker.xml:25(td) ./doc/common/tables/trove-rpc.xml:29(td) ./doc/common/tables/sahara-rpc.xml:45(td) ./doc/common/tables/cinder-rpc.xml:65(td) ./doc/common/tables/nova-rpc_all.xml:57(td) ./doc/common/tables/heat-rpc.xml:29(td) ./doc/common/tables/nova-rpc.xml:37(td) ./doc/common/tables/keystone-redis.xml:25(td)
msgid "matchmaker_heartbeat_ttl = 600"
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:38(td) ./doc/common/tables/ceilometer-redis.xml:26(td) ./doc/common/tables/glance-matchmaker.xml:26(td) ./doc/common/tables/trove-rpc.xml:30(td) ./doc/common/tables/sahara-rpc.xml:46(td) ./doc/common/tables/cinder-rpc.xml:66(td) ./doc/common/tables/nova-rpc_all.xml:58(td) ./doc/common/tables/heat-rpc.xml:30(td) ./doc/common/tables/nova-rpc.xml:38(td) ./doc/common/tables/keystone-redis.xml:26(td)
msgid "(IntOpt) Heartbeat time-to-live."
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:41(td) ./doc/common/tables/keystone-amqp.xml:45(td) ./doc/common/tables/ceilometer-rpc.xml:25(td) ./doc/common/tables/sahara-rpc.xml:49(td) ./doc/common/tables/glance-amqp.xml:37(td) ./doc/common/tables/cinder-rpc.xml:165(td) ./doc/common/tables/nova-rpc_all.xml:153(td) ./doc/common/tables/heat-rpc.xml:33(td) ./doc/common/tables/nova-rpc.xml:41(td)
msgid "rpc_backend = rabbit"
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:42(td) ./doc/common/tables/keystone-amqp.xml:46(td) ./doc/common/tables/ceilometer-rpc.xml:26(td) ./doc/common/tables/sahara-rpc.xml:50(td) ./doc/common/tables/glance-amqp.xml:38(td) ./doc/common/tables/cinder-rpc.xml:166(td) ./doc/common/tables/nova-rpc_all.xml:154(td) ./doc/common/tables/heat-rpc.xml:34(td) ./doc/common/tables/nova-rpc.xml:42(td)
msgid "(StrOpt) The messaging driver to use, defaults to rabbit. Other drivers include qpid and zmq."
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:45(td) ./doc/common/tables/keystone-amqp.xml:49(td) ./doc/common/tables/glance-zeromq.xml:21(td) ./doc/common/tables/ceilometer-rpc.xml:29(td) ./doc/common/tables/trove-rpc.xml:49(td) ./doc/common/tables/sahara-rpc.xml:53(td) ./doc/common/tables/cinder-rpc.xml:169(td) ./doc/common/tables/nova-rpc_all.xml:157(td) ./doc/common/tables/heat-rpc.xml:37(td) ./doc/common/tables/nova-rpc.xml:45(td)
msgid "rpc_cast_timeout = 30"
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:46(td) ./doc/common/tables/keystone-amqp.xml:50(td) ./doc/common/tables/glance-zeromq.xml:22(td) ./doc/common/tables/ceilometer-rpc.xml:30(td) ./doc/common/tables/trove-rpc.xml:50(td) ./doc/common/tables/sahara-rpc.xml:54(td) ./doc/common/tables/cinder-rpc.xml:170(td) ./doc/common/tables/nova-rpc_all.xml:158(td) ./doc/common/tables/heat-rpc.xml:38(td) ./doc/common/tables/nova-rpc.xml:46(td)
msgid "(IntOpt) Seconds to wait before a cast expires (TTL). Only supported by impl_zmq."
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:49(td) ./doc/common/tables/keystone-amqp.xml:53(td) ./doc/common/tables/ceilometer-rpc.xml:33(td) ./doc/common/tables/trove-rpc.xml:53(td) ./doc/common/tables/sahara-rpc.xml:57(td) ./doc/common/tables/glance-amqp.xml:41(td) ./doc/common/tables/cinder-rpc.xml:173(td) ./doc/common/tables/nova-rpc_all.xml:161(td) ./doc/common/tables/heat-rpc.xml:41(td) ./doc/common/tables/nova-rpc.xml:49(td)
msgid "rpc_conn_pool_size = 30"
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:50(td) ./doc/common/tables/keystone-amqp.xml:54(td) ./doc/common/tables/ceilometer-rpc.xml:34(td) ./doc/common/tables/sahara-rpc.xml:58(td) ./doc/common/tables/glance-amqp.xml:42(td) ./doc/common/tables/cinder-rpc.xml:174(td) ./doc/common/tables/nova-rpc_all.xml:162(td) ./doc/common/tables/heat-rpc.xml:42(td) ./doc/common/tables/nova-rpc.xml:50(td)
msgid "(IntOpt) Size of RPC connection pool."
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:53(td) ./doc/common/tables/keystone-amqp.xml:57(td) ./doc/common/tables/ceilometer-rpc.xml:37(td) ./doc/common/tables/trove-rpc.xml:57(td) ./doc/common/tables/sahara-rpc.xml:61(td) ./doc/common/tables/glance-amqp.xml:45(td) ./doc/common/tables/cinder-rpc.xml:177(td) ./doc/common/tables/nova-rpc_all.xml:165(td) ./doc/common/tables/heat-rpc.xml:45(td) ./doc/common/tables/nova-rpc.xml:53(td)
msgid "rpc_response_timeout = 60"
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:54(td) ./doc/common/tables/keystone-amqp.xml:58(td) ./doc/common/tables/ceilometer-rpc.xml:38(td) ./doc/common/tables/sahara-rpc.xml:62(td) ./doc/common/tables/glance-amqp.xml:46(td) ./doc/common/tables/cinder-rpc.xml:178(td) ./doc/common/tables/nova-rpc_all.xml:166(td) ./doc/common/tables/heat-rpc.xml:46(td) ./doc/common/tables/nova-rpc.xml:54(td)
msgid "(IntOpt) Seconds to wait for a response from a call."
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:57(td) ./doc/common/tables/keystone-amqp.xml:61(td) ./doc/common/tables/ceilometer-rpc.xml:41(td) ./doc/common/tables/trove-rpc.xml:61(td) ./doc/common/tables/sahara-rpc.xml:65(td) ./doc/common/tables/glance-amqp.xml:49(td) ./doc/common/tables/cinder-rpc.xml:181(td) ./doc/common/tables/nova-rpc_all.xml:169(td) ./doc/common/tables/heat-rpc.xml:49(td) ./doc/common/tables/nova-rpc.xml:57(td)
msgid "rpc_thread_pool_size = 64"
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:58(td) ./doc/common/tables/keystone-amqp.xml:62(td) ./doc/common/tables/ceilometer-rpc.xml:42(td) ./doc/common/tables/sahara-rpc.xml:66(td) ./doc/common/tables/glance-amqp.xml:50(td) ./doc/common/tables/cinder-rpc.xml:182(td) ./doc/common/tables/nova-rpc_all.xml:170(td) ./doc/common/tables/heat-rpc.xml:50(td) ./doc/common/tables/nova-rpc.xml:58(td)
msgid "(IntOpt) Size of RPC greenthread pool."
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:61(td)
msgid "rpc_workers = 0"
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:62(td)
msgid "(IntOpt) Number of RPC worker processes for service"
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:65(td) ./doc/common/tables/nova-common.xml:97(td) ./doc/common/tables/keystone-amqp.xml:65(td) ./doc/common/tables/sahara-common.xml:136(td) ./doc/common/tables/ceilometer-rpc.xml:73(td) ./doc/common/tables/glance-amqp.xml:53(td) ./doc/common/tables/cinder-rpc.xml:213(td) ./doc/common/tables/heat-rpc.xml:53(td)
msgid "transport_url = None"
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:66(td) ./doc/common/tables/heat-conf-changes.xml:41(td) ./doc/common/tables/neutron-conf-changes.xml:101(td) ./doc/common/tables/nova-common.xml:98(td) ./doc/common/tables/ceilometer-conf-changes.xml:45(td) ./doc/common/tables/keystone-amqp.xml:66(td) ./doc/common/tables/sahara-common.xml:137(td) ./doc/common/tables/ceilometer-rpc.xml:74(td) ./doc/common/tables/glance-amqp.xml:54(td) ./doc/common/tables/cinder-rpc.xml:214(td) ./doc/common/tables/heat-rpc.xml:54(td)
msgid "(StrOpt) A URL representing the messaging driver to use and its full configuration. If not set, we fall back to the rpc_backend option and driver specific configuration."
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:72(td)
msgid "rpc_support_old_agents = False"
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:73(td)
msgid "(BoolOpt) Enable server RPC compatibility with old agents"
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:76(th) ./doc/common/tables/ceilometer-redis.xml:44(th) ./doc/common/tables/glance-matchmaker.xml:29(th) ./doc/common/tables/sahara-redis.xml:33(th) ./doc/common/tables/cinder-rpc.xml:236(th) ./doc/common/tables/nova-rpc_all.xml:208(th) ./doc/common/tables/heat-rpc.xml:57(th) ./doc/common/tables/trove-redis.xml:33(th) ./doc/common/tables/nova-rpc.xml:68(th) ./doc/common/tables/keystone-redis.xml:44(th)
msgid "[matchmaker_ring]"
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:79(td) ./doc/common/tables/ceilometer-redis.xml:47(td) ./doc/common/tables/glance-matchmaker.xml:32(td) ./doc/common/tables/sahara-redis.xml:36(td) ./doc/common/tables/cinder-rpc.xml:239(td) ./doc/common/tables/nova-rpc_all.xml:211(td) ./doc/common/tables/heat-rpc.xml:60(td) ./doc/common/tables/trove-redis.xml:36(td) ./doc/common/tables/nova-rpc.xml:71(td) ./doc/common/tables/keystone-redis.xml:47(td)
msgid "ringfile = /etc/oslo/matchmaker_ring.json"
msgstr ""
#: ./doc/common/tables/neutron-rpc.xml:80(td) ./doc/common/tables/ceilometer-redis.xml:48(td) ./doc/common/tables/glance-matchmaker.xml:33(td) ./doc/common/tables/sahara-redis.xml:37(td) ./doc/common/tables/cinder-rpc.xml:240(td) ./doc/common/tables/nova-rpc_all.xml:212(td) ./doc/common/tables/heat-rpc.xml:61(td) ./doc/common/tables/nova-rpc.xml:72(td) ./doc/common/tables/keystone-redis.xml:48(td)
msgid "(StrOpt) Matchmaker ring file (JSON)."
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:7(caption)
msgid "Description of Percona database configuration options"
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:18(th)
msgid "[percona]"
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:21(td) ./doc/common/tables/trove-db_mysql.xml:21(td)
msgid "backup_incremental_strategy = {'InnoBackupEx': 'InnoBackupExIncremental'}"
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:22(td) ./doc/common/tables/trove-db_mysql.xml:22(td) ./doc/common/tables/trove-conf-changes.xml:185(td) ./doc/common/tables/trove-conf-changes.xml:221(td)
msgid "(DictOpt) Incremental Backup Runner based on the default strategy. For strategies that do not implement an incremental, the runner will use the default full backup."
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:25(td) ./doc/common/tables/trove-db_mysql.xml:25(td) ./doc/common/tables/trove-backup.xml:29(td)
msgid "backup_namespace = trove.guestagent.strategies.backup.mysql_impl"
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:26(td) ./doc/common/tables/trove-db_percona.xml:34(td) ./doc/common/tables/trove-db_percona.xml:58(td) ./doc/common/tables/trove-amqp.xml:34(td) ./doc/common/tables/trove-db_cassandra.xml:26(td) ./doc/common/tables/trove-db_mysql.xml:26(td) ./doc/common/tables/trove-db_mysql.xml:34(td) ./doc/common/tables/trove-db_mysql.xml:58(td) ./doc/common/tables/trove-db_postgresql.xml:22(td) ./doc/common/tables/trove-db_postgresql.xml:30(td) ./doc/common/tables/trove-db_postgresql.xml:46(td) ./doc/common/tables/trove-common.xml:54(td) ./doc/common/tables/trove-common.xml:70(td) ./doc/common/tables/trove-api.xml:38(td) ./doc/common/tables/trove-api.xml:42(td) ./doc/common/tables/trove-api.xml:94(td) ./doc/common/tables/trove-api.xml:102(td) ./doc/common/tables/trove-api.xml:106(td) ./doc/common/tables/trove-dns.xml:22(td) ./doc/common/tables/trove-dns.xml:26(td) ./doc/common/tables/trove-dns.xml:30(td) ./doc/common/tables/trove-dns.xml:34(td) ./doc/common/tables/trove-dns.xml:38(td) ./doc/common/tables/trove-dns.xml:42(td) ./doc/common/tables/trove-dns.xml:46(td) ./doc/common/tables/trove-dns.xml:50(td) ./doc/common/tables/trove-dns.xml:54(td) ./doc/common/tables/trove-dns.xml:58(td) ./doc/common/tables/trove-dns.xml:62(td) ./doc/common/tables/trove-dns.xml:66(td) ./doc/common/tables/trove-dns.xml:78(td) ./doc/common/tables/trove-volume.xml:22(td) ./doc/common/tables/trove-volume.xml:38(td) ./doc/common/tables/trove-volume.xml:50(td) ./doc/common/tables/trove-clients.xml:22(td) ./doc/common/tables/trove-clients.xml:26(td) ./doc/common/tables/trove-clients.xml:30(td) ./doc/common/tables/trove-clients.xml:34(td) ./doc/common/tables/trove-clients.xml:38(td) ./doc/common/tables/trove-clients.xml:42(td) ./doc/common/tables/trove-clients.xml:46(td) ./doc/common/tables/trove-db_couchbase.xml:22(td) ./doc/common/tables/trove-db_couchbase.xml:30(td) ./doc/common/tables/trove-db_couchbase.xml:42(td) ./doc/common/tables/trove-db_mongodb.xml:34(td) ./doc/common/tables/trove-backup.xml:34(td) ./doc/common/tables/trove-backup.xml:50(td) ./doc/common/tables/trove-guestagent.xml:38(td) ./doc/common/tables/trove-guestagent.xml:50(td) ./doc/common/tables/trove-compute.xml:22(td) ./doc/common/tables/swift-conf-changes.xml:21(td) ./doc/common/tables/swift-conf-changes.xml:25(td) ./doc/common/tables/swift-conf-changes.xml:29(td) ./doc/common/tables/swift-conf-changes.xml:33(td) ./doc/common/tables/swift-conf-changes.xml:37(td) ./doc/common/tables/swift-conf-changes.xml:41(td) ./doc/common/tables/swift-conf-changes.xml:45(td) ./doc/common/tables/swift-conf-changes.xml:124(td) ./doc/common/tables/swift-conf-changes.xml:140(td) ./doc/common/tables/swift-conf-changes.xml:148(td) ./doc/common/tables/swift-conf-changes.xml:152(td) ./doc/common/tables/swift-conf-changes.xml:156(td) ./doc/common/tables/swift-conf-changes.xml:160(td) ./doc/common/tables/swift-conf-changes.xml:164(td) ./doc/common/tables/swift-conf-changes.xml:168(td) ./doc/common/tables/swift-conf-changes.xml:172(td) ./doc/common/tables/swift-conf-changes.xml:188(td) ./doc/common/tables/swift-conf-changes.xml:192(td) ./doc/common/tables/swift-conf-changes.xml:196(td) ./doc/common/tables/swift-conf-changes.xml:206(td) ./doc/common/tables/swift-conf-changes.xml:210(td) ./doc/common/tables/swift-conf-changes.xml:214(td) ./doc/common/tables/swift-conf-changes.xml:218(td) ./doc/common/tables/swift-conf-changes.xml:222(td) ./doc/common/tables/swift-conf-changes.xml:226(td) ./doc/common/tables/swift-conf-changes.xml:230(td) ./doc/common/tables/swift-conf-changes.xml:234(td) ./doc/common/tables/swift-conf-changes.xml:238(td) ./doc/common/tables/swift-conf-changes.xml:242(td) ./doc/common/tables/swift-conf-changes.xml:246(td) ./doc/common/tables/swift-conf-changes.xml:276(td) ./doc/common/tables/swift-conf-changes.xml:280(td) ./doc/common/tables/swift-conf-changes.xml:284(td) ./doc/common/tables/swift-conf-changes.xml:288(td) ./doc/common/tables/swift-conf-changes.xml:292(td) ./doc/common/tables/swift-conf-changes.xml:296(td) ./doc/common/tables/swift-conf-changes.xml:300(td) ./doc/common/tables/swift-conf-changes.xml:320(td) ./doc/common/tables/swift-conf-changes.xml:324(td) ./doc/common/tables/swift-conf-changes.xml:328(td) ./doc/common/tables/swift-conf-changes.xml:332(td) ./doc/common/tables/swift-conf-changes.xml:336(td) ./doc/common/tables/swift-conf-changes.xml:340(td) ./doc/common/tables/swift-conf-changes.xml:344(td) ./doc/common/tables/swift-conf-changes.xml:348(td) ./doc/common/tables/swift-conf-changes.xml:352(td) ./doc/common/tables/swift-conf-changes.xml:364(td) ./doc/common/tables/swift-conf-changes.xml:368(td) ./doc/common/tables/trove-db_redis.xml:26(td) ./doc/common/tables/trove-logging.xml:30(td) ./doc/common/tables/trove-logging.xml:78(td)
msgid "(StrOpt) No help text available for this option."
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:29(td) ./doc/common/tables/trove-db_mysql.xml:29(td) ./doc/common/tables/trove-backup.xml:45(td)
msgid "backup_strategy = InnoBackupEx"
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:30(td) ./doc/common/tables/trove-db_cassandra.xml:22(td) ./doc/common/tables/trove-db_mysql.xml:30(td) ./doc/common/tables/trove-db_postgresql.xml:26(td) ./doc/common/tables/trove-conf-changes.xml:261(td) ./doc/common/tables/trove-db_couchbase.xml:26(td) ./doc/common/tables/trove-db_mongodb.xml:26(td) ./doc/common/tables/trove-backup.xml:46(td) ./doc/common/tables/trove-db_redis.xml:22(td)
msgid "(StrOpt) Default strategy to perform backups."
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:33(td) ./doc/common/tables/trove-db_cassandra.xml:25(td) ./doc/common/tables/trove-db_mysql.xml:33(td) ./doc/common/tables/trove-db_postgresql.xml:29(td) ./doc/common/tables/trove-volume.xml:37(td) ./doc/common/tables/trove-db_couchbase.xml:29(td) ./doc/common/tables/trove-db_mongodb.xml:33(td)
msgid "device_path = /dev/vdb"
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:37(td) ./doc/common/tables/trove-db_mysql.xml:37(td)
msgid "mount_point = /var/lib/mysql"
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:38(td) ./doc/common/tables/trove-db_cassandra.xml:30(td) ./doc/common/tables/trove-db_mysql.xml:38(td) ./doc/common/tables/trove-db_postgresql.xml:42(td) ./doc/common/tables/trove-conf-changes.xml:277(td) ./doc/common/tables/trove-db_couchbase.xml:34(td) ./doc/common/tables/trove-db_mongodb.xml:42(td) ./doc/common/tables/trove-db_redis.xml:30(td)
msgid "(StrOpt) Filesystem path for mounting volumes if volume support is enabled."
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:41(td) ./doc/common/tables/trove-db_mysql.xml:41(td)
msgid "replication_namespace = trove.guestagent.strategies.replication.mysql_binlog"
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:42(td) ./doc/common/tables/trove-db_mysql.xml:42(td) ./doc/common/tables/trove-conf-changes.xml:197(td) ./doc/common/tables/trove-conf-changes.xml:233(td)
msgid "(StrOpt) Namespace to load replication strategies from."
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:45(td) ./doc/common/tables/trove-db_mysql.xml:45(td)
msgid "replication_password = NETOU7897NNLOU"
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:46(td) ./doc/common/tables/trove-db_mysql.xml:46(td) ./doc/common/tables/trove-conf-changes.xml:201(td) ./doc/common/tables/trove-conf-changes.xml:237(td)
msgid "(StrOpt) Password for replication slave user."
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:49(td) ./doc/common/tables/trove-db_mysql.xml:49(td)
msgid "replication_strategy = MysqlBinlogReplication"
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:50(td) ./doc/common/tables/trove-db_cassandra.xml:34(td) ./doc/common/tables/trove-db_mysql.xml:50(td) ./doc/common/tables/trove-conf-changes.xml:105(td) ./doc/common/tables/trove-conf-changes.xml:121(td) ./doc/common/tables/trove-conf-changes.xml:173(td) ./doc/common/tables/trove-conf-changes.xml:205(td) ./doc/common/tables/trove-conf-changes.xml:241(td) ./doc/common/tables/trove-conf-changes.xml:305(td) ./doc/common/tables/trove-db_couchbase.xml:38(td) ./doc/common/tables/trove-db_mongodb.xml:54(td) ./doc/common/tables/trove-db_redis.xml:34(td)
msgid "(StrOpt) Default strategy for replication."
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:53(td) ./doc/common/tables/trove-db_mysql.xml:53(td)
msgid "replication_user = slave_user"
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:54(td) ./doc/common/tables/trove-db_mysql.xml:54(td) ./doc/common/tables/trove-conf-changes.xml:209(td) ./doc/common/tables/trove-conf-changes.xml:245(td)
msgid "(StrOpt) Userid for replication slave."
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:57(td) ./doc/common/tables/trove-db_mysql.xml:57(td) ./doc/common/tables/trove-guestagent.xml:53(td)
msgid "restore_namespace = trove.guestagent.strategies.restore.mysql_impl"
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:61(td) ./doc/common/tables/trove-db_mysql.xml:61(td) ./doc/common/tables/trove-db_postgresql.xml:49(td)
msgid "root_on_create = False"
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:62(td) ./doc/common/tables/trove-db_mysql.xml:62(td) ./doc/common/tables/trove-db_postgresql.xml:50(td) ./doc/common/tables/trove-conf-changes.xml:129(td) ./doc/common/tables/trove-conf-changes.xml:285(td) ./doc/common/tables/trove-db_couchbase.xml:46(td)
msgid "(BoolOpt) Enable the automatic creation of the root user for the service during instance-create. The generated password for the root user is immediately returned in the response of instance-create as the 'password' field."
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:65(td) ./doc/common/tables/trove-db_mysql.xml:65(td)
msgid "tcp_ports = 3306"
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:66(td) ./doc/common/tables/trove-db_cassandra.xml:38(td) ./doc/common/tables/trove-db_mysql.xml:66(td) ./doc/common/tables/trove-db_postgresql.xml:54(td) ./doc/common/tables/trove-conf-changes.xml:289(td) ./doc/common/tables/trove-db_couchbase.xml:50(td) ./doc/common/tables/trove-db_mongodb.xml:62(td) ./doc/common/tables/trove-db_redis.xml:38(td)
msgid "(ListOpt) List of TCP ports and/or port ranges to open in the security group (only applicable if trove_security_groups_support is True)."
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:69(td) ./doc/common/tables/trove-db_cassandra.xml:41(td) ./doc/common/tables/trove-db_mysql.xml:69(td) ./doc/common/tables/trove-db_postgresql.xml:57(td) ./doc/common/tables/trove-db_couchbase.xml:53(td) ./doc/common/tables/trove-db_mongodb.xml:65(td) ./doc/common/tables/trove-db_redis.xml:41(td)
msgid "udp_ports ="
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:70(td) ./doc/common/tables/trove-db_cassandra.xml:42(td) ./doc/common/tables/trove-db_mysql.xml:70(td) ./doc/common/tables/trove-db_couchbase.xml:54(td) ./doc/common/tables/trove-db_redis.xml:42(td)
msgid "(ListOpt) List of UDP ports and/or port ranges to open in the security group (only applicable if trove_security_groups_support is True)."
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:73(td)
msgid "usage_timeout = 450"
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:74(td) ./doc/common/tables/trove-db_mysql.xml:74(td) ./doc/common/tables/trove-common.xml:78(td) ./doc/common/tables/trove-conf-changes.xml:89(td)
msgid "(IntOpt) Timeout to wait for a guest to become active."
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:77(td) ./doc/common/tables/trove-db_cassandra.xml:45(td) ./doc/common/tables/trove-db_mysql.xml:77(td) ./doc/common/tables/trove-db_postgresql.xml:61(td) ./doc/common/tables/trove-db_couchbase.xml:57(td) ./doc/common/tables/trove-db_mongodb.xml:69(td)
msgid "volume_support = True"
msgstr ""
#: ./doc/common/tables/trove-db_percona.xml:78(td) ./doc/common/tables/trove-db_cassandra.xml:46(td) ./doc/common/tables/trove-db_mysql.xml:78(td) ./doc/common/tables/trove-db_postgresql.xml:62(td) ./doc/common/tables/trove-volume.xml:42(td) ./doc/common/tables/trove-conf-changes.xml:109(td) ./doc/common/tables/trove-conf-changes.xml:133(td) ./doc/common/tables/trove-conf-changes.xml:181(td) ./doc/common/tables/trove-conf-changes.xml:217(td) ./doc/common/tables/trove-conf-changes.xml:253(td) ./doc/common/tables/trove-conf-changes.xml:297(td) ./doc/common/tables/trove-conf-changes.xml:309(td) ./doc/common/tables/trove-db_couchbase.xml:58(td) ./doc/common/tables/trove-db_mongodb.xml:70(td) ./doc/common/tables/trove-db_redis.xml:46(td)
msgid "(BoolOpt) Whether to provision a cinder volume for datadir."
msgstr ""
#: ./doc/common/tables/nova-periodic.xml:7(caption)
msgid "Description of periodic configuration options"
msgstr ""
#: ./doc/common/tables/nova-periodic.xml:21(td) ./doc/common/tables/sahara-common.xml:99(td)
msgid "periodic_enable = True"
msgstr ""
#: ./doc/common/tables/nova-periodic.xml:22(td)
msgid "(BoolOpt) Enable periodic tasks"
msgstr ""
#: ./doc/common/tables/nova-periodic.xml:25(td) ./doc/common/tables/cinder-common.xml:81(td) ./doc/common/tables/sahara-common.xml:103(td)
msgid "periodic_fuzzy_delay = 60"
msgstr ""
#: ./doc/common/tables/nova-periodic.xml:26(td) ./doc/common/tables/neutron-common.xml:178(td)
msgid "(IntOpt) Range of seconds to randomly delay when starting the periodic task scheduler to reduce stampeding. (Disable by setting to 0)"
msgstr ""
#: ./doc/common/tables/nova-periodic.xml:29(td) ./doc/common/tables/cinder-common.xml:113(td) ./doc/common/tables/sahara-common.xml:123(td) ./doc/common/tables/neutron-api.xml:53(td)
msgid "run_external_periodic_tasks = True"
msgstr ""
#: ./doc/common/tables/nova-periodic.xml:30(td) ./doc/common/tables/cinder-common.xml:114(td) ./doc/common/tables/sahara-common.xml:124(td) ./doc/common/tables/neutron-api.xml:54(td)
msgid "(BoolOpt) Some periodic tasks can be run in a separate process. Should we run them here?"
msgstr ""
#: ./doc/common/tables/keystone-auth.xml:7(caption) ./doc/common/tables/cinder-auth.xml:7(caption) ./doc/common/tables/ceilometer-auth.xml:7(caption)
msgid "Description of authorization configuration options"
msgstr ""
#: ./doc/common/tables/keystone-auth.xml:18(th)
msgid "[auth]"
msgstr ""
#: ./doc/common/tables/keystone-auth.xml:21(td)
msgid "external = keystone.auth.plugins.external.DefaultDomain"
msgstr ""
#: ./doc/common/tables/keystone-auth.xml:22(td)
msgid "(StrOpt) The external (REMOTE_USER) auth plugin module."
msgstr ""
#: ./doc/common/tables/keystone-auth.xml:25(td)
msgid "methods = external, password, token"
msgstr ""
#: ./doc/common/tables/keystone-auth.xml:26(td)
msgid "(ListOpt) Default auth methods."
msgstr ""
#: ./doc/common/tables/keystone-auth.xml:29(td)
msgid "password = keystone.auth.plugins.password.Password"
msgstr ""
#: ./doc/common/tables/keystone-auth.xml:30(td)
msgid "(StrOpt) The password auth plugin module."
msgstr ""
#: ./doc/common/tables/keystone-auth.xml:33(td)
msgid "token = keystone.auth.plugins.token.Token"
msgstr ""
#: ./doc/common/tables/keystone-auth.xml:34(td)
msgid "(StrOpt) The token auth plugin module."
msgstr ""
#: ./doc/common/tables/keystone-policy.xml:7(caption) ./doc/common/tables/neutron-policy.xml:7(caption) ./doc/common/tables/nova-policy.xml:7(caption) ./doc/common/tables/glance-policy.xml:7(caption)
msgid "Description of policy configuration options"
msgstr ""
#: ./doc/common/tables/keystone-policy.xml:21(td) ./doc/common/tables/nova-policy.xml:57(td) ./doc/common/tables/glance-policy.xml:21(td) ./doc/common/tables/ceilometer-api.xml:29(td) ./doc/common/tables/heat-api.xml:49(td) ./doc/common/tables/cinder-common.xml:89(td)
msgid "policy_default_rule = default"
msgstr ""
#: ./doc/common/tables/keystone-policy.xml:22(td) ./doc/common/tables/nova-policy.xml:58(td) ./doc/common/tables/ceilometer-api.xml:30(td) ./doc/common/tables/heat-api.xml:50(td) ./doc/common/tables/cinder-common.xml:90(td)
msgid "(StrOpt) Default rule. Enforced when a requested rule is not found."
msgstr ""
#: ./doc/common/tables/keystone-policy.xml:25(td) ./doc/common/tables/neutron-policy.xml:25(td) ./doc/common/tables/nova-policy.xml:61(td) ./doc/common/tables/glance-policy.xml:25(td) ./doc/common/tables/ceilometer-api.xml:33(td) ./doc/common/tables/heat-api.xml:53(td) ./doc/common/tables/cinder-common.xml:93(td)
msgid "policy_file = policy.json"
msgstr ""
#: ./doc/common/tables/keystone-policy.xml:26(td) ./doc/common/tables/nova-policy.xml:62(td) ./doc/common/tables/ceilometer-api.xml:34(td) ./doc/common/tables/heat-api.xml:54(td) ./doc/common/tables/cinder-common.xml:94(td)
msgid "(StrOpt) The JSON file that defines policies."
msgstr ""
#: ./doc/common/tables/keystone-policy.xml:29(th)
msgid "[policy]"
msgstr ""
#: ./doc/common/tables/keystone-policy.xml:32(td)
msgid "driver = keystone.policy.backends.sql.Policy"
msgstr ""
#: ./doc/common/tables/keystone-policy.xml:33(td)
msgid "(StrOpt) Policy backend driver."
msgstr ""
#: ./doc/common/tables/keystone-policy.xml:36(td) ./doc/common/tables/keystone-api.xml:49(td) ./doc/common/tables/keystone-identity.xml:37(td) ./doc/common/tables/keystone-catalog.xml:33(td) ./doc/common/tables/keystone-assignment.xml:33(td)
msgid "list_limit = None"
msgstr ""
#: ./doc/common/tables/keystone-policy.xml:37(td)
msgid "(IntOpt) Maximum number of entities that will be returned in a policy collection."
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:7(caption) ./doc/common/tables/ceilometer-auth_token.xml:7(caption) ./doc/common/tables/neutron-auth_token.xml:7(caption) ./doc/common/tables/sahara-auth_token.xml:7(caption) ./doc/common/tables/heat-auth_token.xml:7(caption) ./doc/common/tables/nova-auth_token.xml:7(caption) ./doc/common/tables/cinder-auth_token.xml:7(caption) ./doc/common/tables/keystone-auth_token.xml:7(caption) ./doc/common/tables/trove-auth_token.xml:7(caption)
msgid "Description of authorization token configuration options"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:21(td) ./doc/common/tables/glance-auth_token.xml:128(td) ./doc/common/tables/ceilometer-common.xml:37(td) ./doc/common/tables/ceilometer-auth_token.xml:121(td) ./doc/common/tables/neutron-auth_token.xml:21(td) ./doc/common/tables/neutron-auth_token.xml:128(td) ./doc/common/tables/nova-common.xml:49(td) ./doc/common/tables/sahara-auth_token.xml:121(td) ./doc/common/tables/heat-auth_token.xml:21(td) ./doc/common/tables/heat-auth_token.xml:128(td) ./doc/common/tables/nova-auth_token.xml:121(td) ./doc/common/tables/cinder-auth_token.xml:21(td) ./doc/common/tables/cinder-auth_token.xml:128(td) ./doc/common/tables/keystone-auth_token.xml:21(td) ./doc/common/tables/keystone-auth_token.xml:128(td) ./doc/common/tables/sahara-common.xml:83(td) ./doc/common/tables/trove-auth_token.xml:21(td) ./doc/common/tables/trove-auth_token.xml:128(td)
msgid "memcached_servers = None"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:22(td) ./doc/common/tables/ceilometer-common.xml:38(td) ./doc/common/tables/neutron-auth_token.xml:22(td) ./doc/common/tables/nova-common.xml:50(td) ./doc/common/tables/heat-auth_token.xml:22(td) ./doc/common/tables/cinder-auth_token.xml:22(td) ./doc/common/tables/keystone-auth_token.xml:22(td) ./doc/common/tables/sahara-common.xml:84(td) ./doc/common/tables/trove-auth_token.xml:22(td)
msgid "(ListOpt) Memcached servers or None for in process cache."
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:25(th) ./doc/common/tables/ceilometer-auth_token.xml:18(th) ./doc/common/tables/neutron-auth_token.xml:25(th) ./doc/common/tables/sahara-auth_token.xml:18(th) ./doc/common/tables/heat-auth_token.xml:25(th) ./doc/common/tables/nova-auth_token.xml:18(th) ./doc/common/tables/cinder-auth_token.xml:25(th) ./doc/common/tables/keystone-auth_token.xml:25(th) ./doc/common/tables/trove-auth_token.xml:25(th)
msgid "[keystone_authtoken]"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:28(td) ./doc/common/tables/nova-ironic.xml:25(td) ./doc/common/tables/ceilometer-auth_token.xml:21(td) ./doc/common/tables/neutron-auth_token.xml:28(td) ./doc/common/tables/glance-registry.xml:21(td) ./doc/common/tables/nova-neutron.xml:32(td) ./doc/common/tables/sahara-auth_token.xml:21(td) ./doc/common/tables/heat-auth_token.xml:28(td) ./doc/common/tables/nova-auth_token.xml:21(td) ./doc/common/tables/cinder-auth_token.xml:28(td) ./doc/common/tables/keystone-auth_token.xml:28(td) ./doc/common/tables/neutron-embrane_lb.xml:21(td) ./doc/common/tables/trove-auth_token.xml:28(td) ./doc/common/tables/neutron-common.xml:21(td) ./doc/common/tables/neutron-common.xml:207(td) ./doc/common/tables/neutron-common.xml:234(td)
msgid "admin_password = None"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:29(td) ./doc/common/tables/ceilometer-auth_token.xml:22(td) ./doc/common/tables/neutron-auth_token.xml:29(td) ./doc/common/tables/sahara-auth_token.xml:22(td) ./doc/common/tables/heat-auth_token.xml:29(td) ./doc/common/tables/nova-auth_token.xml:22(td) ./doc/common/tables/cinder-auth_token.xml:29(td) ./doc/common/tables/keystone-auth_token.xml:29(td) ./doc/common/tables/trove-auth_token.xml:29(td)
msgid "(StrOpt) Keystone account password"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:32(td) ./doc/common/tables/ceilometer-auth_token.xml:25(td) ./doc/common/tables/neutron-auth_token.xml:32(td) ./doc/common/tables/sahara-auth_token.xml:25(td) ./doc/common/tables/heat-auth_token.xml:32(td) ./doc/common/tables/nova-auth_token.xml:25(td) ./doc/common/tables/cinder-auth_token.xml:32(td) ./doc/common/tables/keystone-auth_token.xml:32(td) ./doc/common/tables/trove-auth_token.xml:32(td)
msgid "admin_tenant_name = admin"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:33(td) ./doc/common/tables/ceilometer-auth_token.xml:26(td) ./doc/common/tables/neutron-auth_token.xml:33(td) ./doc/common/tables/sahara-auth_token.xml:26(td) ./doc/common/tables/heat-auth_token.xml:33(td) ./doc/common/tables/nova-auth_token.xml:26(td) ./doc/common/tables/cinder-auth_token.xml:33(td) ./doc/common/tables/keystone-auth_token.xml:33(td) ./doc/common/tables/trove-auth_token.xml:33(td)
msgid "(StrOpt) Keystone service account tenant name to validate user tokens"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:36(td) ./doc/common/tables/ceilometer-auth_token.xml:29(td) ./doc/common/tables/neutron-auth_token.xml:36(td) ./doc/common/tables/sahara-auth_token.xml:29(td) ./doc/common/tables/heat-auth_token.xml:36(td) ./doc/common/tables/nova-auth_token.xml:29(td) ./doc/common/tables/cinder-auth_token.xml:36(td) ./doc/common/tables/keystone-auth_token.xml:36(td) ./doc/common/tables/trove-auth_token.xml:36(td)
msgid "admin_token = None"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:37(td) ./doc/common/tables/ceilometer-auth_token.xml:30(td) ./doc/common/tables/neutron-auth_token.xml:37(td) ./doc/common/tables/sahara-auth_token.xml:30(td) ./doc/common/tables/heat-auth_token.xml:37(td) ./doc/common/tables/nova-auth_token.xml:30(td) ./doc/common/tables/cinder-auth_token.xml:37(td) ./doc/common/tables/keystone-auth_token.xml:37(td) ./doc/common/tables/trove-auth_token.xml:37(td)
msgid "(StrOpt) This option is deprecated and may be removed in a future release. Single shared secret with the Keystone configuration used for bootstrapping a Keystone installation, or otherwise bypassing the normal authentication process. This option should not be used, use `admin_user` and `admin_password` instead."
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:40(td) ./doc/common/tables/ceilometer-auth_token.xml:33(td) ./doc/common/tables/neutron-auth_token.xml:40(td) ./doc/common/tables/glance-registry.xml:29(td) ./doc/common/tables/sahara-auth_token.xml:33(td) ./doc/common/tables/heat-auth_token.xml:40(td) ./doc/common/tables/nova-auth_token.xml:33(td) ./doc/common/tables/cinder-auth_token.xml:40(td) ./doc/common/tables/keystone-auth_token.xml:40(td) ./doc/common/tables/trove-auth_token.xml:40(td) ./doc/common/tables/neutron-common.xml:29(td) ./doc/common/tables/neutron-common.xml:215(td)
msgid "admin_user = None"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:41(td) ./doc/common/tables/ceilometer-auth_token.xml:34(td) ./doc/common/tables/neutron-auth_token.xml:41(td) ./doc/common/tables/sahara-auth_token.xml:34(td) ./doc/common/tables/heat-auth_token.xml:41(td) ./doc/common/tables/nova-auth_token.xml:34(td) ./doc/common/tables/cinder-auth_token.xml:41(td) ./doc/common/tables/keystone-auth_token.xml:41(td) ./doc/common/tables/trove-auth_token.xml:41(td)
msgid "(StrOpt) Keystone account username"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:44(td) ./doc/common/tables/ceilometer-auth_token.xml:37(td) ./doc/common/tables/neutron-auth_token.xml:44(td) ./doc/common/tables/sahara-auth_token.xml:37(td) ./doc/common/tables/heat-auth_token.xml:44(td) ./doc/common/tables/nova-auth_token.xml:37(td) ./doc/common/tables/cinder-auth_token.xml:44(td) ./doc/common/tables/keystone-auth_token.xml:44(td) ./doc/common/tables/trove-auth_token.xml:44(td)
msgid "auth_admin_prefix ="
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:45(td) ./doc/common/tables/ceilometer-auth_token.xml:38(td) ./doc/common/tables/neutron-auth_token.xml:45(td) ./doc/common/tables/sahara-auth_token.xml:38(td) ./doc/common/tables/heat-auth_token.xml:45(td) ./doc/common/tables/nova-auth_token.xml:38(td) ./doc/common/tables/cinder-auth_token.xml:45(td) ./doc/common/tables/keystone-auth_token.xml:45(td) ./doc/common/tables/trove-auth_token.xml:45(td)
msgid "(StrOpt) Prefix to prepend at the beginning of the path. Deprecated, use identity_uri."
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:48(td) ./doc/common/tables/ceilometer-auth_token.xml:41(td) ./doc/common/tables/neutron-auth_token.xml:48(td) ./doc/common/tables/sahara-auth_token.xml:41(td) ./doc/common/tables/heat-auth_token.xml:48(td) ./doc/common/tables/nova-auth_token.xml:41(td) ./doc/common/tables/cinder-auth_token.xml:48(td) ./doc/common/tables/keystone-auth_token.xml:48(td) ./doc/common/tables/trove-auth_token.xml:48(td)
msgid "auth_host = 127.0.0.1"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:49(td) ./doc/common/tables/ceilometer-auth_token.xml:42(td) ./doc/common/tables/neutron-auth_token.xml:49(td) ./doc/common/tables/sahara-auth_token.xml:42(td) ./doc/common/tables/heat-auth_token.xml:49(td) ./doc/common/tables/nova-auth_token.xml:42(td) ./doc/common/tables/cinder-auth_token.xml:49(td) ./doc/common/tables/keystone-auth_token.xml:49(td) ./doc/common/tables/trove-auth_token.xml:49(td)
msgid "(StrOpt) Host providing the admin Identity API endpoint. Deprecated, use identity_uri."
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:52(td) ./doc/common/tables/ceilometer-auth_token.xml:45(td) ./doc/common/tables/neutron-auth_token.xml:52(td) ./doc/common/tables/sahara-auth_token.xml:45(td) ./doc/common/tables/heat-auth_token.xml:52(td) ./doc/common/tables/nova-auth_token.xml:45(td) ./doc/common/tables/cinder-auth_token.xml:52(td) ./doc/common/tables/keystone-auth_token.xml:52(td) ./doc/common/tables/swift-proxy-server-filter-authtoken.xml:36(td) ./doc/common/tables/trove-auth_token.xml:52(td)
msgid "auth_port = 35357"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:53(td) ./doc/common/tables/ceilometer-auth_token.xml:46(td) ./doc/common/tables/neutron-auth_token.xml:53(td) ./doc/common/tables/sahara-auth_token.xml:46(td) ./doc/common/tables/heat-auth_token.xml:53(td) ./doc/common/tables/nova-auth_token.xml:46(td) ./doc/common/tables/cinder-auth_token.xml:53(td) ./doc/common/tables/keystone-auth_token.xml:53(td) ./doc/common/tables/trove-auth_token.xml:53(td)
msgid "(IntOpt) Port of the admin Identity API endpoint. Deprecated, use identity_uri."
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:56(td) ./doc/common/tables/ceilometer-auth_token.xml:49(td) ./doc/common/tables/neutron-auth_token.xml:56(td) ./doc/common/tables/sahara-auth_token.xml:49(td) ./doc/common/tables/heat-auth_token.xml:56(td) ./doc/common/tables/nova-auth_token.xml:49(td) ./doc/common/tables/cinder-auth_token.xml:56(td) ./doc/common/tables/keystone-auth_token.xml:56(td) ./doc/common/tables/trove-auth_token.xml:56(td)
msgid "auth_protocol = https"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:57(td) ./doc/common/tables/ceilometer-auth_token.xml:50(td) ./doc/common/tables/neutron-auth_token.xml:57(td) ./doc/common/tables/sahara-auth_token.xml:50(td) ./doc/common/tables/heat-auth_token.xml:57(td) ./doc/common/tables/nova-auth_token.xml:50(td) ./doc/common/tables/cinder-auth_token.xml:57(td) ./doc/common/tables/keystone-auth_token.xml:57(td) ./doc/common/tables/trove-auth_token.xml:57(td)
msgid "(StrOpt) Protocol of the admin Identity API endpoint (http or https). Deprecated, use identity_uri."
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:60(td) ./doc/common/tables/ceilometer-auth_token.xml:53(td) ./doc/common/tables/neutron-auth_token.xml:60(td) ./doc/common/tables/sahara-auth_token.xml:53(td) ./doc/common/tables/heat-auth_token.xml:60(td) ./doc/common/tables/nova-auth_token.xml:53(td) ./doc/common/tables/heat-api.xml:103(td) ./doc/common/tables/cinder-auth_token.xml:60(td) ./doc/common/tables/keystone-auth_token.xml:60(td) ./doc/common/tables/trove-auth_token.xml:60(td)
msgid "auth_uri = None"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:61(td) ./doc/common/tables/ceilometer-auth_token.xml:54(td) ./doc/common/tables/neutron-auth_token.xml:61(td) ./doc/common/tables/sahara-auth_token.xml:54(td) ./doc/common/tables/heat-auth_token.xml:61(td) ./doc/common/tables/nova-auth_token.xml:54(td) ./doc/common/tables/cinder-auth_token.xml:61(td) ./doc/common/tables/keystone-auth_token.xml:61(td) ./doc/common/tables/trove-auth_token.xml:61(td)
msgid "(StrOpt) Complete public Identity API endpoint"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:64(td) ./doc/common/tables/ceilometer-auth_token.xml:57(td) ./doc/common/tables/neutron-auth_token.xml:64(td) ./doc/common/tables/sahara-auth_token.xml:57(td) ./doc/common/tables/heat-auth_token.xml:64(td) ./doc/common/tables/nova-auth_token.xml:57(td) ./doc/common/tables/cinder-auth_token.xml:64(td) ./doc/common/tables/keystone-auth_token.xml:64(td) ./doc/common/tables/trove-auth_token.xml:64(td)
msgid "auth_version = None"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:65(td) ./doc/common/tables/ceilometer-auth_token.xml:58(td) ./doc/common/tables/neutron-auth_token.xml:65(td) ./doc/common/tables/sahara-auth_token.xml:58(td) ./doc/common/tables/heat-auth_token.xml:65(td) ./doc/common/tables/nova-auth_token.xml:58(td) ./doc/common/tables/cinder-auth_token.xml:65(td) ./doc/common/tables/keystone-auth_token.xml:65(td) ./doc/common/tables/trove-auth_token.xml:65(td)
msgid "(StrOpt) API version of the admin Identity API endpoint"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:68(td) ./doc/common/tables/ceilometer-auth_token.xml:61(td) ./doc/common/tables/neutron-auth_token.xml:68(td) ./doc/common/tables/sahara-auth_token.xml:61(td) ./doc/common/tables/heat-auth_token.xml:68(td) ./doc/common/tables/nova-auth_token.xml:61(td) ./doc/common/tables/cinder-auth_token.xml:68(td) ./doc/common/tables/keystone-auth_token.xml:68(td) ./doc/common/tables/trove-auth_token.xml:68(td)
msgid "cache = None"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:69(td) ./doc/common/tables/ceilometer-auth_token.xml:62(td) ./doc/common/tables/neutron-auth_token.xml:69(td) ./doc/common/tables/sahara-auth_token.xml:62(td) ./doc/common/tables/heat-auth_token.xml:69(td) ./doc/common/tables/nova-auth_token.xml:62(td) ./doc/common/tables/cinder-auth_token.xml:69(td) ./doc/common/tables/keystone-auth_token.xml:69(td) ./doc/common/tables/trove-auth_token.xml:69(td)
msgid "(StrOpt) Env key for the swift cache"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:72(td) ./doc/common/tables/ceilometer-auth_token.xml:65(td) ./doc/common/tables/neutron-auth_token.xml:72(td) ./doc/common/tables/sahara-auth_token.xml:65(td) ./doc/common/tables/heat-auth_token.xml:72(td) ./doc/common/tables/nova-auth_token.xml:65(td) ./doc/common/tables/cinder-auth_token.xml:72(td) ./doc/common/tables/keystone-auth_token.xml:72(td) ./doc/common/tables/trove-auth_token.xml:72(td) ./doc/common/tables/keystone-ec2.xml:28(td)
msgid "cafile = None"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:73(td) ./doc/common/tables/ceilometer-auth_token.xml:66(td) ./doc/common/tables/neutron-auth_token.xml:73(td) ./doc/common/tables/sahara-auth_token.xml:66(td) ./doc/common/tables/heat-auth_token.xml:73(td) ./doc/common/tables/nova-auth_token.xml:66(td) ./doc/common/tables/cinder-auth_token.xml:73(td) ./doc/common/tables/keystone-auth_token.xml:73(td) ./doc/common/tables/trove-auth_token.xml:73(td)
msgid "(StrOpt) A PEM encoded Certificate Authority to use when verifying HTTPs connections. Defaults to system CAs."
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:76(td) ./doc/common/tables/ceilometer-auth_token.xml:69(td) ./doc/common/tables/neutron-auth_token.xml:76(td) ./doc/common/tables/sahara-auth_token.xml:69(td) ./doc/common/tables/heat-auth_token.xml:76(td) ./doc/common/tables/nova-auth_token.xml:69(td) ./doc/common/tables/cinder-auth_token.xml:76(td) ./doc/common/tables/keystone-auth_token.xml:76(td) ./doc/common/tables/trove-auth_token.xml:76(td) ./doc/common/tables/keystone-ec2.xml:32(td)
msgid "certfile = None"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:77(td) ./doc/common/tables/glance-auth_token.xml:117(td) ./doc/common/tables/ceilometer-auth_token.xml:70(td) ./doc/common/tables/ceilometer-auth_token.xml:110(td) ./doc/common/tables/neutron-auth_token.xml:77(td) ./doc/common/tables/neutron-auth_token.xml:117(td) ./doc/common/tables/sahara-auth_token.xml:70(td) ./doc/common/tables/sahara-auth_token.xml:110(td) ./doc/common/tables/heat-auth_token.xml:77(td) ./doc/common/tables/heat-auth_token.xml:117(td) ./doc/common/tables/nova-auth_token.xml:70(td) ./doc/common/tables/nova-auth_token.xml:110(td) ./doc/common/tables/cinder-auth_token.xml:77(td) ./doc/common/tables/cinder-auth_token.xml:117(td) ./doc/common/tables/keystone-auth_token.xml:77(td) ./doc/common/tables/keystone-auth_token.xml:117(td) ./doc/common/tables/trove-auth_token.xml:77(td) ./doc/common/tables/trove-auth_token.xml:117(td)
msgid "(StrOpt) Required if Keystone server requires client certificate"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:80(td) ./doc/common/tables/ceilometer-auth_token.xml:73(td) ./doc/common/tables/neutron-auth_token.xml:80(td) ./doc/common/tables/sahara-auth_token.xml:73(td) ./doc/common/tables/heat-auth_token.xml:80(td) ./doc/common/tables/nova-auth_token.xml:73(td) ./doc/common/tables/cinder-auth_token.xml:80(td) ./doc/common/tables/keystone-auth_token.xml:80(td) ./doc/common/tables/trove-auth_token.xml:80(td)
msgid "check_revocations_for_cached = False"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:81(td) ./doc/common/tables/ceilometer-auth_token.xml:74(td) ./doc/common/tables/neutron-auth_token.xml:81(td) ./doc/common/tables/heat-conf-changes.xml:109(td) ./doc/common/tables/glance-conf-changes.xml:53(td) ./doc/common/tables/neutron-conf-changes.xml:261(td) ./doc/common/tables/keystone-conf-changes.xml:57(td) ./doc/common/tables/ceilometer-conf-changes.xml:141(td) ./doc/common/tables/sahara-auth_token.xml:74(td) ./doc/common/tables/heat-auth_token.xml:81(td) ./doc/common/tables/nova-auth_token.xml:74(td) ./doc/common/tables/trove-conf-changes.xml:137(td) ./doc/common/tables/cinder-auth_token.xml:81(td) ./doc/common/tables/keystone-auth_token.xml:81(td) ./doc/common/tables/nova-conf-changes.xml:165(td) ./doc/common/tables/trove-auth_token.xml:81(td) ./doc/common/tables/cinder-conf-changes.xml:469(td)
msgid "(BoolOpt) If true, the revocation list will be checked for cached tokens. This requires that PKI tokens are configured on the Keystone server."
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:84(td) ./doc/common/tables/ceilometer-auth_token.xml:77(td) ./doc/common/tables/neutron-auth_token.xml:84(td) ./doc/common/tables/sahara-auth_token.xml:77(td) ./doc/common/tables/heat-auth_token.xml:84(td) ./doc/common/tables/nova-auth_token.xml:77(td) ./doc/common/tables/cinder-auth_token.xml:84(td) ./doc/common/tables/keystone-auth_token.xml:84(td) ./doc/common/tables/trove-auth_token.xml:84(td)
msgid "delay_auth_decision = False"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:85(td) ./doc/common/tables/ceilometer-auth_token.xml:78(td) ./doc/common/tables/neutron-auth_token.xml:85(td) ./doc/common/tables/sahara-auth_token.xml:78(td) ./doc/common/tables/heat-auth_token.xml:85(td) ./doc/common/tables/nova-auth_token.xml:78(td) ./doc/common/tables/cinder-auth_token.xml:85(td) ./doc/common/tables/keystone-auth_token.xml:85(td) ./doc/common/tables/trove-auth_token.xml:85(td)
msgid "(BoolOpt) Do not handle authorization requests within the middleware, but delegate the authorization decision to downstream WSGI components"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:88(td) ./doc/common/tables/ceilometer-auth_token.xml:81(td) ./doc/common/tables/neutron-auth_token.xml:88(td) ./doc/common/tables/sahara-auth_token.xml:81(td) ./doc/common/tables/heat-auth_token.xml:88(td) ./doc/common/tables/nova-auth_token.xml:81(td) ./doc/common/tables/cinder-auth_token.xml:88(td) ./doc/common/tables/keystone-auth_token.xml:88(td) ./doc/common/tables/trove-auth_token.xml:88(td) ./doc/common/tables/keystone-token.xml:37(td)
msgid "enforce_token_bind = permissive"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:89(td) ./doc/common/tables/ceilometer-auth_token.xml:82(td) ./doc/common/tables/neutron-auth_token.xml:89(td) ./doc/common/tables/sahara-auth_token.xml:82(td) ./doc/common/tables/heat-auth_token.xml:89(td) ./doc/common/tables/nova-auth_token.xml:82(td) ./doc/common/tables/cinder-auth_token.xml:89(td) ./doc/common/tables/keystone-auth_token.xml:89(td) ./doc/common/tables/trove-auth_token.xml:89(td)
msgid "(StrOpt) Used to control the use and type of token binding. Can be set to: \"disabled\" to not check token binding. \"permissive\" (default) to validate binding information if the bind type is of a form known to the server and ignore it if not. \"strict\" like \"permissive\" but if the bind type is unknown the token will be rejected. \"required\" any form of token binding is needed to be allowed. Finally the name of a binding method that must be present in tokens."
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:92(td) ./doc/common/tables/ceilometer-auth_token.xml:85(td) ./doc/common/tables/neutron-auth_token.xml:92(td) ./doc/common/tables/sahara-auth_token.xml:85(td) ./doc/common/tables/heat-auth_token.xml:92(td) ./doc/common/tables/nova-auth_token.xml:85(td) ./doc/common/tables/cinder-auth_token.xml:92(td) ./doc/common/tables/keystone-auth_token.xml:92(td) ./doc/common/tables/trove-auth_token.xml:92(td)
msgid "hash_algorithms = md5"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:93(td) ./doc/common/tables/ceilometer-auth_token.xml:86(td) ./doc/common/tables/neutron-auth_token.xml:93(td) ./doc/common/tables/heat-conf-changes.xml:113(td) ./doc/common/tables/glance-conf-changes.xml:57(td) ./doc/common/tables/neutron-conf-changes.xml:265(td) ./doc/common/tables/keystone-conf-changes.xml:61(td) ./doc/common/tables/ceilometer-conf-changes.xml:145(td) ./doc/common/tables/sahara-auth_token.xml:86(td) ./doc/common/tables/heat-auth_token.xml:93(td) ./doc/common/tables/nova-auth_token.xml:86(td) ./doc/common/tables/trove-conf-changes.xml:141(td) ./doc/common/tables/cinder-auth_token.xml:93(td) ./doc/common/tables/keystone-auth_token.xml:93(td) ./doc/common/tables/nova-conf-changes.xml:169(td) ./doc/common/tables/trove-auth_token.xml:93(td) ./doc/common/tables/cinder-conf-changes.xml:473(td)
msgid "(ListOpt) Hash algorithms to use for hashing PKI tokens. This may be a single algorithm or multiple. The algorithms are those supported by Python standard hashlib.new(). The hashes will be tried in the order given, so put the preferred one first for performance. The result of the first hash will be stored in the cache. This will typically be set to multiple values only while migrating from a less secure algorithm to a more secure one. Once all the old tokens are expired this option should be set to a single value for better performance."
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:96(td) ./doc/common/tables/ceilometer-auth_token.xml:89(td) ./doc/common/tables/neutron-auth_token.xml:96(td) ./doc/common/tables/sahara-auth_token.xml:89(td) ./doc/common/tables/heat-auth_token.xml:96(td) ./doc/common/tables/nova-auth_token.xml:89(td) ./doc/common/tables/cinder-auth_token.xml:96(td) ./doc/common/tables/keystone-auth_token.xml:96(td) ./doc/common/tables/trove-auth_token.xml:96(td)
msgid "http_connect_timeout = None"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:97(td) ./doc/common/tables/ceilometer-auth_token.xml:90(td) ./doc/common/tables/neutron-auth_token.xml:97(td) ./doc/common/tables/sahara-auth_token.xml:90(td) ./doc/common/tables/heat-auth_token.xml:97(td) ./doc/common/tables/nova-auth_token.xml:90(td) ./doc/common/tables/cinder-auth_token.xml:97(td) ./doc/common/tables/keystone-auth_token.xml:97(td) ./doc/common/tables/trove-auth_token.xml:97(td)
msgid "(BoolOpt) Request timeout value for communicating with Identity API server."
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:100(td) ./doc/common/tables/ceilometer-auth_token.xml:93(td) ./doc/common/tables/neutron-auth_token.xml:100(td) ./doc/common/tables/sahara-auth_token.xml:93(td) ./doc/common/tables/heat-auth_token.xml:100(td) ./doc/common/tables/nova-auth_token.xml:93(td) ./doc/common/tables/cinder-auth_token.xml:100(td) ./doc/common/tables/keystone-auth_token.xml:100(td) ./doc/common/tables/trove-auth_token.xml:100(td)
msgid "http_request_max_retries = 3"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:101(td) ./doc/common/tables/ceilometer-auth_token.xml:94(td) ./doc/common/tables/neutron-auth_token.xml:101(td) ./doc/common/tables/sahara-auth_token.xml:94(td) ./doc/common/tables/heat-auth_token.xml:101(td) ./doc/common/tables/nova-auth_token.xml:94(td) ./doc/common/tables/cinder-auth_token.xml:101(td) ./doc/common/tables/keystone-auth_token.xml:101(td) ./doc/common/tables/trove-auth_token.xml:101(td)
msgid "(IntOpt) How many times are we trying to reconnect when communicating with Identity API Server."
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:104(td) ./doc/common/tables/ceilometer-auth_token.xml:97(td) ./doc/common/tables/neutron-auth_token.xml:104(td) ./doc/common/tables/sahara-auth_token.xml:97(td) ./doc/common/tables/heat-auth_token.xml:104(td) ./doc/common/tables/nova-auth_token.xml:97(td) ./doc/common/tables/cinder-auth_token.xml:104(td) ./doc/common/tables/keystone-auth_token.xml:104(td) ./doc/common/tables/trove-auth_token.xml:104(td)
msgid "identity_uri = None"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:105(td) ./doc/common/tables/ceilometer-auth_token.xml:98(td) ./doc/common/tables/neutron-auth_token.xml:105(td) ./doc/common/tables/heat-conf-changes.xml:117(td) ./doc/common/tables/glance-conf-changes.xml:61(td) ./doc/common/tables/neutron-conf-changes.xml:269(td) ./doc/common/tables/keystone-conf-changes.xml:65(td) ./doc/common/tables/ceilometer-conf-changes.xml:149(td) ./doc/common/tables/sahara-auth_token.xml:98(td) ./doc/common/tables/heat-auth_token.xml:105(td) ./doc/common/tables/nova-auth_token.xml:98(td) ./doc/common/tables/trove-conf-changes.xml:145(td) ./doc/common/tables/cinder-auth_token.xml:105(td) ./doc/common/tables/keystone-auth_token.xml:105(td) ./doc/common/tables/nova-conf-changes.xml:173(td) ./doc/common/tables/trove-auth_token.xml:105(td) ./doc/common/tables/cinder-conf-changes.xml:477(td)
msgid "(StrOpt) Complete admin Identity API endpoint. This should specify the unversioned root endpoint e.g. https://localhost:35357/"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:108(td) ./doc/common/tables/ceilometer-auth_token.xml:101(td) ./doc/common/tables/neutron-auth_token.xml:108(td) ./doc/common/tables/sahara-auth_token.xml:101(td) ./doc/common/tables/heat-auth_token.xml:108(td) ./doc/common/tables/nova-auth_token.xml:101(td) ./doc/common/tables/cinder-auth_token.xml:108(td) ./doc/common/tables/keystone-auth_token.xml:108(td) ./doc/common/tables/trove-auth_token.xml:108(td)
msgid "include_service_catalog = True"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:109(td) ./doc/common/tables/ceilometer-auth_token.xml:102(td) ./doc/common/tables/neutron-auth_token.xml:109(td) ./doc/common/tables/sahara-auth_token.xml:102(td) ./doc/common/tables/heat-auth_token.xml:109(td) ./doc/common/tables/nova-auth_token.xml:102(td) ./doc/common/tables/cinder-auth_token.xml:109(td) ./doc/common/tables/keystone-auth_token.xml:109(td) ./doc/common/tables/trove-auth_token.xml:109(td)
msgid "(BoolOpt) (optional) indicate whether to set the X-Service-Catalog header. If False, middleware will not ask for service catalog on token validation and will not set the X-Service-Catalog header."
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:113(td) ./doc/common/tables/ceilometer-auth_token.xml:106(td) ./doc/common/tables/neutron-auth_token.xml:113(td) ./doc/common/tables/sahara-auth_token.xml:106(td) ./doc/common/tables/heat-auth_token.xml:113(td) ./doc/common/tables/nova-auth_token.xml:106(td) ./doc/common/tables/cinder-auth_token.xml:113(td) ./doc/common/tables/keystone-auth_token.xml:113(td) ./doc/common/tables/trove-auth_token.xml:113(td)
msgid "(BoolOpt) Verify HTTPS connections."
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:116(td) ./doc/common/tables/ceilometer-auth_token.xml:109(td) ./doc/common/tables/neutron-auth_token.xml:116(td) ./doc/common/tables/sahara-auth_token.xml:109(td) ./doc/common/tables/heat-auth_token.xml:116(td) ./doc/common/tables/nova-auth_token.xml:109(td) ./doc/common/tables/cinder-auth_token.xml:116(td) ./doc/common/tables/keystone-auth_token.xml:116(td) ./doc/common/tables/trove-auth_token.xml:116(td) ./doc/common/tables/keystone-ec2.xml:40(td)
msgid "keyfile = None"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:120(td) ./doc/common/tables/ceilometer-auth_token.xml:113(td) ./doc/common/tables/neutron-auth_token.xml:120(td) ./doc/common/tables/sahara-auth_token.xml:113(td) ./doc/common/tables/heat-auth_token.xml:120(td) ./doc/common/tables/nova-auth_token.xml:113(td) ./doc/common/tables/cinder-auth_token.xml:120(td) ./doc/common/tables/keystone-auth_token.xml:120(td) ./doc/common/tables/trove-auth_token.xml:120(td)
msgid "memcache_secret_key = None"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:121(td) ./doc/common/tables/ceilometer-auth_token.xml:114(td) ./doc/common/tables/neutron-auth_token.xml:121(td) ./doc/common/tables/sahara-auth_token.xml:114(td) ./doc/common/tables/heat-auth_token.xml:121(td) ./doc/common/tables/nova-auth_token.xml:114(td) ./doc/common/tables/cinder-auth_token.xml:121(td) ./doc/common/tables/keystone-auth_token.xml:121(td) ./doc/common/tables/trove-auth_token.xml:121(td)
msgid "(StrOpt) (optional, mandatory if memcache_security_strategy is defined) this string is used for key derivation."
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:124(td) ./doc/common/tables/ceilometer-auth_token.xml:117(td) ./doc/common/tables/neutron-auth_token.xml:124(td) ./doc/common/tables/sahara-auth_token.xml:117(td) ./doc/common/tables/heat-auth_token.xml:124(td) ./doc/common/tables/nova-auth_token.xml:117(td) ./doc/common/tables/cinder-auth_token.xml:124(td) ./doc/common/tables/keystone-auth_token.xml:124(td) ./doc/common/tables/trove-auth_token.xml:124(td)
msgid "memcache_security_strategy = None"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:125(td) ./doc/common/tables/ceilometer-auth_token.xml:118(td) ./doc/common/tables/neutron-auth_token.xml:125(td) ./doc/common/tables/sahara-auth_token.xml:118(td) ./doc/common/tables/heat-auth_token.xml:125(td) ./doc/common/tables/nova-auth_token.xml:118(td) ./doc/common/tables/cinder-auth_token.xml:125(td) ./doc/common/tables/keystone-auth_token.xml:125(td) ./doc/common/tables/trove-auth_token.xml:125(td)
msgid "(StrOpt) (optional) if defined, indicate whether token data should be authenticated or authenticated and encrypted. Acceptable values are MAC or ENCRYPT. If MAC, token data is authenticated (with HMAC) in the cache. If ENCRYPT, token data is encrypted and authenticated in the cache. If the value is not one of these options or empty, auth_token will raise an exception on initialization."
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:129(td) ./doc/common/tables/ceilometer-auth_token.xml:122(td) ./doc/common/tables/neutron-auth_token.xml:129(td) ./doc/common/tables/sahara-auth_token.xml:122(td) ./doc/common/tables/heat-auth_token.xml:129(td) ./doc/common/tables/nova-auth_token.xml:122(td) ./doc/common/tables/cinder-auth_token.xml:129(td) ./doc/common/tables/keystone-auth_token.xml:129(td) ./doc/common/tables/trove-auth_token.xml:129(td)
msgid "(ListOpt) Optionally specify a list of memcached server(s) to use for caching. If left undefined, tokens will instead be cached in-process."
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:132(td) ./doc/common/tables/ceilometer-auth_token.xml:125(td) ./doc/common/tables/neutron-auth_token.xml:132(td) ./doc/common/tables/sahara-auth_token.xml:125(td) ./doc/common/tables/heat-auth_token.xml:132(td) ./doc/common/tables/nova-auth_token.xml:125(td) ./doc/common/tables/cinder-auth_token.xml:132(td) ./doc/common/tables/keystone-auth_token.xml:132(td) ./doc/common/tables/trove-auth_token.xml:132(td)
msgid "revocation_cache_time = 10"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:133(td) ./doc/common/tables/ceilometer-auth_token.xml:126(td) ./doc/common/tables/neutron-auth_token.xml:133(td) ./doc/common/tables/sahara-auth_token.xml:126(td) ./doc/common/tables/heat-auth_token.xml:133(td) ./doc/common/tables/nova-auth_token.xml:126(td) ./doc/common/tables/cinder-auth_token.xml:133(td) ./doc/common/tables/keystone-auth_token.xml:133(td) ./doc/common/tables/trove-auth_token.xml:133(td)
msgid "(IntOpt) Determines the frequency at which the list of revoked tokens is retrieved from the Identity service (in seconds). A high number of revocation events combined with a low cache duration may significantly reduce performance."
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:136(td) ./doc/common/tables/ceilometer-auth_token.xml:129(td) ./doc/common/tables/neutron-auth_token.xml:136(td) ./doc/common/tables/sahara-auth_token.xml:129(td) ./doc/common/tables/heat-auth_token.xml:136(td) ./doc/common/tables/nova-auth_token.xml:129(td) ./doc/common/tables/cinder-auth_token.xml:136(td) ./doc/common/tables/keystone-auth_token.xml:136(td) ./doc/common/tables/trove-auth_token.xml:136(td)
msgid "signing_dir = None"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:137(td) ./doc/common/tables/ceilometer-auth_token.xml:130(td) ./doc/common/tables/neutron-auth_token.xml:137(td) ./doc/common/tables/sahara-auth_token.xml:130(td) ./doc/common/tables/heat-auth_token.xml:137(td) ./doc/common/tables/nova-auth_token.xml:130(td) ./doc/common/tables/cinder-auth_token.xml:137(td) ./doc/common/tables/keystone-auth_token.xml:137(td) ./doc/common/tables/trove-auth_token.xml:137(td)
msgid "(StrOpt) Directory used to cache files related to PKI tokens"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:140(td) ./doc/common/tables/ceilometer-auth_token.xml:133(td) ./doc/common/tables/neutron-auth_token.xml:140(td) ./doc/common/tables/sahara-auth_token.xml:133(td) ./doc/common/tables/heat-auth_token.xml:140(td) ./doc/common/tables/nova-auth_token.xml:133(td) ./doc/common/tables/cinder-auth_token.xml:140(td) ./doc/common/tables/keystone-auth_token.xml:140(td) ./doc/common/tables/trove-auth_token.xml:140(td)
msgid "token_cache_time = 300"
msgstr ""
#: ./doc/common/tables/glance-auth_token.xml:141(td) ./doc/common/tables/ceilometer-auth_token.xml:134(td) ./doc/common/tables/neutron-auth_token.xml:141(td) ./doc/common/tables/sahara-auth_token.xml:134(td) ./doc/common/tables/heat-auth_token.xml:141(td) ./doc/common/tables/nova-auth_token.xml:134(td) ./doc/common/tables/cinder-auth_token.xml:141(td) ./doc/common/tables/keystone-auth_token.xml:141(td) ./doc/common/tables/trove-auth_token.xml:141(td)
msgid "(IntOpt) In order to prevent excessive effort spent validating tokens, the middleware caches previously-seen tokens for a configurable duration (in seconds). Set to -1 to disable caching completely."
msgstr ""
#: ./doc/common/tables/cinder-netapp_7mode_nfs.xml:7(caption)
msgid "Description of NetApp 7-Mode NFS driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-netapp_7mode_nfs.xml:21(td) ./doc/common/tables/cinder-netapp_cdot_nfs.xml:21(td)
msgid "expiry_thres_minutes = 720"
msgstr ""
#: ./doc/common/tables/cinder-netapp_7mode_nfs.xml:22(td) ./doc/common/tables/cinder-netapp_cdot_nfs.xml:22(td)
msgid "(IntOpt) This option specifies the threshold for last access time for images in the NFS image cache. When a cache cleaning cycle begins, images in the cache that have not been accessed in the last M minutes, where M is the value of this parameter, will be deleted from the cache to create free space on the NFS share."
msgstr ""
#: ./doc/common/tables/cinder-netapp_7mode_nfs.xml:25(td) ./doc/common/tables/cinder-netapp_eseries_iscsi.xml:25(td) ./doc/common/tables/cinder-netapp_cdot_iscsi.xml:21(td) ./doc/common/tables/cinder-netapp_7mode_iscsi.xml:21(td) ./doc/common/tables/cinder-netapp_cdot_nfs.xml:29(td)
msgid "netapp_login = None"
msgstr ""
#: ./doc/common/tables/cinder-netapp_7mode_nfs.xml:26(td) ./doc/common/tables/cinder-netapp_eseries_iscsi.xml:26(td) ./doc/common/tables/cinder-netapp_cdot_iscsi.xml:22(td) ./doc/common/tables/cinder-netapp_7mode_iscsi.xml:22(td) ./doc/common/tables/cinder-netapp_cdot_nfs.xml:30(td)
msgid "(StrOpt) Administrative user account name used to access the storage system or proxy server."
msgstr ""
#: ./doc/common/tables/cinder-netapp_7mode_nfs.xml:29(td) ./doc/common/tables/cinder-netapp_eseries_iscsi.xml:29(td) ./doc/common/tables/cinder-netapp_cdot_iscsi.xml:25(td) ./doc/common/tables/cinder-netapp_7mode_iscsi.xml:25(td) ./doc/common/tables/cinder-netapp_cdot_nfs.xml:33(td)
msgid "netapp_password = None"
msgstr ""
#: ./doc/common/tables/cinder-netapp_7mode_nfs.xml:30(td) ./doc/common/tables/cinder-netapp_eseries_iscsi.xml:30(td) ./doc/common/tables/cinder-netapp_cdot_iscsi.xml:26(td) ./doc/common/tables/cinder-netapp_7mode_iscsi.xml:26(td) ./doc/common/tables/cinder-netapp_cdot_nfs.xml:34(td)
msgid "(StrOpt) Password for the administrative user account specified in the netapp_login option."
msgstr ""
#: ./doc/common/tables/cinder-netapp_7mode_nfs.xml:33(td) ./doc/common/tables/cinder-netapp_eseries_iscsi.xml:37(td) ./doc/common/tables/cinder-netapp_cdot_iscsi.xml:29(td) ./doc/common/tables/cinder-netapp_7mode_iscsi.xml:29(td) ./doc/common/tables/cinder-netapp_cdot_nfs.xml:37(td)
msgid "netapp_server_hostname = None"
msgstr ""
#: ./doc/common/tables/cinder-netapp_7mode_nfs.xml:34(td) ./doc/common/tables/cinder-netapp_eseries_iscsi.xml:38(td) ./doc/common/tables/cinder-netapp_cdot_iscsi.xml:30(td) ./doc/common/tables/cinder-netapp_7mode_iscsi.xml:30(td) ./doc/common/tables/cinder-netapp_cdot_nfs.xml:38(td)
msgid "(StrOpt) The hostname (or IP address) for the storage system or proxy server."
msgstr ""
#: ./doc/common/tables/cinder-netapp_7mode_nfs.xml:37(td) ./doc/common/tables/cinder-netapp_eseries_iscsi.xml:41(td) ./doc/common/tables/cinder-netapp_cdot_iscsi.xml:33(td) ./doc/common/tables/cinder-netapp_7mode_iscsi.xml:33(td) ./doc/common/tables/cinder-netapp_cdot_nfs.xml:41(td)
msgid "netapp_server_port = 80"
msgstr ""
#: ./doc/common/tables/cinder-netapp_7mode_nfs.xml:38(td) ./doc/common/tables/cinder-netapp_eseries_iscsi.xml:42(td) ./doc/common/tables/cinder-netapp_cdot_iscsi.xml:34(td) ./doc/common/tables/cinder-netapp_7mode_iscsi.xml:34(td) ./doc/common/tables/cinder-netapp_cdot_nfs.xml:42(td)
msgid "(IntOpt) The TCP port to use for communication with the storage system or proxy server. Traditionally, port 80 is used for HTTP and port 443 is used for HTTPS; however, this value should be changed if an alternate port has been configured on the storage system or proxy server."
msgstr ""
#: ./doc/common/tables/cinder-netapp_7mode_nfs.xml:41(td) ./doc/common/tables/cinder-netapp_eseries_iscsi.xml:45(td) ./doc/common/tables/cinder-netapp_cdot_iscsi.xml:41(td) ./doc/common/tables/cinder-netapp_7mode_iscsi.xml:41(td) ./doc/common/tables/cinder-netapp_cdot_nfs.xml:45(td)
msgid "netapp_storage_family = ontap_cluster"
msgstr ""
#: ./doc/common/tables/cinder-netapp_7mode_nfs.xml:42(td) ./doc/common/tables/cinder-netapp_eseries_iscsi.xml:46(td) ./doc/common/tables/cinder-netapp_cdot_iscsi.xml:42(td) ./doc/common/tables/cinder-netapp_7mode_iscsi.xml:42(td) ./doc/common/tables/cinder-netapp_cdot_nfs.xml:46(td)
msgid "(StrOpt) The storage family type used on the storage system; valid values are ontap_7mode for using Data ONTAP operating in 7-Mode, ontap_cluster for using clustered Data ONTAP, or eseries for using E-Series."
msgstr ""
#: ./doc/common/tables/cinder-netapp_7mode_nfs.xml:45(td) ./doc/common/tables/cinder-netapp_cdot_iscsi.xml:45(td) ./doc/common/tables/cinder-netapp_7mode_iscsi.xml:45(td) ./doc/common/tables/cinder-netapp_cdot_nfs.xml:49(td)
msgid "netapp_storage_protocol = None"
msgstr ""
#: ./doc/common/tables/cinder-netapp_7mode_nfs.xml:46(td) ./doc/common/tables/cinder-netapp_cdot_iscsi.xml:46(td) ./doc/common/tables/cinder-netapp_7mode_iscsi.xml:46(td) ./doc/common/tables/cinder-netapp_cdot_nfs.xml:50(td)
msgid "(StrOpt) The storage protocol to be used on the data path with the storage system; valid values are iscsi or nfs."
msgstr ""
#: ./doc/common/tables/cinder-netapp_7mode_nfs.xml:49(td) ./doc/common/tables/cinder-netapp_eseries_iscsi.xml:53(td) ./doc/common/tables/cinder-netapp_cdot_iscsi.xml:49(td) ./doc/common/tables/cinder-netapp_7mode_iscsi.xml:49(td) ./doc/common/tables/cinder-netapp_cdot_nfs.xml:53(td)
msgid "netapp_transport_type = http"
msgstr ""
#: ./doc/common/tables/cinder-netapp_7mode_nfs.xml:50(td) ./doc/common/tables/cinder-netapp_eseries_iscsi.xml:54(td) ./doc/common/tables/cinder-netapp_cdot_iscsi.xml:50(td) ./doc/common/tables/cinder-netapp_7mode_iscsi.xml:50(td) ./doc/common/tables/cinder-netapp_cdot_nfs.xml:54(td)
msgid "(StrOpt) The transport protocol used when communicating with the storage system or proxy server. Valid values are http or https."
msgstr ""
#: ./doc/common/tables/cinder-netapp_7mode_nfs.xml:53(td) ./doc/common/tables/cinder-netapp_cdot_nfs.xml:61(td)
msgid "thres_avl_size_perc_start = 20"
msgstr ""
#: ./doc/common/tables/cinder-netapp_7mode_nfs.xml:54(td) ./doc/common/tables/cinder-netapp_cdot_nfs.xml:62(td)
msgid "(IntOpt) If the percentage of available space for an NFS share has dropped below the value specified by this option, the NFS image cache will be cleaned."
msgstr ""
#: ./doc/common/tables/cinder-netapp_7mode_nfs.xml:57(td) ./doc/common/tables/cinder-netapp_cdot_nfs.xml:65(td)
msgid "thres_avl_size_perc_stop = 60"
msgstr ""
#: ./doc/common/tables/cinder-netapp_7mode_nfs.xml:58(td) ./doc/common/tables/cinder-netapp_cdot_nfs.xml:66(td)
msgid "(IntOpt) When the percentage of available space on an NFS share has reached the percentage specified by this option, the driver will stop clearing files from the NFS image cache that have not been accessed in the last M minutes, where M is the value of the expiry_thres_minutes configuration option."
msgstr ""
#: ./doc/common/tables/cinder-nimble.xml:7(caption)
msgid "Description of Nimble driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-nimble.xml:21(td)
msgid "nimble_pool_name = default"
msgstr ""
#: ./doc/common/tables/cinder-nimble.xml:22(td) ./doc/common/tables/cinder-conf-changes.xml:201(td)
msgid "(StrOpt) Nimble Controller pool name"
msgstr ""
#: ./doc/common/tables/cinder-nimble.xml:25(td)
msgid "nimble_subnet_label = *"
msgstr ""
#: ./doc/common/tables/cinder-nimble.xml:26(td) ./doc/common/tables/cinder-conf-changes.xml:205(td)
msgid "(StrOpt) Nimble Subnet Label"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-sync.xml:8(literal)
msgid "[container-sync]"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-sync.xml:8(literal) ./doc/common/tables/swift-container-server-container-auditor.xml:8(literal) ./doc/common/tables/swift-container-server-filter-recon.xml:8(literal) ./doc/common/tables/swift-container-server-DEFAULT.xml:8(literal) ./doc/common/tables/swift-container-server-pipeline-main.xml:8(literal) ./doc/common/tables/swift-container-server-filter-healthcheck.xml:8(literal) ./doc/common/tables/swift-container-server-container-updater.xml:8(literal) ./doc/common/tables/swift-container-server-filter-xprofile.xml:8(literal) ./doc/common/tables/swift-container-server-app-container-server.xml:8(literal) ./doc/common/tables/swift-container-server-container-replicator.xml:8(literal)
msgid "container-server.conf"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-sync.xml:7(caption) ./doc/common/tables/swift-proxy-server-DEFAULT.xml:7(caption) ./doc/common/tables/swift-proxy-server-filter-cname_lookup.xml:7(caption) ./doc/common/tables/swift-container-reconciler-filter-catch_errors.xml:7(caption) ./doc/common/tables/swift-container-reconciler-app-proxy-server.xml:7(caption) ./doc/common/tables/swift-object-expirer-pipeline-main.xml:7(caption) ./doc/common/tables/swift-container-server-container-auditor.xml:7(caption) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:7(caption) ./doc/common/tables/swift-swift-swift-constraints.xml:7(caption) ./doc/common/tables/swift-object-expirer-filter-catch_errors.xml:7(caption) ./doc/common/tables/swift-proxy-server-filter-slo.xml:7(caption) ./doc/common/tables/swift-swift-storage-policy-0.xml:7(caption) ./doc/common/tables/swift-proxy-server-filter-cache.xml:7(caption) ./doc/common/tables/swift-container-server-filter-recon.xml:7(caption) ./doc/common/tables/swift-proxy-server-pipeline-main.xml:7(caption) ./doc/common/tables/swift-proxy-server-filter-account-quotas.xml:7(caption) ./doc/common/tables/swift-swift-storage-policy-1.xml:7(caption) ./doc/common/tables/swift-account-server-filter-healthcheck.xml:7(caption) ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:7(caption) ./doc/common/tables/swift-container-server-DEFAULT.xml:7(caption) ./doc/common/tables/swift-container-server-pipeline-main.xml:7(caption) ./doc/common/tables/swift-account-server-filter-xprofile.xml:7(caption) ./doc/common/tables/swift-proxy-server-filter-xprofile.xml:7(caption) ./doc/common/tables/swift-proxy-server-filter-container-quotas.xml:7(caption) ./doc/common/tables/swift-container-server-filter-healthcheck.xml:7(caption) ./doc/common/tables/swift-object-server-filter-xprofile.xml:7(caption) ./doc/common/tables/swift-object-expirer-object-expirer.xml:7(caption) ./doc/common/tables/swift-object-server-filter-healthcheck.xml:7(caption) ./doc/common/tables/swift-object-server-app-object-server.xml:7(caption) ./doc/common/tables/swift-proxy-server-filter-catch_errors.xml:7(caption) ./doc/common/tables/swift-container-reconciler-container-reconciler.xml:7(caption) ./doc/common/tables/swift-proxy-server-filter-keystoneauth.xml:7(caption) ./doc/common/tables/swift-object-server-DEFAULT.xml:7(caption) ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:7(caption) ./doc/common/tables/swift-proxy-server-filter-gatekeeper.xml:7(caption) ./doc/common/tables/swift-rsyncd-container.xml:7(caption) ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:7(caption) ./doc/common/tables/swift-container-reconciler-filter-proxy-logging.xml:7(caption) ./doc/common/tables/swift-proxy-server-filter-tempurl.xml:7(caption) ./doc/common/tables/swift-rsyncd-account.xml:7(caption) ./doc/common/tables/swift-proxy-server-filter-name_check.xml:7(caption) ./doc/common/tables/swift-account-server-filter-recon.xml:7(caption) ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:7(caption) ./doc/common/tables/swift-account-server-account-replicator.xml:7(caption) ./doc/common/tables/swift-container-sync-realms-DEFAULT.xml:7(caption) ./doc/common/tables/swift-container-server-container-updater.xml:7(caption) ./doc/common/tables/swift-object-server-object-replicator.xml:7(caption) ./doc/common/tables/swift-swift-swift-hash.xml:7(caption) ./doc/common/tables/swift-proxy-server-filter-dlo.xml:7(caption) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:7(caption) ./doc/common/tables/swift-proxy-server-filter-authtoken.xml:7(caption) ./doc/common/tables/swift-object-server-pipeline-main.xml:7(caption) ./doc/common/tables/swift-memcache-memcache.xml:7(caption) ./doc/common/tables/swift-account-server-app-account-server.xml:7(caption) ./doc/common/tables/swift-proxy-server-filter-formpost.xml:7(caption) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:7(caption) ./doc/common/tables/swift-container-server-filter-xprofile.xml:7(caption) ./doc/common/tables/swift-object-expirer-filter-cache.xml:7(caption) ./doc/common/tables/swift-container-sync-realms-realm2.xml:7(caption) ./doc/common/tables/swift-object-server-object-auditor.xml:7(caption) ./doc/common/tables/swift-container-reconciler-filter-cache.xml:7(caption) ./doc/common/tables/swift-container-server-app-container-server.xml:7(caption) ./doc/common/tables/swift-account-server-pipeline-main.xml:7(caption) ./doc/common/tables/swift-proxy-server-filter-staticweb.xml:7(caption) ./doc/common/tables/swift-container-server-container-replicator.xml:7(caption) ./doc/common/tables/swift-proxy-server-filter-bulk.xml:7(caption) ./doc/common/tables/swift-object-expirer-app-proxy-server.xml:7(caption) ./doc/common/tables/swift-account-server-account-auditor.xml:7(caption) ./doc/common/tables/swift-object-server-filter-recon.xml:7(caption) ./doc/common/tables/swift-rsyncd-object.xml:7(caption) ./doc/common/tables/swift-drive-audit-drive-audit.xml:7(caption) ./doc/common/tables/swift-container-reconciler-pipeline-main.xml:7(caption) ./doc/common/tables/swift-object-server-object-updater.xml:7(caption) ./doc/common/tables/swift-dispersion-dispersion.xml:7(caption) ./doc/common/tables/swift-account-server-DEFAULT.xml:7(caption) ./doc/common/tables/swift-proxy-server-filter-domain_remap.xml:7(caption) ./doc/common/tables/swift-proxy-server-filter-list-endpoints.xml:7(caption) ./doc/common/tables/swift-account-server-account-reaper.xml:7(caption) ./doc/common/tables/swift-proxy-server-filter-container_sync.xml:7(caption) ./doc/common/tables/swift-container-sync-realms-realm1.xml:7(caption) ./doc/common/tables/swift-proxy-server-filter-healthcheck.xml:7(caption)
msgid "Description of configuration options for <placeholder-1/> in <placeholder-2/>"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-sync.xml:20(td)
msgid "container_time = 60"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-sync.xml:21(td)
msgid "Maximum amount of time to spend syncing each container"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-sync.xml:24(td) ./doc/common/tables/swift-object-expirer-object-expirer.xml:32(td) ./doc/common/tables/swift-container-server-container-updater.xml:33(td) ./doc/common/tables/swift-object-server-object-updater.xml:24(td)
msgid "interval = 300"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-sync.xml:25(td) ./doc/common/tables/swift-container-server-container-auditor.xml:25(td) ./doc/common/tables/swift-object-expirer-object-expirer.xml:33(td) ./doc/common/tables/swift-container-reconciler-container-reconciler.xml:21(td) ./doc/common/tables/swift-account-server-account-replicator.xml:37(td) ./doc/common/tables/swift-container-server-container-updater.xml:34(td) ./doc/common/tables/swift-container-server-container-replicator.xml:29(td) ./doc/common/tables/swift-account-server-account-auditor.xml:25(td) ./doc/common/tables/swift-object-server-object-updater.xml:25(td) ./doc/common/tables/swift-account-server-account-reaper.xml:33(td)
msgid "Minimum time for a pass to take"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-sync.xml:28(td) ./doc/common/tables/swift-proxy-server-DEFAULT.xml:76(td) ./doc/common/tables/swift-container-server-container-auditor.xml:28(td) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:20(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:60(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:72(td) ./doc/common/tables/swift-account-server-account-replicator.xml:40(td) ./doc/common/tables/swift-container-server-container-updater.xml:37(td) ./doc/common/tables/swift-object-server-object-replicator.xml:44(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:20(td) ./doc/common/tables/swift-object-server-object-auditor.xml:36(td) ./doc/common/tables/swift-container-server-container-replicator.xml:32(td) ./doc/common/tables/swift-account-server-account-auditor.xml:28(td) ./doc/common/tables/swift-drive-audit-drive-audit.xml:28(td) ./doc/common/tables/swift-object-server-object-updater.xml:28(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:56(td) ./doc/common/tables/swift-account-server-account-reaper.xml:36(td)
msgid "log_address = /dev/log"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-sync.xml:29(td) ./doc/common/tables/swift-proxy-server-DEFAULT.xml:77(td) ./doc/common/tables/swift-proxy-server-filter-cname_lookup.xml:25(td) ./doc/common/tables/swift-container-server-container-auditor.xml:29(td) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:21(td) ./doc/common/tables/swift-proxy-server-filter-cache.xml:33(td) ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:109(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:61(td) ./doc/common/tables/swift-object-server-app-object-server.xml:69(td) ./doc/common/tables/swift-proxy-server-filter-catch_errors.xml:21(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:73(td) ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:33(td) ./doc/common/tables/swift-proxy-server-filter-gatekeeper.xml:21(td) ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:73(td) ./doc/common/tables/swift-account-server-account-replicator.xml:41(td) ./doc/common/tables/swift-container-server-container-updater.xml:38(td) ./doc/common/tables/swift-object-server-object-replicator.xml:45(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:21(td) ./doc/common/tables/swift-account-server-app-account-server.xml:29(td) ./doc/common/tables/swift-object-server-object-auditor.xml:37(td) ./doc/common/tables/swift-container-server-app-container-server.xml:41(td) ./doc/common/tables/swift-container-server-container-replicator.xml:33(td) ./doc/common/tables/swift-account-server-account-auditor.xml:29(td) ./doc/common/tables/swift-drive-audit-drive-audit.xml:29(td) ./doc/common/tables/swift-object-server-object-updater.xml:29(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:57(td) ./doc/common/tables/swift-proxy-server-filter-domain_remap.xml:29(td) ./doc/common/tables/swift-account-server-account-reaper.xml:37(td)
msgid "Location where syslog sends the logs to"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-sync.xml:32(td) ./doc/common/tables/swift-proxy-server-DEFAULT.xml:84(td) ./doc/common/tables/swift-container-server-container-auditor.xml:32(td) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:28(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:68(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:80(td) ./doc/common/tables/swift-account-server-account-replicator.xml:44(td) ./doc/common/tables/swift-container-server-container-updater.xml:41(td) ./doc/common/tables/swift-object-server-object-replicator.xml:48(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:28(td) ./doc/common/tables/swift-object-server-object-auditor.xml:40(td) ./doc/common/tables/swift-container-server-container-replicator.xml:36(td) ./doc/common/tables/swift-account-server-account-auditor.xml:32(td) ./doc/common/tables/swift-drive-audit-drive-audit.xml:32(td) ./doc/common/tables/swift-object-server-object-updater.xml:32(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:64(td) ./doc/common/tables/swift-account-server-account-reaper.xml:40(td)
msgid "log_facility = LOG_LOCAL0"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-sync.xml:33(td) ./doc/common/tables/swift-proxy-server-DEFAULT.xml:85(td) ./doc/common/tables/swift-proxy-server-filter-cname_lookup.xml:29(td) ./doc/common/tables/swift-container-server-container-auditor.xml:33(td) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:29(td) ./doc/common/tables/swift-proxy-server-filter-cache.xml:37(td) ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:113(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:69(td) ./doc/common/tables/swift-object-server-app-object-server.xml:73(td) ./doc/common/tables/swift-proxy-server-filter-catch_errors.xml:25(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:81(td) ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:37(td) ./doc/common/tables/swift-proxy-server-filter-gatekeeper.xml:25(td) ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:77(td) ./doc/common/tables/swift-account-server-account-replicator.xml:45(td) ./doc/common/tables/swift-container-server-container-updater.xml:42(td) ./doc/common/tables/swift-object-server-object-replicator.xml:49(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:29(td) ./doc/common/tables/swift-account-server-app-account-server.xml:33(td) ./doc/common/tables/swift-object-server-object-auditor.xml:41(td) ./doc/common/tables/swift-container-server-app-container-server.xml:45(td) ./doc/common/tables/swift-container-server-container-replicator.xml:37(td) ./doc/common/tables/swift-account-server-account-auditor.xml:33(td) ./doc/common/tables/swift-drive-audit-drive-audit.xml:33(td) ./doc/common/tables/swift-object-server-object-updater.xml:33(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:65(td) ./doc/common/tables/swift-proxy-server-filter-domain_remap.xml:33(td) ./doc/common/tables/swift-account-server-account-reaper.xml:41(td)
msgid "Syslog log facility"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-sync.xml:36(td) ./doc/common/tables/swift-proxy-server-DEFAULT.xml:92(td) ./doc/common/tables/swift-container-server-container-auditor.xml:36(td) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:32(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:72(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:84(td) ./doc/common/tables/swift-account-server-account-replicator.xml:48(td) ./doc/common/tables/swift-container-server-container-updater.xml:45(td) ./doc/common/tables/swift-object-server-object-replicator.xml:52(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:32(td) ./doc/common/tables/swift-object-server-object-auditor.xml:44(td) ./doc/common/tables/swift-container-server-container-replicator.xml:40(td) ./doc/common/tables/swift-account-server-account-auditor.xml:36(td) ./doc/common/tables/swift-drive-audit-drive-audit.xml:40(td) ./doc/common/tables/swift-object-server-object-updater.xml:36(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:68(td) ./doc/common/tables/swift-account-server-account-reaper.xml:44(td)
msgid "log_level = INFO"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-sync.xml:37(td) ./doc/common/tables/swift-proxy-server-DEFAULT.xml:93(td) ./doc/common/tables/swift-container-server-container-auditor.xml:37(td) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:33(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:73(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:85(td) ./doc/common/tables/swift-account-server-account-replicator.xml:49(td) ./doc/common/tables/swift-container-server-container-updater.xml:46(td) ./doc/common/tables/swift-object-server-object-replicator.xml:53(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:33(td) ./doc/common/tables/swift-object-server-object-auditor.xml:45(td) ./doc/common/tables/swift-container-server-container-replicator.xml:41(td) ./doc/common/tables/swift-account-server-account-auditor.xml:37(td) ./doc/common/tables/swift-drive-audit-drive-audit.xml:41(td) ./doc/common/tables/swift-object-server-object-updater.xml:37(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:69(td) ./doc/common/tables/swift-account-server-account-reaper.xml:45(td)
msgid "Logging level"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-sync.xml:40(td)
msgid "log_name = container-sync"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-sync.xml:41(td) ./doc/common/tables/swift-proxy-server-DEFAULT.xml:101(td) ./doc/common/tables/swift-container-server-container-auditor.xml:41(td) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:37(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:81(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:93(td) ./doc/common/tables/swift-account-server-account-replicator.xml:53(td) ./doc/common/tables/swift-container-server-container-updater.xml:50(td) ./doc/common/tables/swift-object-server-object-replicator.xml:57(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:41(td) ./doc/common/tables/swift-object-server-object-auditor.xml:49(td) ./doc/common/tables/swift-container-server-container-replicator.xml:45(td) ./doc/common/tables/swift-account-server-account-auditor.xml:41(td) ./doc/common/tables/swift-object-server-object-updater.xml:41(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:77(td) ./doc/common/tables/swift-account-server-account-reaper.xml:49(td)
msgid "Label used when logging"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-sync.xml:44(td)
msgid "sync_proxy = http://10.1.1.1:8888,http://10.1.1.2:8888"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-sync.xml:45(td)
msgid "If you need to use an HTTP proxy, set it here. Defaults to no proxy."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:8(literal) ./doc/common/tables/swift-proxy-server-filter-cname_lookup.xml:8(literal) ./doc/common/tables/swift-proxy-server-filter-slo.xml:8(literal) ./doc/common/tables/swift-proxy-server-filter-cache.xml:8(literal) ./doc/common/tables/swift-proxy-server-pipeline-main.xml:8(literal) ./doc/common/tables/swift-proxy-server-filter-account-quotas.xml:8(literal) ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:8(literal) ./doc/common/tables/swift-proxy-server-filter-xprofile.xml:8(literal) ./doc/common/tables/swift-proxy-server-filter-container-quotas.xml:8(literal) ./doc/common/tables/swift-proxy-server-filter-catch_errors.xml:8(literal) ./doc/common/tables/swift-proxy-server-filter-keystoneauth.xml:8(literal) ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:8(literal) ./doc/common/tables/swift-proxy-server-filter-gatekeeper.xml:8(literal) ./doc/common/tables/swift-proxy-server-filter-tempurl.xml:8(literal) ./doc/common/tables/swift-proxy-server-filter-name_check.xml:8(literal) ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:8(literal) ./doc/common/tables/swift-proxy-server-filter-dlo.xml:8(literal) ./doc/common/tables/swift-proxy-server-filter-authtoken.xml:8(literal) ./doc/common/tables/swift-proxy-server-filter-formpost.xml:8(literal) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:8(literal) ./doc/common/tables/swift-proxy-server-filter-staticweb.xml:8(literal) ./doc/common/tables/swift-proxy-server-filter-bulk.xml:8(literal) ./doc/common/tables/swift-proxy-server-filter-domain_remap.xml:8(literal) ./doc/common/tables/swift-proxy-server-filter-list-endpoints.xml:8(literal) ./doc/common/tables/swift-proxy-server-filter-container_sync.xml:8(literal) ./doc/common/tables/swift-proxy-server-filter-healthcheck.xml:8(literal)
msgid "proxy-server.conf"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:20(td)
msgid "admin_key = secret_admin_key"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:21(td)
msgid "to use for admin calls that are HMAC signed. Default is empty, which will disable admin calls to /info. the proxy server. For most cases, this should be `egg:swift#proxy`. request whenever it has to failover to a handoff node"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:24(td) ./doc/common/tables/heat-cfn_api.xml:32(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:24(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:20(td) ./doc/common/tables/heat-api.xml:114(td) ./doc/common/tables/heat-cloudwatch_api.xml:28(td) ./doc/common/tables/neutron-wsgi.xml:21(td) ./doc/common/tables/glance-common.xml:29(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:20(td) ./doc/common/tables/trove-debug.xml:25(td)
msgid "backlog = 4096"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:25(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:25(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:21(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:21(td)
msgid "Maximum number of allowed pending TCP connections"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:28(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:28(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:24(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:24(td)
msgid "bind_ip = 0.0.0.0"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:29(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:29(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:25(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:25(td)
msgid "IP Address for server to bind to"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:32(td)
msgid "bind_port = 80"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:33(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:33(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:29(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:29(td)
msgid "Port for server to bind to"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:36(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:36(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:32(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:32(td)
msgid "bind_timeout = 30"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:37(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:37(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:33(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:33(td)
msgid "Seconds to attempt bind before giving up"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:40(td)
msgid "cert_file = /etc/swift/proxy.crt"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:41(td)
msgid "to the ssl .crt. This should be enabled for testing purposes only."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:44(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:36(td)
msgid "client_timeout = 60"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:45(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:37(td)
msgid "Timeout to read one chunk from a client external services"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:48(td)
msgid "cors_allow_origin ="
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:49(td)
msgid "is a list of hosts that are included with any CORS request by default and returned with the Access-Control-Allow-Origin header in addition to what the container has set. to call to setup custom log handlers. for eventlet the proxy server. For most cases, this should be `egg:swift#proxy`. request whenever it has to failover to a handoff node"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:52(td)
msgid "disallowed_sections = container_quotas, tempurl, bulk_delete.max_failed_deletes"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:53(td) ./doc/common/tables/swift-proxy-server-DEFAULT.xml:61(td) ./doc/common/tables/swift-proxy-server-DEFAULT.xml:65(td) ./doc/common/tables/swift-proxy-server-DEFAULT.xml:89(td) ./doc/common/tables/swift-proxy-server-DEFAULT.xml:147(td) ./doc/common/tables/swift-proxy-server-DEFAULT.xml:155(td) ./doc/common/tables/swift-object-expirer-pipeline-main.xml:21(td) ./doc/common/tables/neutron-rootwrap.xml:49(td) ./doc/common/tables/neutron-rootwrap.xml:53(td) ./doc/common/tables/swift-swift-swift-constraints.xml:21(td) ./doc/common/tables/swift-swift-swift-constraints.xml:25(td) ./doc/common/tables/swift-swift-swift-constraints.xml:29(td) ./doc/common/tables/swift-swift-swift-constraints.xml:33(td) ./doc/common/tables/swift-swift-swift-constraints.xml:37(td) ./doc/common/tables/swift-swift-swift-constraints.xml:45(td) ./doc/common/tables/swift-swift-swift-constraints.xml:49(td) ./doc/common/tables/swift-swift-swift-constraints.xml:53(td) ./doc/common/tables/swift-swift-swift-constraints.xml:57(td) ./doc/common/tables/swift-swift-swift-constraints.xml:61(td) ./doc/common/tables/swift-proxy-server-filter-slo.xml:21(td) ./doc/common/tables/swift-proxy-server-filter-slo.xml:25(td) ./doc/common/tables/swift-proxy-server-filter-slo.xml:29(td) ./doc/common/tables/swift-proxy-server-filter-slo.xml:33(td) ./doc/common/tables/swift-swift-storage-policy-0.xml:25(td) ./doc/common/tables/swift-proxy-server-filter-cache.xml:25(td) ./doc/common/tables/swift-proxy-server-pipeline-main.xml:21(td) ./doc/common/tables/swift-swift-storage-policy-1.xml:21(td) ./doc/common/tables/swift-account-server-filter-healthcheck.xml:21(td) ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:41(td) ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:53(td) ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:65(td) ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:81(td) ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:85(td) ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:89(td) ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:125(td) ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:133(td) ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:141(td) ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:145(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:21(td) ./doc/common/tables/swift-container-server-pipeline-main.xml:21(td) ./doc/common/tables/swift-account-server-filter-xprofile.xml:21(td) ./doc/common/tables/swift-account-server-filter-xprofile.xml:25(td) ./doc/common/tables/swift-account-server-filter-xprofile.xml:29(td) ./doc/common/tables/swift-account-server-filter-xprofile.xml:33(td) ./doc/common/tables/swift-account-server-filter-xprofile.xml:37(td) ./doc/common/tables/swift-account-server-filter-xprofile.xml:41(td) ./doc/common/tables/swift-account-server-filter-xprofile.xml:45(td) ./doc/common/tables/swift-proxy-server-filter-xprofile.xml:21(td) ./doc/common/tables/swift-proxy-server-filter-xprofile.xml:25(td) ./doc/common/tables/swift-proxy-server-filter-xprofile.xml:29(td) ./doc/common/tables/swift-proxy-server-filter-xprofile.xml:33(td) ./doc/common/tables/swift-proxy-server-filter-xprofile.xml:37(td) ./doc/common/tables/swift-proxy-server-filter-xprofile.xml:41(td) ./doc/common/tables/swift-proxy-server-filter-xprofile.xml:45(td) ./doc/common/tables/swift-container-server-filter-healthcheck.xml:21(td) ./doc/common/tables/swift-object-server-filter-xprofile.xml:21(td) ./doc/common/tables/swift-object-server-filter-xprofile.xml:25(td) ./doc/common/tables/swift-object-server-filter-xprofile.xml:29(td) ./doc/common/tables/swift-object-server-filter-xprofile.xml:33(td) ./doc/common/tables/swift-object-server-filter-xprofile.xml:37(td) ./doc/common/tables/swift-object-server-filter-xprofile.xml:41(td) ./doc/common/tables/swift-object-server-filter-xprofile.xml:45(td) ./doc/common/tables/swift-object-expirer-object-expirer.xml:29(td) ./doc/common/tables/swift-object-expirer-object-expirer.xml:43(td) ./doc/common/tables/swift-object-expirer-object-expirer.xml:55(td) ./doc/common/tables/swift-object-server-filter-healthcheck.xml:21(td) ./doc/common/tables/swift-container-reconciler-container-reconciler.xml:29(td) ./doc/common/tables/swift-proxy-server-filter-keystoneauth.xml:21(td) ./doc/common/tables/swift-proxy-server-filter-keystoneauth.xml:25(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:61(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:65(td) ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:21(td) ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:65(td) ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:69(td) ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:73(td) ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:77(td) ./doc/common/tables/swift-rsyncd-container.xml:21(td) ./doc/common/tables/swift-rsyncd-container.xml:25(td) ./doc/common/tables/swift-rsyncd-container.xml:29(td) ./doc/common/tables/swift-rsyncd-container.xml:33(td) ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:21(td) ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:25(td) ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:29(td) ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:39(td) ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:43(td) ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:47(td) ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:51(td) ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:55(td) ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:59(td) ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:63(td) ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:67(td) ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:71(td) ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:75(td) ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:79(td) ./doc/common/tables/swift-rsyncd-account.xml:21(td) ./doc/common/tables/swift-rsyncd-account.xml:25(td) ./doc/common/tables/swift-rsyncd-account.xml:29(td) ./doc/common/tables/swift-rsyncd-account.xml:33(td) ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:37(td) ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:41(td) ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:45(td) ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:49(td) ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:53(td) ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:57(td) ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:97(td) ./doc/common/tables/swift-container-sync-realms-DEFAULT.xml:21(td) ./doc/common/tables/swift-object-server-object-replicator.xml:77(td) ./doc/common/tables/swift-object-server-object-replicator.xml:81(td) ./doc/common/tables/swift-object-server-object-replicator.xml:101(td) ./doc/common/tables/swift-proxy-server-filter-dlo.xml:21(td) ./doc/common/tables/swift-proxy-server-filter-authtoken.xml:21(td) ./doc/common/tables/swift-proxy-server-filter-authtoken.xml:25(td) ./doc/common/tables/swift-proxy-server-filter-authtoken.xml:29(td) ./doc/common/tables/swift-proxy-server-filter-authtoken.xml:33(td) ./doc/common/tables/swift-proxy-server-filter-authtoken.xml:37(td) ./doc/common/tables/swift-proxy-server-filter-authtoken.xml:41(td) ./doc/common/tables/swift-proxy-server-filter-authtoken.xml:45(td) ./doc/common/tables/swift-proxy-server-filter-authtoken.xml:49(td) ./doc/common/tables/swift-proxy-server-filter-authtoken.xml:53(td) ./doc/common/tables/swift-proxy-server-filter-authtoken.xml:57(td) ./doc/common/tables/swift-object-server-pipeline-main.xml:21(td) ./doc/common/tables/swift-memcache-memcache.xml:25(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:21(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:25(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:29(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:39(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:43(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:47(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:51(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:55(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:59(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:63(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:67(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:71(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:75(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:79(td) ./doc/common/tables/swift-container-server-filter-xprofile.xml:21(td) ./doc/common/tables/swift-container-server-filter-xprofile.xml:25(td) ./doc/common/tables/swift-container-server-filter-xprofile.xml:29(td) ./doc/common/tables/swift-container-server-filter-xprofile.xml:33(td) ./doc/common/tables/swift-container-server-filter-xprofile.xml:37(td) ./doc/common/tables/swift-container-server-filter-xprofile.xml:41(td) ./doc/common/tables/swift-container-server-filter-xprofile.xml:45(td) ./doc/common/tables/swift-container-sync-realms-realm2.xml:21(td) ./doc/common/tables/swift-container-sync-realms-realm2.xml:25(td) ./doc/common/tables/swift-container-sync-realms-realm2.xml:29(td) ./doc/common/tables/swift-container-sync-realms-realm2.xml:33(td) ./doc/common/tables/swift-object-server-object-auditor.xml:57(td) ./doc/common/tables/swift-account-server-pipeline-main.xml:21(td) ./doc/common/tables/swift-proxy-server-filter-bulk.xml:21(td) ./doc/common/tables/swift-proxy-server-filter-bulk.xml:25(td) ./doc/common/tables/swift-proxy-server-filter-bulk.xml:29(td) ./doc/common/tables/swift-proxy-server-filter-bulk.xml:33(td) ./doc/common/tables/swift-proxy-server-filter-bulk.xml:37(td) ./doc/common/tables/swift-proxy-server-filter-bulk.xml:45(td) ./doc/common/tables/swift-object-server-filter-recon.xml:25(td) ./doc/common/tables/swift-rsyncd-object.xml:21(td) ./doc/common/tables/swift-rsyncd-object.xml:25(td) ./doc/common/tables/swift-rsyncd-object.xml:29(td) ./doc/common/tables/swift-rsyncd-object.xml:33(td) ./doc/common/tables/swift-drive-audit-drive-audit.xml:53(td) ./doc/common/tables/swift-container-reconciler-pipeline-main.xml:21(td) ./doc/common/tables/swift-dispersion-dispersion.xml:21(td) ./doc/common/tables/swift-dispersion-dispersion.xml:41(td) ./doc/common/tables/swift-dispersion-dispersion.xml:45(td) ./doc/common/tables/swift-dispersion-dispersion.xml:49(td) ./doc/common/tables/swift-dispersion-dispersion.xml:53(td) ./doc/common/tables/swift-dispersion-dispersion.xml:65(td) ./doc/common/tables/swift-dispersion-dispersion.xml:69(td) ./doc/common/tables/swift-dispersion-dispersion.xml:73(td) ./doc/common/tables/swift-proxy-server-filter-list-endpoints.xml:21(td) ./doc/common/tables/swift-account-server-account-reaper.xml:57(td) ./doc/common/tables/swift-proxy-server-filter-container_sync.xml:21(td) ./doc/common/tables/swift-proxy-server-filter-container_sync.xml:25(td) ./doc/common/tables/swift-container-sync-realms-realm1.xml:21(td) ./doc/common/tables/swift-container-sync-realms-realm1.xml:25(td) ./doc/common/tables/swift-container-sync-realms-realm1.xml:29(td) ./doc/common/tables/swift-container-sync-realms-realm1.xml:33(td) ./doc/common/tables/swift-proxy-server-filter-healthcheck.xml:21(td)
msgid "No help text available for this option."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:56(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:52(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:56(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:48(td)
msgid "eventlet_debug = false"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:57(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:53(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:57(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:49(td)
msgid "If true, turn on debug logging for eventlet"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:60(td) ./doc/common/tables/swift-object-expirer-object-expirer.xml:28(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:60(td)
msgid "expiring_objects_account_name = expiring_objects"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:64(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:64(td)
msgid "expiring_objects_container_divisor = 86400"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:68(td)
msgid "expose_info = true"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:69(td)
msgid "Enables exposing configuration settings via HTTP GET /info."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:72(td)
msgid "key_file = /etc/swift/proxy.key"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:73(td)
msgid "to the ssl .key. This should be enabled for testing purposes only."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:80(td) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:24(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:64(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:76(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:24(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:60(td)
msgid "log_custom_handlers ="
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:81(td) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:25(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:65(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:77(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:25(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:61(td)
msgid "Comma-separated list of functions to call to setup custom log handlers."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:88(td)
msgid "log_headers = false"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:96(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:76(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:88(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:36(td) ./doc/common/tables/swift-drive-audit-drive-audit.xml:44(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:72(td)
msgid "log_max_line_length = 0"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:97(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:77(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:89(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:37(td) ./doc/common/tables/swift-drive-audit-drive-audit.xml:45(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:73(td)
msgid "Caps the length of log lines to the value given; no limit if set to 0, the default."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:100(td) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:36(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:80(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:92(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:40(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:76(td)
msgid "log_name = swift"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:104(td) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:40(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:84(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:96(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:44(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:80(td)
msgid "log_statsd_default_sample_rate = 1.0"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:105(td) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:41(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:85(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:97(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:45(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:81(td)
msgid "Defines the probability of sending a sample for any given event or timing measurement."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:109(td) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:45(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:89(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:101(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:49(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:85(td)
msgid "log_statsd_host = localhost"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:110(td) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:46(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:90(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:102(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:50(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:86(td)
msgid "If not set, the StatsD feature is disabled."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:113(td) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:49(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:93(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:105(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:53(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:89(td)
msgid "log_statsd_metric_prefix ="
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:114(td) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:50(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:94(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:106(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:54(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:90(td)
msgid "Value will be prepended to every metric sent to the StatsD server."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:117(td) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:53(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:97(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:109(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:57(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:93(td)
msgid "log_statsd_port = 8125"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:118(td) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:54(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:98(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:110(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:58(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:94(td)
msgid "Port value for the StatsD server."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:121(td) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:57(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:101(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:113(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:61(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:97(td)
msgid "log_statsd_sample_rate_factor = 1.0"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:122(td) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:58(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:102(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:114(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:62(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:98(td)
msgid "Not recommended to set this to a value less than 1.0, if frequency of logging is too high, tune the log_statsd_default_sample_rate instead."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:127(td) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:63(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:107(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:119(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:67(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:103(td)
msgid "log_udp_host ="
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:128(td) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:64(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:108(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:120(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:68(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:104(td)
msgid "If not set, the UDP receiver for syslog is disabled."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:131(td) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:67(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:111(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:123(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:71(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:107(td)
msgid "log_udp_port = 514"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:132(td) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:68(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:112(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:124(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:72(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:108(td)
msgid "Port value for UDP receiver, if enabled."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:135(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:115(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:127(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:111(td)
msgid "max_clients = 1024"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:136(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:116(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:128(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:112(td)
msgid "Maximum number of clients one worker can process simultaneously Lowering the number of clients handled per worker, and raising the number of workers can lessen the impact that a CPU intensive, or blocking, request can have on other requests served by the same worker. If the maximum number of clients is set to one, then a given worker will not perform another call while processing, allowing other workers a chance to process it."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:146(td)
msgid "strict_cors_mode = True"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:150(td) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:71(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:130(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:150(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:75(td) ./doc/common/tables/swift-dispersion-dispersion.xml:76(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:126(td)
msgid "swift_dir = /etc/swift"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:151(td) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:72(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:131(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:151(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:76(td) ./doc/common/tables/swift-dispersion-dispersion.xml:77(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:127(td)
msgid "Swift configuration directory"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:154(td)
msgid "trans_id_suffix ="
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:158(td) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:75(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:134(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:154(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:79(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:130(td)
msgid "user = swift"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:159(td) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:76(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:135(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:155(td) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:80(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:131(td)
msgid "User to run as"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:162(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:138(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:158(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:134(td)
msgid "workers = auto"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-DEFAULT.xml:163(td) ./doc/common/tables/swift-container-server-DEFAULT.xml:139(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:159(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:135(td)
msgid "a much higher value, one can reduce the impact of slow file system operations in one request from negatively impacting other requests."
msgstr ""
#: ./doc/common/tables/cinder-zoning_fabric.xml:7(caption)
msgid "Description of zoning fabrics configuration options"
msgstr ""
#: ./doc/common/tables/cinder-zoning_fabric.xml:18(th)
msgid "[BRCD_FABRIC_EXAMPLE]"
msgstr ""
#: ./doc/common/tables/cinder-zoning_fabric.xml:21(td)
msgid "fc_fabric_address ="
msgstr ""
#: ./doc/common/tables/cinder-zoning_fabric.xml:22(td) ./doc/common/tables/cinder-zoning_fabric.xml:57(td) ./doc/common/tables/cinder-conf-changes.xml:385(td)
msgid "(StrOpt) Management IP of fabric"
msgstr ""
#: ./doc/common/tables/cinder-zoning_fabric.xml:25(td)
msgid "fc_fabric_password ="
msgstr ""
#: ./doc/common/tables/cinder-zoning_fabric.xml:26(td) ./doc/common/tables/cinder-zoning_fabric.xml:61(td) ./doc/common/tables/cinder-conf-changes.xml:389(td)
msgid "(StrOpt) Password for user"
msgstr ""
#: ./doc/common/tables/cinder-zoning_fabric.xml:29(td)
msgid "fc_fabric_port = 22"
msgstr ""
#: ./doc/common/tables/cinder-zoning_fabric.xml:30(td) ./doc/common/tables/cinder-zoning_fabric.xml:65(td) ./doc/common/tables/cinder-conf-changes.xml:393(td)
msgid "(IntOpt) Connecting port"
msgstr ""
#: ./doc/common/tables/cinder-zoning_fabric.xml:33(td)
msgid "fc_fabric_user ="
msgstr ""
#: ./doc/common/tables/cinder-zoning_fabric.xml:34(td) ./doc/common/tables/cinder-zoning_fabric.xml:69(td) ./doc/common/tables/cinder-conf-changes.xml:397(td)
msgid "(StrOpt) Fabric user ID"
msgstr ""
#: ./doc/common/tables/cinder-zoning_fabric.xml:37(td)
msgid "principal_switch_wwn = None"
msgstr ""
#: ./doc/common/tables/cinder-zoning_fabric.xml:38(td)
msgid "(StrOpt) Principal switch WWN of the fabric"
msgstr ""
#: ./doc/common/tables/cinder-zoning_fabric.xml:41(td)
msgid "zone_activate = True"
msgstr ""
#: ./doc/common/tables/cinder-zoning_fabric.xml:42(td) ./doc/common/tables/cinder-zoning_fabric.xml:73(td) ./doc/common/tables/cinder-conf-changes.xml:401(td)
msgid "(BoolOpt) overridden zoning activation state"
msgstr ""
#: ./doc/common/tables/cinder-zoning_fabric.xml:45(td)
msgid "zone_name_prefix = None"
msgstr ""
#: ./doc/common/tables/cinder-zoning_fabric.xml:46(td) ./doc/common/tables/cinder-zoning_fabric.xml:77(td) ./doc/common/tables/cinder-conf-changes.xml:405(td)
msgid "(StrOpt) overridden zone name prefix"
msgstr ""
#: ./doc/common/tables/cinder-zoning_fabric.xml:49(td) ./doc/common/tables/cinder-zoning.xml:32(td)
msgid "zoning_policy = initiator-target"
msgstr ""
#: ./doc/common/tables/cinder-zoning_fabric.xml:50(td) ./doc/common/tables/cinder-zoning_fabric.xml:81(td) ./doc/common/tables/cinder-conf-changes.xml:409(td)
msgid "(StrOpt) overridden zoning policy"
msgstr ""
#: ./doc/common/tables/cinder-zoning_fabric.xml:53(th)
msgid "[CISCO_FABRIC_EXAMPLE]"
msgstr ""
#: ./doc/common/tables/cinder-zoning_fabric.xml:56(td)
msgid "cisco_fc_fabric_address ="
msgstr ""
#: ./doc/common/tables/cinder-zoning_fabric.xml:60(td)
msgid "cisco_fc_fabric_password ="
msgstr ""
#: ./doc/common/tables/cinder-zoning_fabric.xml:64(td)
msgid "cisco_fc_fabric_port = 22"
msgstr ""
#: ./doc/common/tables/cinder-zoning_fabric.xml:68(td)
msgid "cisco_fc_fabric_user ="
msgstr ""
#: ./doc/common/tables/cinder-zoning_fabric.xml:72(td)
msgid "cisco_zone_activate = True"
msgstr ""
#: ./doc/common/tables/cinder-zoning_fabric.xml:76(td)
msgid "cisco_zone_name_prefix = None"
msgstr ""
#: ./doc/common/tables/cinder-zoning_fabric.xml:80(td)
msgid "cisco_zoning_policy = initiator-target"
msgstr ""
#: ./doc/common/tables/cinder-zoning_fabric.xml:84(td)
msgid "cisco_zoning_vsan = None"
msgstr ""
#: ./doc/common/tables/cinder-zoning_fabric.xml:85(td) ./doc/common/tables/cinder-conf-changes.xml:413(td)
msgid "(StrOpt) VSAN of the Fabric"
msgstr ""
#: ./doc/common/tables/ceilometer-redis.xml:7(caption) ./doc/common/tables/neutron-redis.xml:7(caption) ./doc/common/tables/nova-redis.xml:7(caption) ./doc/common/tables/sahara-redis.xml:7(caption) ./doc/common/tables/glance-redis.xml:7(caption) ./doc/common/tables/heat-redis.xml:7(caption) ./doc/common/tables/trove-redis.xml:7(caption) ./doc/common/tables/keystone-redis.xml:7(caption)
msgid "Description of Redis configuration options"
msgstr ""
#: ./doc/common/tables/ceilometer-redis.xml:29(th) ./doc/common/tables/neutron-redis.xml:18(th) ./doc/common/tables/nova-redis.xml:18(th) ./doc/common/tables/sahara-redis.xml:18(th) ./doc/common/tables/glance-redis.xml:18(th) ./doc/common/tables/cinder-rpc.xml:221(th) ./doc/common/tables/heat-redis.xml:18(th) ./doc/common/tables/trove-redis.xml:18(th) ./doc/common/tables/keystone-redis.xml:29(th)
msgid "[matchmaker_redis]"
msgstr ""
#: ./doc/common/tables/ceilometer-redis.xml:32(td) ./doc/common/tables/neutron-redis.xml:21(td) ./doc/common/tables/nova-redis.xml:21(td) ./doc/common/tables/sahara-redis.xml:21(td) ./doc/common/tables/glance-redis.xml:21(td) ./doc/common/tables/cinder-rpc.xml:224(td) ./doc/common/tables/heat-redis.xml:21(td) ./doc/common/tables/trove-redis.xml:21(td) ./doc/common/tables/neutron-nec.xml:37(td) ./doc/common/tables/keystone-redis.xml:32(td)
msgid "host = 127.0.0.1"
msgstr ""
#: ./doc/common/tables/ceilometer-redis.xml:33(td) ./doc/common/tables/neutron-redis.xml:22(td) ./doc/common/tables/nova-redis.xml:22(td) ./doc/common/tables/sahara-redis.xml:22(td) ./doc/common/tables/glance-redis.xml:22(td) ./doc/common/tables/cinder-rpc.xml:225(td) ./doc/common/tables/heat-redis.xml:22(td) ./doc/common/tables/keystone-redis.xml:33(td)
msgid "(StrOpt) Host to locate redis."
msgstr ""
#: ./doc/common/tables/ceilometer-redis.xml:36(td) ./doc/common/tables/neutron-redis.xml:25(td) ./doc/common/tables/nova-redis.xml:25(td) ./doc/common/tables/sahara-redis.xml:25(td) ./doc/common/tables/keystone-ldap.xml:101(td) ./doc/common/tables/glance-redis.xml:25(td) ./doc/common/tables/cinder-rpc.xml:228(td) ./doc/common/tables/heat-redis.xml:25(td) ./doc/common/tables/neutron-ml2_ncs.xml:21(td) ./doc/common/tables/neutron-ml2_odl.xml:21(td) ./doc/common/tables/trove-redis.xml:25(td) ./doc/common/tables/keystone-redis.xml:36(td)
msgid "password = None"
msgstr ""
#: ./doc/common/tables/ceilometer-redis.xml:37(td) ./doc/common/tables/neutron-redis.xml:26(td) ./doc/common/tables/nova-redis.xml:26(td) ./doc/common/tables/sahara-redis.xml:26(td) ./doc/common/tables/glance-redis.xml:26(td) ./doc/common/tables/cinder-rpc.xml:229(td) ./doc/common/tables/heat-redis.xml:26(td) ./doc/common/tables/keystone-redis.xml:37(td)
msgid "(StrOpt) Password for Redis server (optional)."
msgstr ""
#: ./doc/common/tables/ceilometer-redis.xml:40(td) ./doc/common/tables/neutron-redis.xml:29(td) ./doc/common/tables/nova-redis.xml:29(td) ./doc/common/tables/sahara-redis.xml:29(td) ./doc/common/tables/glance-redis.xml:29(td) ./doc/common/tables/cinder-rpc.xml:232(td) ./doc/common/tables/heat-redis.xml:29(td) ./doc/common/tables/trove-redis.xml:29(td) ./doc/common/tables/keystone-redis.xml:40(td)
msgid "port = 6379"
msgstr ""
#: ./doc/common/tables/ceilometer-redis.xml:41(td) ./doc/common/tables/neutron-redis.xml:30(td) ./doc/common/tables/nova-redis.xml:30(td) ./doc/common/tables/sahara-redis.xml:30(td) ./doc/common/tables/glance-redis.xml:30(td) ./doc/common/tables/cinder-rpc.xml:233(td) ./doc/common/tables/heat-redis.xml:30(td) ./doc/common/tables/trove-redis.xml:30(td) ./doc/common/tables/keystone-redis.xml:41(td)
msgid "(IntOpt) Use this port to connect to redis host."
msgstr ""
#: ./doc/common/tables/cinder-storage_ceph.xml:7(caption)
msgid "Description of Ceph storage configuration options"
msgstr ""
#: ./doc/common/tables/cinder-storage_ceph.xml:21(td)
msgid "rados_connect_timeout = -1"
msgstr ""
#: ./doc/common/tables/cinder-storage_ceph.xml:22(td) ./doc/common/tables/cinder-conf-changes.xml:225(td)
msgid "(IntOpt) Timeout value (in seconds) used when connecting to ceph cluster. If value &lt; 0, no timeout is set and default librados value is used."
msgstr ""
#: ./doc/common/tables/cinder-storage_ceph.xml:25(td)
msgid "rbd_ceph_conf ="
msgstr ""
#: ./doc/common/tables/cinder-storage_ceph.xml:26(td)
msgid "(StrOpt) Path to the ceph configuration file"
msgstr ""
#: ./doc/common/tables/cinder-storage_ceph.xml:29(td)
msgid "rbd_flatten_volume_from_snapshot = False"
msgstr ""
#: ./doc/common/tables/cinder-storage_ceph.xml:30(td)
msgid "(BoolOpt) Flatten volumes created from snapshots to remove dependency from volume to snapshot"
msgstr ""
#: ./doc/common/tables/cinder-storage_ceph.xml:33(td)
msgid "rbd_max_clone_depth = 5"
msgstr ""
#: ./doc/common/tables/cinder-storage_ceph.xml:34(td)
msgid "(IntOpt) Maximum number of nested volume clones that are taken before a flatten occurs. Set to 0 to disable cloning."
msgstr ""
#: ./doc/common/tables/cinder-storage_ceph.xml:37(td)
msgid "rbd_pool = rbd"
msgstr ""
#: ./doc/common/tables/cinder-storage_ceph.xml:38(td)
msgid "(StrOpt) The RADOS pool where rbd volumes are stored"
msgstr ""
#: ./doc/common/tables/cinder-storage_ceph.xml:41(td) ./doc/common/tables/nova-volumes.xml:129(td)
msgid "rbd_secret_uuid = None"
msgstr ""
#: ./doc/common/tables/cinder-storage_ceph.xml:42(td)
msgid "(StrOpt) The libvirt uuid of the secret for the rbd_user volumes"
msgstr ""
#: ./doc/common/tables/cinder-storage_ceph.xml:45(td)
msgid "rbd_store_chunk_size = 4"
msgstr ""
#: ./doc/common/tables/cinder-storage_ceph.xml:46(td) ./doc/common/tables/cinder-conf-changes.xml:229(td)
msgid "(IntOpt) Volumes will be chunked into objects of this size (in megabytes)."
msgstr ""
#: ./doc/common/tables/cinder-storage_ceph.xml:49(td) ./doc/common/tables/nova-volumes.xml:133(td)
msgid "rbd_user = None"
msgstr ""
#: ./doc/common/tables/cinder-storage_ceph.xml:50(td)
msgid "(StrOpt) The RADOS client name for accessing rbd volumes - only set when using cephx authentication"
msgstr ""
#: ./doc/common/tables/cinder-storage_ceph.xml:53(td)
msgid "volume_tmp_dir = None"
msgstr ""
#: ./doc/common/tables/cinder-storage_ceph.xml:54(td)
msgid "(StrOpt) Directory where temporary image files are stored when the volume driver does not write them directly to the volume."
msgstr ""
#: ./doc/common/tables/ceilometer-vmware.xml:7(caption) ./doc/common/tables/nova-vmware.xml:7(caption) ./doc/common/tables/neutron-vmware.xml:7(caption) ./doc/common/tables/glance-vmware.xml:7(caption) ./doc/common/tables/cinder-vmware.xml:7(caption)
msgid "Description of VMware configuration options"
msgstr ""
#: ./doc/common/tables/ceilometer-vmware.xml:18(th) ./doc/common/tables/nova-vnc.xml:41(th) ./doc/common/tables/nova-vmware.xml:18(th) ./doc/common/tables/nova-network.xml:253(th)
msgid "[vmware]"
msgstr ""
#: ./doc/common/tables/ceilometer-vmware.xml:21(td) ./doc/common/tables/nova-vmware.xml:21(td)
msgid "api_retry_count = 10"
msgstr ""
#: ./doc/common/tables/ceilometer-vmware.xml:22(td)
msgid "(IntOpt) Number of times a VMware Vsphere API must be retried"
msgstr ""
#: ./doc/common/tables/ceilometer-vmware.xml:25(td)
msgid "host_ip ="
msgstr ""
#: ./doc/common/tables/ceilometer-vmware.xml:26(td)
msgid "(StrOpt) IP address of the VMware Vsphere host"
msgstr ""
#: ./doc/common/tables/ceilometer-vmware.xml:29(td)
msgid "host_password ="
msgstr ""
#: ./doc/common/tables/ceilometer-vmware.xml:30(td)
msgid "(StrOpt) Password of VMware Vsphere"
msgstr ""
#: ./doc/common/tables/ceilometer-vmware.xml:33(td)
msgid "host_username ="
msgstr ""
#: ./doc/common/tables/ceilometer-vmware.xml:34(td)
msgid "(StrOpt) Username of VMware Vsphere"
msgstr ""
#: ./doc/common/tables/ceilometer-vmware.xml:37(td) ./doc/common/tables/nova-vmware.xml:57(td)
msgid "task_poll_interval = 0.5"
msgstr ""
#: ./doc/common/tables/ceilometer-vmware.xml:38(td)
msgid "(FloatOpt) Sleep time in seconds for polling an ongoing async task"
msgstr ""
#: ./doc/common/tables/ceilometer-vmware.xml:41(td) ./doc/common/tables/nova-vmware.xml:65(td)
msgid "wsdl_location = None"
msgstr ""
#: ./doc/common/tables/ceilometer-vmware.xml:42(td) ./doc/common/tables/ceilometer-conf-changes.xml:165(td)
msgid "(StrOpt) Optional vim service WSDL location e.g http://&lt;server&gt;/vimService.wsdl. Optional over-ride to default location for bug work-arounds"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:7(caption)
msgid "Description of Cisco configuration options"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:18(th)
msgid "[CISCO]"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:21(td)
msgid "model_class = neutron.plugins.cisco.models.virt_phy_sw_v2.VirtualPhysicalSwitchModelV2"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:22(td)
msgid "(StrOpt) Model Class"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:25(td)
msgid "nexus_driver = neutron.plugins.cisco.test.nexus.fake_nexus_driver.CiscoNEXUSFakeDriver"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:26(td)
msgid "(StrOpt) Nexus Driver Name"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:29(td)
msgid "nexus_l3_enable = False"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:30(td)
msgid "(BoolOpt) Enable L3 support on the Nexus switches"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:33(td)
msgid "provider_vlan_auto_create = True"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:34(td)
msgid "(BoolOpt) Provider VLANs are automatically created as needed on the Nexus switch"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:37(td)
msgid "provider_vlan_auto_trunk = True"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:38(td)
msgid "(BoolOpt) Provider VLANs are automatically trunked as needed on the ports of the Nexus switch"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:41(td)
msgid "provider_vlan_name_prefix = p-"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:42(td)
msgid "(StrOpt) VLAN Name prefix for provider vlans"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:45(td) ./doc/common/tables/neutron-cisco.xml:207(td)
msgid "svi_round_robin = False"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:46(td) ./doc/common/tables/neutron-cisco.xml:208(td)
msgid "(BoolOpt) Distribute SVI interfaces over all switches"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:49(td) ./doc/common/tables/neutron-cisco.xml:211(td)
msgid "vlan_name_prefix = q-"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:50(td) ./doc/common/tables/neutron-cisco.xml:212(td)
msgid "(StrOpt) VLAN Name prefix"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:57(td)
msgid "(StrOpt) N1K Bridge Mappings"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:60(td)
msgid "default_network_profile = default_network_profile"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:61(td)
msgid "(StrOpt) N1K default network profile"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:64(td)
msgid "default_policy_profile = service_profile"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:65(td)
msgid "(StrOpt) N1K default policy profile"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:68(td)
msgid "enable_tunneling = True"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:69(td)
msgid "(BoolOpt) N1K Enable Tunneling"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:72(td)
msgid "http_pool_size = 4"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:73(td) ./doc/common/tables/neutron-conf-changes.xml:125(td)
msgid "(IntOpt) Number of threads to use to make HTTP requests"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:76(td)
msgid "http_timeout = 15"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:77(td)
msgid "(IntOpt) N1K http timeout duration in seconds"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:81(td)
msgid "(StrOpt) N1K Integration Bridge"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:84(td)
msgid "network_node_policy_profile = dhcp_pp"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:85(td)
msgid "(StrOpt) N1K policy profile for network node"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:88(td)
msgid "network_vlan_ranges = vlan:1:4095"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:89(td)
msgid "(StrOpt) N1K Network VLAN Ranges"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:92(td)
msgid "poll_duration = 60"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:93(td)
msgid "(IntOpt) N1K Policy profile polling duration in seconds"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:96(td)
msgid "restrict_policy_profiles = False"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:97(td) ./doc/common/tables/neutron-conf-changes.xml:129(td)
msgid "(BoolOpt) Restrict the visibility of policy profiles to the tenants"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:101(td)
msgid "(StrOpt) N1K Tenant Network Type"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:105(td)
msgid "(StrOpt) N1K Tunnel Bridge"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:108(td)
msgid "vxlan_id_ranges = 5000:10000"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:109(td)
msgid "(StrOpt) N1K VXLAN ID Ranges"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:112(th)
msgid "[CISCO_PLUGINS]"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:115(td)
msgid "nexus_plugin = neutron.plugins.cisco.nexus.cisco_nexus_plugin_v2.NexusPlugin"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:116(td)
msgid "(StrOpt) Nexus Switch to use"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:119(td)
msgid "vswitch_plugin = neutron.plugins.openvswitch.ovs_neutron_plugin.OVSNeutronPluginV2"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:120(td)
msgid "(StrOpt) Virtual Switch to use"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:123(th)
msgid "[cisco_csr_ipsec]"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:126(td)
msgid "status_check_interval = 60"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:127(td)
msgid "(IntOpt) Status check interval for Cisco CSR IPSec connections"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:130(th)
msgid "[general]"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:133(td)
msgid "backlog_processing_interval = 10"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:134(td) ./doc/common/tables/neutron-conf-changes.xml:189(td)
msgid "(IntOpt) Time in seconds between renewed scheduling attempts of non-scheduled routers."
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:137(td)
msgid "cfg_agent_down_time = 60"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:138(td) ./doc/common/tables/neutron-conf-changes.xml:193(td)
msgid "(IntOpt) Seconds of no status update until a cfg agent is considered down."
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:141(td)
msgid "default_security_group = mgmt_sec_grp"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:142(td) ./doc/common/tables/neutron-conf-changes.xml:197(td)
msgid "(StrOpt) Default security group applied on management port. Default value is mgmt_sec_grp."
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:145(td)
msgid "ensure_nova_running = True"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:146(td) ./doc/common/tables/neutron-conf-changes.xml:201(td)
msgid "(BoolOpt) Ensure that Nova is running before attempting to create any VM."
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:149(td)
msgid "l3_admin_tenant = L3AdminTenant"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:150(td) ./doc/common/tables/neutron-conf-changes.xml:205(td)
msgid "(StrOpt) Name of the L3 admin tenant."
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:153(td)
msgid "management_network = osn_mgmt_nw"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:154(td) ./doc/common/tables/neutron-conf-changes.xml:209(td)
msgid "(StrOpt) Name of management network for device configuration. Default value is osn_mgmt_nw"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:157(td)
msgid "service_vm_config_path = /opt/stack/data/neutron/cisco/config_drive"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:158(td) ./doc/common/tables/neutron-conf-changes.xml:213(td)
msgid "(StrOpt) Path to config drive files for service VM instances."
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:161(td)
msgid "templates_path = /opt/stack/data/neutron/cisco/templates"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:162(td) ./doc/common/tables/neutron-conf-changes.xml:217(td)
msgid "(StrOpt) Path to templates for hosting devices."
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:165(th)
msgid "[hosting_devices]"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:168(td)
msgid "csr1kv_booting_time = 420"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:169(td) ./doc/common/tables/neutron-conf-changes.xml:225(td)
msgid "(IntOpt) Booting time in seconds before a CSR1kv becomes operational."
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:172(td)
msgid "csr1kv_cfgagent_router_driver = neutron.plugins.cisco.cfg_agent.device_drivers.csr1kv.csr1kv_routing_driver.CSR1kvRoutingDriver"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:173(td) ./doc/common/tables/neutron-conf-changes.xml:229(td)
msgid "(StrOpt) Config agent driver for CSR1kv."
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:176(td)
msgid "csr1kv_configdrive_template = csr1kv_cfg_template"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:177(td) ./doc/common/tables/neutron-conf-changes.xml:233(td)
msgid "(StrOpt) CSR1kv configdrive template file."
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:180(td)
msgid "csr1kv_device_driver = neutron.plugins.cisco.l3.hosting_device_drivers.csr1kv_hd_driver.CSR1kvHostingDeviceDriver"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:181(td) ./doc/common/tables/neutron-conf-changes.xml:237(td)
msgid "(StrOpt) Hosting device driver for CSR1kv."
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:184(td)
msgid "csr1kv_flavor = 621"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:185(td) ./doc/common/tables/neutron-conf-changes.xml:241(td)
msgid "(StrOpt) UUID of Nova flavor for CSR1kv."
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:188(td)
msgid "csr1kv_image = csr1kv_openstack_img"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:189(td) ./doc/common/tables/neutron-conf-changes.xml:245(td)
msgid "(StrOpt) Name of Glance image for CSR1kv."
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:192(td)
msgid "csr1kv_password = cisco"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:193(td) ./doc/common/tables/neutron-conf-changes.xml:249(td)
msgid "(StrOpt) Password to use for CSR1kv configurations."
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:196(td)
msgid "csr1kv_plugging_driver = neutron.plugins.cisco.l3.plugging_drivers.n1kv_trunking_driver.N1kvTrunkingPlugDriver"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:197(td) ./doc/common/tables/neutron-conf-changes.xml:253(td)
msgid "(StrOpt) Plugging driver for CSR1kv."
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:200(td)
msgid "csr1kv_username = stack"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:201(td) ./doc/common/tables/neutron-conf-changes.xml:257(td)
msgid "(StrOpt) Username to use for CSR1kv configurations."
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:204(th) ./doc/common/tables/neutron-ml2_cisco.xml:25(th)
msgid "[ml2_cisco]"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:215(th)
msgid "[n1kv]"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:218(td)
msgid "management_port_profile = osn_mgmt_pp"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:219(td) ./doc/common/tables/neutron-conf-changes.xml:433(td)
msgid "(StrOpt) Name of N1kv port profile for management ports."
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:222(td)
msgid "t1_network_profile = osn_t1_np"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:223(td) ./doc/common/tables/neutron-conf-changes.xml:437(td)
msgid "(StrOpt) Name of N1kv network profile for T1 networks (i.e., trunk networks for VXLAN segmented traffic)."
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:226(td)
msgid "t1_port_profile = osn_t1_pp"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:227(td) ./doc/common/tables/neutron-conf-changes.xml:441(td)
msgid "(StrOpt) Name of N1kv port profile for T1 ports (i.e., ports carrying traffic from VXLAN segmented networks)."
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:230(td)
msgid "t2_network_profile = osn_t2_np"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:231(td) ./doc/common/tables/neutron-conf-changes.xml:445(td)
msgid "(StrOpt) Name of N1kv network profile for T2 networks (i.e., trunk networks for VLAN segmented traffic)."
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:234(td)
msgid "t2_port_profile = osn_t2_pp"
msgstr ""
#: ./doc/common/tables/neutron-cisco.xml:235(td) ./doc/common/tables/neutron-conf-changes.xml:449(td)
msgid "(StrOpt) Name of N1kv port profile for T2 ports (i.e., ports carrying traffic from VLAN segmented networks)."
msgstr ""
#: ./doc/common/tables/nova-testing.xml:7(caption) ./doc/common/tables/neutron-testing.xml:7(caption) ./doc/common/tables/glance-testing.xml:7(caption)
msgid "Description of testing configuration options"
msgstr ""
#: ./doc/common/tables/nova-testing.xml:21(td) ./doc/common/tables/ceilometer-common.xml:21(td) ./doc/common/tables/cinder-api.xml:33(td) ./doc/common/tables/heat-debug.xml:21(td) ./doc/common/tables/neutron-testing.xml:21(td) ./doc/common/tables/trove-debug.xml:21(td) ./doc/common/tables/keystone-debug.xml:21(td)
msgid "backdoor_port = None"
msgstr ""
#: ./doc/common/tables/nova-testing.xml:22(td) ./doc/common/tables/ceilometer-common.xml:22(td) ./doc/common/tables/cinder-api.xml:34(td) ./doc/common/tables/heat-debug.xml:22(td) ./doc/common/tables/neutron-testing.xml:22(td) ./doc/common/tables/trove-debug.xml:22(td) ./doc/common/tables/keystone-debug.xml:22(td)
msgid "(StrOpt) Enable eventlet backdoor. Acceptable values are 0, &lt;port&gt;, and &lt;start&gt;:&lt;end&gt;, where 0 results in listening on a random tcp port number; &lt;port&gt; results in listening on the specified port number (and not enabling backdoor if that port is in use); and &lt;start&gt;:&lt;end&gt; results in listening on the smallest unused port number within the specified range of port numbers. The chosen port is displayed in the service's log file."
msgstr ""
#: ./doc/common/tables/nova-testing.xml:25(td)
msgid "fake_call = False"
msgstr ""
#: ./doc/common/tables/nova-testing.xml:26(td)
msgid "(BoolOpt) If True, skip using the queue and make local calls"
msgstr ""
#: ./doc/common/tables/nova-testing.xml:29(td)
msgid "fake_network = False"
msgstr ""
#: ./doc/common/tables/nova-testing.xml:30(td)
msgid "(BoolOpt) If passed, use fake network devices and addresses"
msgstr ""
#: ./doc/common/tables/nova-testing.xml:33(td) ./doc/common/tables/trove-amqp.xml:41(td) ./doc/common/tables/sahara-debug.xml:29(td) ./doc/common/tables/heat-amqp.xml:41(td) ./doc/common/tables/glance-rabbitmq.xml:25(td) ./doc/common/tables/keystone-rabbitmq.xml:21(td) ./doc/common/tables/neutron-testing.xml:25(td) ./doc/common/tables/cinder-rpc.xml:37(td) ./doc/common/tables/ceilometer-rabbitmq.xml:21(td)
msgid "fake_rabbit = False"
msgstr ""
#: ./doc/common/tables/nova-testing.xml:34(td) ./doc/common/tables/sahara-debug.xml:30(td) ./doc/common/tables/heat-amqp.xml:42(td) ./doc/common/tables/glance-rabbitmq.xml:26(td) ./doc/common/tables/keystone-rabbitmq.xml:22(td) ./doc/common/tables/neutron-testing.xml:26(td) ./doc/common/tables/cinder-rpc.xml:38(td) ./doc/common/tables/ceilometer-rabbitmq.xml:22(td)
msgid "(BoolOpt) If passed, use a fake RabbitMQ provider."
msgstr ""
#: ./doc/common/tables/nova-testing.xml:37(td) ./doc/common/tables/cinder-common.xml:61(td)
msgid "monkey_patch = False"
msgstr ""
#: ./doc/common/tables/nova-testing.xml:38(td)
msgid "(BoolOpt) Whether to log monkey patching"
msgstr ""
#: ./doc/common/tables/nova-testing.xml:41(td)
msgid "monkey_patch_modules = nova.api.ec2.cloud:nova.notifications.notify_decorator, nova.compute.api:nova.notifications.notify_decorator"
msgstr ""
#: ./doc/common/tables/nova-testing.xml:42(td) ./doc/common/tables/cinder-common.xml:66(td)
msgid "(ListOpt) List of modules/decorators to monkey patch"
msgstr ""
#: ./doc/common/tables/nova-metadata.xml:7(caption) ./doc/common/tables/neutron-metadata.xml:7(caption)
msgid "Description of metadata configuration options"
msgstr ""
#: ./doc/common/tables/nova-metadata.xml:21(td)
msgid "metadata_host = $my_ip"
msgstr ""
#: ./doc/common/tables/nova-metadata.xml:22(td)
msgid "(StrOpt) The IP address for the metadata API server"
msgstr ""
#: ./doc/common/tables/nova-metadata.xml:25(td)
msgid "metadata_listen = 0.0.0.0"
msgstr ""
#: ./doc/common/tables/nova-metadata.xml:26(td)
msgid "(StrOpt) The IP address on which the metadata API will listen."
msgstr ""
#: ./doc/common/tables/nova-metadata.xml:29(td)
msgid "metadata_listen_port = 8775"
msgstr ""
#: ./doc/common/tables/nova-metadata.xml:30(td)
msgid "(IntOpt) The port on which the metadata API will listen."
msgstr ""
#: ./doc/common/tables/nova-metadata.xml:33(td)
msgid "metadata_manager = nova.api.manager.MetadataManager"
msgstr ""
#: ./doc/common/tables/nova-metadata.xml:34(td)
msgid "(StrOpt) OpenStack metadata service manager"
msgstr ""
#: ./doc/common/tables/nova-metadata.xml:37(td)
msgid "metadata_port = 8775"
msgstr ""
#: ./doc/common/tables/nova-metadata.xml:38(td)
msgid "(IntOpt) The port for the metadata API port"
msgstr ""
#: ./doc/common/tables/nova-metadata.xml:41(td)
msgid "metadata_workers = None"
msgstr ""
#: ./doc/common/tables/nova-metadata.xml:42(td)
msgid "(IntOpt) Number of workers for metadata service. The default will be the number of CPUs available."
msgstr ""
#: ./doc/common/tables/nova-metadata.xml:45(td)
msgid "vendordata_driver = nova.api.metadata.vendordata_json.JsonFileVendorData"
msgstr ""
#: ./doc/common/tables/nova-metadata.xml:46(td)
msgid "(StrOpt) Driver to use for vendor data"
msgstr ""
#: ./doc/common/tables/nova-metadata.xml:49(td)
msgid "vendordata_jsonfile_path = None"
msgstr ""
#: ./doc/common/tables/nova-metadata.xml:50(td)
msgid "(StrOpt) File to load JSON formatted vendor data from"
msgstr ""
#: ./doc/common/tables/heat-clients_nova.xml:7(caption)
msgid "Description of nova clients configuration options"
msgstr ""
#: ./doc/common/tables/heat-clients_nova.xml:18(th)
msgid "[clients_nova]"
msgstr ""
#: ./doc/common/tables/heat-clients_nova.xml:33(td) ./doc/common/tables/heat-clients_cinder.xml:33(td)
msgid "http_log_debug = False"
msgstr ""
#: ./doc/common/tables/heat-clients_nova.xml:34(td) ./doc/common/tables/heat-conf-changes.xml:49(td) ./doc/common/tables/heat-conf-changes.xml:73(td) ./doc/common/tables/heat-clients_cinder.xml:34(td)
msgid "(BoolOpt) Allow client's debug log output."
msgstr ""
#: ./doc/common/tables/cinder-hp3par.xml:7(caption)
msgid "Description of HP 3PAR Fibre Channel and iSCSI drivers configuration options"
msgstr ""
#: ./doc/common/tables/cinder-hp3par.xml:21(td)
msgid "hp3par_api_url ="
msgstr ""
#: ./doc/common/tables/cinder-hp3par.xml:22(td)
msgid "(StrOpt) 3PAR WSAPI Server Url like https://&lt;3par ip&gt;:8080/api/v1"
msgstr ""
#: ./doc/common/tables/cinder-hp3par.xml:25(td)
msgid "hp3par_cpg = OpenStack"
msgstr ""
#: ./doc/common/tables/cinder-hp3par.xml:26(td)
msgid "(StrOpt) The CPG to use for volume creation"
msgstr ""
#: ./doc/common/tables/cinder-hp3par.xml:29(td)
msgid "hp3par_cpg_snap ="
msgstr ""
#: ./doc/common/tables/cinder-hp3par.xml:30(td)
msgid "(StrOpt) The CPG to use for Snapshots for volumes. If empty hp3par_cpg will be used"
msgstr ""
#: ./doc/common/tables/cinder-hp3par.xml:33(td)
msgid "hp3par_debug = False"
msgstr ""
#: ./doc/common/tables/cinder-hp3par.xml:34(td)
msgid "(BoolOpt) Enable HTTP debugging to 3PAR"
msgstr ""
#: ./doc/common/tables/cinder-hp3par.xml:37(td)
msgid "hp3par_iscsi_chap_enabled = False"
msgstr ""
#: ./doc/common/tables/cinder-hp3par.xml:38(td) ./doc/common/tables/cinder-conf-changes.xml:181(td)
msgid "(BoolOpt) Enable CHAP authentication for iSCSI connections."
msgstr ""
#: ./doc/common/tables/cinder-hp3par.xml:41(td)
msgid "hp3par_iscsi_ips ="
msgstr ""
#: ./doc/common/tables/cinder-hp3par.xml:42(td)
msgid "(ListOpt) List of target iSCSI addresses to use."
msgstr ""
#: ./doc/common/tables/cinder-hp3par.xml:45(td)
msgid "hp3par_password ="
msgstr ""
#: ./doc/common/tables/cinder-hp3par.xml:46(td)
msgid "(StrOpt) 3PAR Super user password"
msgstr ""
#: ./doc/common/tables/cinder-hp3par.xml:49(td)
msgid "hp3par_snapshot_expiration ="
msgstr ""
#: ./doc/common/tables/cinder-hp3par.xml:50(td)
msgid "(StrOpt) The time in hours when a snapshot expires and is deleted. This must be larger than expiration"
msgstr ""
#: ./doc/common/tables/cinder-hp3par.xml:53(td)
msgid "hp3par_snapshot_retention ="
msgstr ""
#: ./doc/common/tables/cinder-hp3par.xml:54(td)
msgid "(StrOpt) The time in hours to retain a snapshot. You can't delete it before this expires."
msgstr ""
#: ./doc/common/tables/cinder-hp3par.xml:57(td)
msgid "hp3par_username ="
msgstr ""
#: ./doc/common/tables/cinder-hp3par.xml:58(td)
msgid "(StrOpt) 3PAR Super user username"
msgstr ""
#: ./doc/common/tables/keystone-misc.xml:7(caption)
msgid "Description of configuration options for misc"
msgstr ""
#: ./doc/common/tables/keystone-misc.xml:21(td) ./doc/common/tables/ceilometer-common.xml:33(td) ./doc/common/tables/heat-common.xml:49(td) ./doc/common/tables/nova-common.xml:45(td) ./doc/common/tables/trove-common.xml:57(td) ./doc/common/tables/cinder-common.xml:57(td) ./doc/common/tables/sahara-common.xml:79(td) ./doc/common/tables/glance-common.xml:69(td) ./doc/common/tables/neutron-common.xml:153(td)
msgid "lock_path = None"
msgstr ""
#: ./doc/common/tables/keystone-misc.xml:22(td) ./doc/common/tables/ceilometer-common.xml:34(td) ./doc/common/tables/heat-common.xml:50(td) ./doc/common/tables/nova-common.xml:46(td) ./doc/common/tables/trove-common.xml:58(td) ./doc/common/tables/sahara-common.xml:80(td) ./doc/common/tables/glance-common.xml:70(td) ./doc/common/tables/neutron-common.xml:154(td)
msgid "(StrOpt) Directory to use for lock files."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-cname_lookup.xml:8(literal)
msgid "[filter-cname_lookup]"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-cname_lookup.xml:20(td)
msgid "lookup_depth = 1"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-cname_lookup.xml:21(td)
msgid "Because CNAMES can be recursive, specifies the number of levels through which to search."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-cname_lookup.xml:24(td) ./doc/common/tables/swift-proxy-server-filter-cache.xml:32(td) ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:108(td) ./doc/common/tables/swift-object-server-app-object-server.xml:68(td) ./doc/common/tables/swift-proxy-server-filter-catch_errors.xml:20(td) ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:32(td) ./doc/common/tables/swift-proxy-server-filter-gatekeeper.xml:20(td) ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:72(td) ./doc/common/tables/swift-account-server-app-account-server.xml:28(td) ./doc/common/tables/swift-container-server-app-container-server.xml:40(td) ./doc/common/tables/swift-proxy-server-filter-domain_remap.xml:28(td)
msgid "set log_address = /dev/log"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-cname_lookup.xml:28(td) ./doc/common/tables/swift-proxy-server-filter-cache.xml:36(td) ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:112(td) ./doc/common/tables/swift-object-server-app-object-server.xml:72(td) ./doc/common/tables/swift-proxy-server-filter-catch_errors.xml:24(td) ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:36(td) ./doc/common/tables/swift-proxy-server-filter-gatekeeper.xml:24(td) ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:76(td) ./doc/common/tables/swift-account-server-app-account-server.xml:32(td) ./doc/common/tables/swift-container-server-app-container-server.xml:44(td) ./doc/common/tables/swift-proxy-server-filter-domain_remap.xml:32(td)
msgid "set log_facility = LOG_LOCAL0"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-cname_lookup.xml:32(td) ./doc/common/tables/swift-proxy-server-filter-cache.xml:40(td) ./doc/common/tables/swift-proxy-server-filter-catch_errors.xml:28(td) ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:40(td) ./doc/common/tables/swift-proxy-server-filter-gatekeeper.xml:28(td) ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:80(td) ./doc/common/tables/swift-proxy-server-filter-domain_remap.xml:36(td)
msgid "set log_headers = false"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-cname_lookup.xml:33(td) ./doc/common/tables/swift-proxy-server-filter-cache.xml:41(td) ./doc/common/tables/swift-proxy-server-filter-catch_errors.xml:29(td) ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:41(td) ./doc/common/tables/swift-proxy-server-filter-gatekeeper.xml:29(td) ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:81(td) ./doc/common/tables/swift-proxy-server-filter-domain_remap.xml:37(td)
msgid "If True, log headers in each request"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-cname_lookup.xml:36(td) ./doc/common/tables/swift-proxy-server-filter-cache.xml:44(td) ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:116(td) ./doc/common/tables/swift-object-server-app-object-server.xml:76(td) ./doc/common/tables/swift-proxy-server-filter-catch_errors.xml:32(td) ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:44(td) ./doc/common/tables/swift-proxy-server-filter-gatekeeper.xml:32(td) ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:84(td) ./doc/common/tables/swift-account-server-app-account-server.xml:36(td) ./doc/common/tables/swift-container-server-app-container-server.xml:48(td) ./doc/common/tables/swift-proxy-server-filter-domain_remap.xml:40(td)
msgid "set log_level = INFO"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-cname_lookup.xml:37(td) ./doc/common/tables/swift-proxy-server-filter-cache.xml:45(td) ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:117(td) ./doc/common/tables/swift-object-server-app-object-server.xml:77(td) ./doc/common/tables/swift-proxy-server-filter-catch_errors.xml:33(td) ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:45(td) ./doc/common/tables/swift-proxy-server-filter-gatekeeper.xml:33(td) ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:85(td) ./doc/common/tables/swift-account-server-app-account-server.xml:37(td) ./doc/common/tables/swift-container-server-app-container-server.xml:49(td) ./doc/common/tables/swift-proxy-server-filter-domain_remap.xml:41(td)
msgid "Log level"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-cname_lookup.xml:40(td)
msgid "set log_name = cname_lookup"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-cname_lookup.xml:41(td) ./doc/common/tables/swift-proxy-server-filter-cache.xml:49(td) ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:121(td) ./doc/common/tables/swift-object-server-app-object-server.xml:81(td) ./doc/common/tables/swift-proxy-server-filter-catch_errors.xml:37(td) ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:49(td) ./doc/common/tables/swift-proxy-server-filter-gatekeeper.xml:37(td) ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:89(td) ./doc/common/tables/swift-account-server-app-account-server.xml:41(td) ./doc/common/tables/swift-container-server-app-container-server.xml:53(td) ./doc/common/tables/swift-proxy-server-filter-domain_remap.xml:45(td)
msgid "Label to use when logging"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-cname_lookup.xml:44(td) ./doc/common/tables/swift-proxy-server-filter-domain_remap.xml:48(td)
msgid "storage_domain = example.com"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-cname_lookup.xml:45(td) ./doc/common/tables/swift-proxy-server-filter-domain_remap.xml:49(td)
msgid "Domain that matches your cloud. Multiple domains can be specified using a comma-separated list."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-cname_lookup.xml:49(td)
msgid "use = egg:swift#cname_lookup"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-cname_lookup.xml:50(td) ./doc/common/tables/swift-container-reconciler-filter-catch_errors.xml:21(td) ./doc/common/tables/swift-container-reconciler-app-proxy-server.xml:21(td) ./doc/common/tables/swift-object-expirer-filter-catch_errors.xml:21(td) ./doc/common/tables/swift-proxy-server-filter-slo.xml:45(td) ./doc/common/tables/swift-proxy-server-filter-cache.xml:53(td) ./doc/common/tables/swift-container-server-filter-recon.xml:25(td) ./doc/common/tables/swift-proxy-server-filter-account-quotas.xml:21(td) ./doc/common/tables/swift-account-server-filter-healthcheck.xml:25(td) ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:137(td) ./doc/common/tables/swift-account-server-filter-xprofile.xml:49(td) ./doc/common/tables/swift-proxy-server-filter-xprofile.xml:49(td) ./doc/common/tables/swift-proxy-server-filter-container-quotas.xml:21(td) ./doc/common/tables/swift-container-server-filter-healthcheck.xml:25(td) ./doc/common/tables/swift-object-server-filter-xprofile.xml:49(td) ./doc/common/tables/swift-object-server-filter-healthcheck.xml:25(td) ./doc/common/tables/swift-object-server-app-object-server.xml:97(td) ./doc/common/tables/swift-proxy-server-filter-catch_errors.xml:41(td) ./doc/common/tables/swift-proxy-server-filter-keystoneauth.xml:29(td) ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:61(td) ./doc/common/tables/swift-proxy-server-filter-gatekeeper.xml:41(td) ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:93(td) ./doc/common/tables/swift-container-reconciler-filter-proxy-logging.xml:21(td) ./doc/common/tables/swift-proxy-server-filter-tempurl.xml:47(td) ./doc/common/tables/swift-proxy-server-filter-name_check.xml:33(td) ./doc/common/tables/swift-account-server-filter-recon.xml:25(td) ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:93(td) ./doc/common/tables/swift-proxy-server-filter-dlo.xml:33(td) ./doc/common/tables/swift-account-server-app-account-server.xml:49(td) ./doc/common/tables/swift-proxy-server-filter-formpost.xml:21(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:93(td) ./doc/common/tables/swift-container-server-filter-xprofile.xml:49(td) ./doc/common/tables/swift-object-expirer-filter-cache.xml:21(td) ./doc/common/tables/swift-container-reconciler-filter-cache.xml:21(td) ./doc/common/tables/swift-container-server-app-container-server.xml:61(td) ./doc/common/tables/swift-proxy-server-filter-staticweb.xml:21(td) ./doc/common/tables/swift-proxy-server-filter-bulk.xml:41(td) ./doc/common/tables/swift-object-expirer-app-proxy-server.xml:21(td) ./doc/common/tables/swift-object-server-filter-recon.xml:29(td) ./doc/common/tables/swift-proxy-server-filter-domain_remap.xml:54(td) ./doc/common/tables/swift-proxy-server-filter-list-endpoints.xml:25(td) ./doc/common/tables/swift-proxy-server-filter-container_sync.xml:29(td) ./doc/common/tables/swift-proxy-server-filter-healthcheck.xml:25(td)
msgid "Entry point of paste.deploy in the server"
msgstr ""
#: ./doc/common/tables/glance-ca.xml:7(caption) ./doc/common/tables/trove-ca.xml:7(caption) ./doc/common/tables/neutron-ca.xml:7(caption) ./doc/common/tables/cinder-ca.xml:7(caption)
msgid "Description of CA and SSL configuration options"
msgstr ""
#: ./doc/common/tables/glance-ca.xml:22(td) ./doc/common/tables/heat-cfn_api.xml:64(td) ./doc/common/tables/heat-api.xml:157(td) ./doc/common/tables/nova-ca.xml:65(td) ./doc/common/tables/heat-cloudwatch_api.xml:60(td)
msgid "(StrOpt) CA certificate file to use to verify connecting clients."
msgstr ""
#: ./doc/common/tables/glance-ca.xml:26(td)
msgid "(StrOpt) Certificate file to use when starting API server securely."
msgstr ""
#: ./doc/common/tables/glance-ca.xml:30(td)
msgid "(StrOpt) Private key file to use when starting API server securely."
msgstr ""
#: ./doc/common/tables/neutron-scheduler.xml:7(caption) ./doc/common/tables/cinder-scheduler.xml:7(caption) ./doc/common/tables/nova-scheduler.xml:7(caption)
msgid "Description of scheduler configuration options"
msgstr ""
#: ./doc/common/tables/neutron-scheduler.xml:21(td)
msgid "network_auto_schedule = True"
msgstr ""
#: ./doc/common/tables/neutron-scheduler.xml:22(td)
msgid "(BoolOpt) Allow auto scheduling networks to DHCP agent."
msgstr ""
#: ./doc/common/tables/neutron-scheduler.xml:25(td)
msgid "network_scheduler_driver = neutron.scheduler.dhcp_agent_scheduler.ChanceScheduler"
msgstr ""
#: ./doc/common/tables/neutron-scheduler.xml:26(td)
msgid "(StrOpt) Driver to use for scheduling network to DHCP agent"
msgstr ""
#: ./doc/common/tables/neutron-scheduler.xml:29(td)
msgid "router_auto_schedule = True"
msgstr ""
#: ./doc/common/tables/neutron-scheduler.xml:30(td)
msgid "(BoolOpt) Allow auto scheduling of routers to L3 agent."
msgstr ""
#: ./doc/common/tables/neutron-scheduler.xml:33(td)
msgid "router_delete_namespaces = False"
msgstr ""
#: ./doc/common/tables/neutron-scheduler.xml:34(td)
msgid "(BoolOpt) Delete namespace after removing a router."
msgstr ""
#: ./doc/common/tables/neutron-scheduler.xml:37(td)
msgid "router_scheduler_driver = neutron.scheduler.l3_agent_scheduler.ChanceScheduler"
msgstr ""
#: ./doc/common/tables/neutron-scheduler.xml:38(td)
msgid "(StrOpt) Driver to use for scheduling router to a default L3 agent"
msgstr ""
#: ./doc/common/tables/glance-rbd.xml:7(caption)
msgid "Description of RBD configuration options"
msgstr ""
#: ./doc/common/tables/glance-rbd.xml:18(th) ./doc/common/tables/glance-vmware.xml:18(th) ./doc/common/tables/glance-api.xml:73(th) ./doc/common/tables/glance-s3.xml:18(th) ./doc/common/tables/glance-swift.xml:41(th) ./doc/common/tables/glance-sheepdog.xml:18(th) ./doc/common/tables/glance-filesystem.xml:18(th) ./doc/common/tables/glance-gridfs.xml:18(th) ./doc/common/tables/glance-cinder.xml:18(th) ./doc/common/tables/glance-common.xml:101(th)
msgid "[glance_store]"
msgstr ""
#: ./doc/common/tables/glance-rbd.xml:21(td)
msgid "rbd_store_ceph_conf = /etc/ceph/ceph.conf"
msgstr ""
#: ./doc/common/tables/glance-rbd.xml:22(td)
msgid "(StrOpt) Ceph configuration file path. If &lt;None&gt;, librados will locate the default config. If using cephx authentication, this file should include a reference to the right keyring in a client.&lt;USER&gt; section"
msgstr ""
#: ./doc/common/tables/glance-rbd.xml:25(td)
msgid "rbd_store_chunk_size = 8"
msgstr ""
#: ./doc/common/tables/glance-rbd.xml:26(td)
msgid "(IntOpt) RADOS images will be chunked into objects of this size (in megabytes). For best performance, this should be a power of two."
msgstr ""
#: ./doc/common/tables/glance-rbd.xml:29(td)
msgid "rbd_store_pool = images"
msgstr ""
#: ./doc/common/tables/glance-rbd.xml:30(td)
msgid "(StrOpt) RADOS pool in which images are stored."
msgstr ""
#: ./doc/common/tables/glance-rbd.xml:33(td)
msgid "rbd_store_user = None"
msgstr ""
#: ./doc/common/tables/glance-rbd.xml:34(td)
msgid "(StrOpt) RADOS user to authenticate as (only applicable if using Cephx. If &lt;None&gt;, a default will be chosen based on the client. section in rbd_store_ceph_conf)"
msgstr ""
#: ./doc/common/tables/cinder-fusionio.xml:7(caption)
msgid "Description of Fusion-io driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-fusionio.xml:21(td)
msgid "fusionio_iocontrol_retry = 3"
msgstr ""
#: ./doc/common/tables/cinder-fusionio.xml:22(td) ./doc/common/tables/cinder-conf-changes.xml:73(td)
msgid "(IntOpt) number of retries for GET operations"
msgstr ""
#: ./doc/common/tables/cinder-fusionio.xml:25(td)
msgid "fusionio_iocontrol_targetdelay = 5"
msgstr ""
#: ./doc/common/tables/cinder-fusionio.xml:26(td) ./doc/common/tables/cinder-conf-changes.xml:77(td)
msgid "(IntOpt) amount of time wait for iSCSI target to come online"
msgstr ""
#: ./doc/common/tables/cinder-fusionio.xml:29(td)
msgid "fusionio_iocontrol_verify_cert = True"
msgstr ""
#: ./doc/common/tables/cinder-fusionio.xml:30(td) ./doc/common/tables/cinder-conf-changes.xml:81(td)
msgid "(BoolOpt) verify the array certificate on each transaction"
msgstr ""
#: ./doc/common/tables/cinder-storage_xen.xml:7(caption)
msgid "Description of Xen storage configuration options"
msgstr ""
#: ./doc/common/tables/cinder-storage_xen.xml:21(td)
msgid "xenapi_connection_password = None"
msgstr ""
#: ./doc/common/tables/cinder-storage_xen.xml:22(td)
msgid "(StrOpt) Password for XenAPI connection"
msgstr ""
#: ./doc/common/tables/cinder-storage_xen.xml:25(td)
msgid "xenapi_connection_url = None"
msgstr ""
#: ./doc/common/tables/cinder-storage_xen.xml:26(td)
msgid "(StrOpt) URL for XenAPI connection"
msgstr ""
#: ./doc/common/tables/cinder-storage_xen.xml:29(td) ./doc/common/tables/neutron-rootwrap.xml:48(td)
msgid "xenapi_connection_username = root"
msgstr ""
#: ./doc/common/tables/cinder-storage_xen.xml:30(td)
msgid "(StrOpt) Username for XenAPI connection"
msgstr ""
#: ./doc/common/tables/cinder-storage_xen.xml:33(td)
msgid "xenapi_nfs_server = None"
msgstr ""
#: ./doc/common/tables/cinder-storage_xen.xml:34(td)
msgid "(StrOpt) NFS server to be used by XenAPINFSDriver"
msgstr ""
#: ./doc/common/tables/cinder-storage_xen.xml:37(td)
msgid "xenapi_nfs_serverpath = None"
msgstr ""
#: ./doc/common/tables/cinder-storage_xen.xml:38(td)
msgid "(StrOpt) Path of exported NFS, used by XenAPINFSDriver"
msgstr ""
#: ./doc/common/tables/cinder-storage_xen.xml:41(td)
msgid "xenapi_sr_base_path = /var/run/sr-mount"
msgstr ""
#: ./doc/common/tables/cinder-storage_xen.xml:42(td) ./doc/common/tables/nova-xen.xml:176(td)
msgid "(StrOpt) Base path to the storage repository"
msgstr ""
#: ./doc/common/tables/ceilometer-common.xml:7(caption) ./doc/common/tables/heat-common.xml:7(caption) ./doc/common/tables/nova-common.xml:7(caption) ./doc/common/tables/trove-common.xml:7(caption) ./doc/common/tables/cinder-common.xml:7(caption) ./doc/common/tables/sahara-common.xml:7(caption) ./doc/common/tables/glance-common.xml:7(caption) ./doc/common/tables/neutron-common.xml:7(caption)
msgid "Description of common configuration options"
msgstr ""
#: ./doc/common/tables/ceilometer-common.xml:25(td) ./doc/common/tables/sahara-debug.xml:25(td) ./doc/common/tables/nova-common.xml:37(td) ./doc/common/tables/cinder-common.xml:37(td) ./doc/common/tables/heat-debug.xml:29(td) ./doc/common/tables/glance-common.xml:45(td) ./doc/common/tables/neutron-common.xml:129(td) ./doc/common/tables/trove-debug.xml:33(td)
msgid "disable_process_locking = False"
msgstr ""
#: ./doc/common/tables/ceilometer-common.xml:26(td) ./doc/common/tables/sahara-debug.xml:26(td) ./doc/common/tables/nova-common.xml:38(td) ./doc/common/tables/heat-debug.xml:30(td) ./doc/common/tables/glance-common.xml:46(td)
msgid "(BoolOpt) Enables or disables inter-process locks."
msgstr ""
#: ./doc/common/tables/ceilometer-common.xml:29(td) ./doc/common/tables/heat-common.xml:33(td) ./doc/common/tables/nova-common.xml:41(td) ./doc/common/tables/cinder-common.xml:45(td) ./doc/common/tables/neutron-common.xml:141(td)
msgid "host = localhost"
msgstr ""
#: ./doc/common/tables/ceilometer-common.xml:30(td)
msgid "(StrOpt) Name of this node, which must be valid in an AMQP key. Can be an opaque identifier. For ZeroMQ only, must be a valid host name, FQDN, or IP address."
msgstr ""
#: ./doc/common/tables/ceilometer-common.xml:41(td)
msgid "notification_workers = 1"
msgstr ""
#: ./doc/common/tables/ceilometer-common.xml:42(td)
msgid "(IntOpt) Number of workers for notification service. A single notification agent is enabled by default."
msgstr ""
#: ./doc/common/tables/ceilometer-common.xml:45(th)
msgid "[central]"
msgstr ""
#: ./doc/common/tables/ceilometer-common.xml:48(td)
msgid "partitioning_group_prefix = None"
msgstr ""
#: ./doc/common/tables/ceilometer-common.xml:49(td) ./doc/common/tables/ceilometer-conf-changes.xml:69(td)
msgid "(StrOpt) Work-load partitioning group prefix. Use only if you want to run multiple central agents with different config files. For each sub-group of the central agent pool with the same partitioning_group_prefix a disjoint subset of pollsters should be loaded."
msgstr ""
#: ./doc/common/tables/ceilometer-common.xml:52(th)
msgid "[compute]"
msgstr ""
#: ./doc/common/tables/ceilometer-common.xml:55(td)
msgid "workload_partitioning = False"
msgstr ""
#: ./doc/common/tables/ceilometer-common.xml:56(td) ./doc/common/tables/ceilometer-conf-changes.xml:77(td)
msgid "(BoolOpt) Enable work-load partitioning, allowing multiple compute agents to be run simultaneously."
msgstr ""
#: ./doc/common/tables/ceilometer-common.xml:59(th)
msgid "[coordination]"
msgstr ""
#: ./doc/common/tables/ceilometer-common.xml:62(td)
msgid "backend_url = None"
msgstr ""
#: ./doc/common/tables/ceilometer-common.xml:63(td) ./doc/common/tables/ceilometer-conf-changes.xml:81(td)
msgid "(StrOpt) The backend URL to use for distributed coordination. If left empty, per-deployment central agent and per-host compute agent won't do workload partitioning and will only function correctly if a single instance of that service is running."
msgstr ""
#: ./doc/common/tables/ceilometer-common.xml:66(td)
msgid "heartbeat = 1.0"
msgstr ""
#: ./doc/common/tables/ceilometer-common.xml:67(td) ./doc/common/tables/ceilometer-conf-changes.xml:85(td)
msgid "(FloatOpt) Number of seconds between heartbeats for distributed coordination (float)"
msgstr ""
#: ./doc/common/tables/cinder-pure.xml:7(caption)
msgid "Description of Pure Storage driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-pure.xml:21(td)
msgid "pure_api_token = None"
msgstr ""
#: ./doc/common/tables/cinder-pure.xml:22(td) ./doc/common/tables/cinder-conf-changes.xml:209(td)
msgid "(StrOpt) REST API authorization token."
msgstr ""
#: ./doc/common/tables/swift-container-reconciler-filter-catch_errors.xml:8(literal) ./doc/common/tables/swift-object-expirer-filter-catch_errors.xml:8(literal) ./doc/common/tables/swift-proxy-server-filter-catch_errors.xml:8(literal)
msgid "[filter-catch_errors]"
msgstr ""
#: ./doc/common/tables/swift-container-reconciler-filter-catch_errors.xml:8(literal) ./doc/common/tables/swift-container-reconciler-app-proxy-server.xml:8(literal) ./doc/common/tables/swift-container-reconciler-DEFAULT.xml:8(literal) ./doc/common/tables/swift-container-reconciler-container-reconciler.xml:8(literal) ./doc/common/tables/swift-container-reconciler-filter-proxy-logging.xml:8(literal) ./doc/common/tables/swift-container-reconciler-filter-cache.xml:8(literal) ./doc/common/tables/swift-container-reconciler-pipeline-main.xml:8(literal)
msgid "container-reconciler.conf"
msgstr ""
#: ./doc/common/tables/swift-container-reconciler-filter-catch_errors.xml:20(td) ./doc/common/tables/swift-object-expirer-filter-catch_errors.xml:20(td) ./doc/common/tables/swift-proxy-server-filter-catch_errors.xml:40(td)
msgid "use = egg:swift#catch_errors"
msgstr ""
#: ./doc/common/tables/cinder-database.xml:21(td) ./doc/common/tables/nova-baremetal.xml:21(td)
msgid "db_backend = sqlalchemy"
msgstr ""
#: ./doc/common/tables/cinder-database.xml:22(td)
msgid "(StrOpt) The backend to use for db"
msgstr ""
#: ./doc/common/tables/cinder-database.xml:25(td)
msgid "db_driver = cinder.db"
msgstr ""
#: ./doc/common/tables/cinder-database.xml:26(td)
msgid "(StrOpt) Driver to use for database access"
msgstr ""
#: ./doc/common/tables/cinder-database.xml:112(td) ./doc/common/tables/nova-database.xml:108(td)
msgid "use_tpool = False"
msgstr ""
#: ./doc/common/tables/cinder-database.xml:113(td) ./doc/common/tables/nova-conf-changes.xml:77(td) ./doc/common/tables/nova-database.xml:109(td)
msgid "(BoolOpt) Enable the experimental use of thread pooling for all DB API calls"
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:7(caption) ./doc/common/tables/neutron-logging.xml:7(caption) ./doc/common/tables/cinder-logging.xml:7(caption) ./doc/common/tables/glance-logging.xml:7(caption) ./doc/common/tables/sahara-logging.xml:7(caption) ./doc/common/tables/keystone-logging.xml:7(caption) ./doc/common/tables/heat-logging.xml:7(caption) ./doc/common/tables/nova-logging.xml:7(caption) ./doc/common/tables/trove-logging.xml:7(caption)
msgid "Description of logging configuration options"
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:21(td) ./doc/common/tables/keystone-logging.xml:21(td)
msgid "default_log_levels = amqp=WARN, amqplib=WARN, boto=WARN, qpid=WARN, sqlalchemy=WARN, suds=INFO, oslo.messaging=INFO, iso8601=WARN, requests.packages.urllib3.connectionpool=WARN, urllib3.connectionpool=WARN, websocket=WARN, keystonemiddleware=WARN, routes.middleware=WARN, stevedore=WARN"
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:22(td) ./doc/common/tables/neutron-logging.xml:26(td) ./doc/common/tables/cinder-logging.xml:26(td) ./doc/common/tables/glance-logging.xml:26(td) ./doc/common/tables/sahara-logging.xml:22(td) ./doc/common/tables/keystone-logging.xml:22(td) ./doc/common/tables/heat-logging.xml:22(td) ./doc/common/tables/nova-logging.xml:26(td) ./doc/common/tables/trove-logging.xml:22(td)
msgid "(ListOpt) List of logger=LEVEL pairs."
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:25(td) ./doc/common/tables/neutron-logging.xml:29(td) ./doc/common/tables/cinder-logging.xml:29(td) ./doc/common/tables/glance-logging.xml:29(td) ./doc/common/tables/sahara-logging.xml:25(td) ./doc/common/tables/heat-logging.xml:25(td) ./doc/common/tables/nova-logging.xml:29(td) ./doc/common/tables/trove-logging.xml:25(td) ./doc/common/tables/keystone-debug.xml:29(td)
msgid "fatal_deprecations = False"
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:26(td) ./doc/common/tables/neutron-logging.xml:30(td) ./doc/common/tables/cinder-logging.xml:30(td) ./doc/common/tables/glance-logging.xml:30(td) ./doc/common/tables/sahara-logging.xml:26(td) ./doc/common/tables/heat-logging.xml:26(td) ./doc/common/tables/nova-logging.xml:30(td) ./doc/common/tables/trove-logging.xml:26(td) ./doc/common/tables/keystone-debug.xml:30(td)
msgid "(BoolOpt) Enables or disables fatal status of deprecations."
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:29(td) ./doc/common/tables/neutron-logging.xml:33(td) ./doc/common/tables/cinder-logging.xml:37(td) ./doc/common/tables/glance-logging.xml:33(td) ./doc/common/tables/sahara-logging.xml:29(td) ./doc/common/tables/keystone-logging.xml:25(td) ./doc/common/tables/heat-logging.xml:29(td) ./doc/common/tables/nova-logging.xml:37(td) ./doc/common/tables/trove-logging.xml:33(td)
msgid "instance_format = \"[instance: %(uuid)s] \""
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:30(td) ./doc/common/tables/neutron-logging.xml:34(td) ./doc/common/tables/cinder-logging.xml:38(td) ./doc/common/tables/glance-logging.xml:34(td) ./doc/common/tables/sahara-logging.xml:30(td) ./doc/common/tables/keystone-logging.xml:26(td) ./doc/common/tables/heat-logging.xml:30(td) ./doc/common/tables/nova-logging.xml:38(td) ./doc/common/tables/trove-logging.xml:34(td)
msgid "(StrOpt) The format for an instance that is passed with the log message."
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:33(td) ./doc/common/tables/neutron-logging.xml:37(td) ./doc/common/tables/cinder-logging.xml:41(td) ./doc/common/tables/glance-logging.xml:37(td) ./doc/common/tables/sahara-logging.xml:33(td) ./doc/common/tables/keystone-logging.xml:29(td) ./doc/common/tables/heat-logging.xml:33(td) ./doc/common/tables/nova-logging.xml:41(td) ./doc/common/tables/trove-logging.xml:37(td)
msgid "instance_uuid_format = \"[instance: %(uuid)s] \""
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:34(td) ./doc/common/tables/neutron-logging.xml:38(td) ./doc/common/tables/cinder-logging.xml:42(td) ./doc/common/tables/glance-logging.xml:38(td) ./doc/common/tables/sahara-logging.xml:34(td) ./doc/common/tables/keystone-logging.xml:30(td) ./doc/common/tables/heat-logging.xml:34(td) ./doc/common/tables/nova-logging.xml:42(td) ./doc/common/tables/trove-logging.xml:38(td)
msgid "(StrOpt) The format for an instance UUID that is passed with the log message."
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:37(td) ./doc/common/tables/neutron-logging.xml:41(td) ./doc/common/tables/cinder-logging.xml:45(td) ./doc/common/tables/glance-logging.xml:41(td) ./doc/common/tables/sahara-logging.xml:37(td) ./doc/common/tables/keystone-logging.xml:33(td) ./doc/common/tables/heat-logging.xml:37(td) ./doc/common/tables/nova-logging.xml:45(td) ./doc/common/tables/trove-logging.xml:41(td)
msgid "log_config_append = None"
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:38(td) ./doc/common/tables/neutron-logging.xml:42(td) ./doc/common/tables/cinder-logging.xml:46(td) ./doc/common/tables/glance-logging.xml:42(td) ./doc/common/tables/sahara-logging.xml:38(td) ./doc/common/tables/keystone-logging.xml:34(td) ./doc/common/tables/heat-logging.xml:38(td) ./doc/common/tables/nova-logging.xml:46(td) ./doc/common/tables/trove-logging.xml:42(td)
msgid "(StrOpt) The name of a logging configuration file. This file is appended to any existing logging configuration files. For details about logging configuration files, see the Python logging module documentation."
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:41(td) ./doc/common/tables/neutron-logging.xml:45(td) ./doc/common/tables/cinder-logging.xml:49(td) ./doc/common/tables/glance-logging.xml:45(td) ./doc/common/tables/sahara-logging.xml:41(td) ./doc/common/tables/keystone-logging.xml:37(td) ./doc/common/tables/heat-logging.xml:41(td) ./doc/common/tables/nova-logging.xml:49(td) ./doc/common/tables/trove-logging.xml:45(td)
msgid "log_date_format = %Y-%m-%d %H:%M:%S"
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:42(td) ./doc/common/tables/neutron-logging.xml:46(td) ./doc/common/tables/cinder-logging.xml:50(td) ./doc/common/tables/glance-logging.xml:46(td) ./doc/common/tables/sahara-logging.xml:42(td) ./doc/common/tables/keystone-logging.xml:38(td) ./doc/common/tables/heat-logging.xml:42(td) ./doc/common/tables/nova-logging.xml:50(td) ./doc/common/tables/trove-logging.xml:46(td)
msgid "(StrOpt) Format string for %%(asctime)s in log records. Default: %(default)s ."
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:45(td) ./doc/common/tables/neutron-logging.xml:49(td) ./doc/common/tables/cinder-logging.xml:53(td) ./doc/common/tables/glance-logging.xml:49(td) ./doc/common/tables/sahara-logging.xml:45(td) ./doc/common/tables/keystone-logging.xml:41(td) ./doc/common/tables/heat-logging.xml:45(td) ./doc/common/tables/nova-logging.xml:53(td) ./doc/common/tables/trove-logging.xml:49(td)
msgid "log_dir = None"
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:46(td) ./doc/common/tables/neutron-logging.xml:50(td) ./doc/common/tables/cinder-logging.xml:54(td) ./doc/common/tables/glance-logging.xml:50(td) ./doc/common/tables/sahara-logging.xml:46(td) ./doc/common/tables/keystone-logging.xml:42(td) ./doc/common/tables/heat-logging.xml:46(td) ./doc/common/tables/nova-logging.xml:54(td) ./doc/common/tables/trove-logging.xml:50(td)
msgid "(StrOpt) (Optional) The base directory used for relative --log-file paths."
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:49(td) ./doc/common/tables/neutron-logging.xml:53(td) ./doc/common/tables/cinder-logging.xml:57(td) ./doc/common/tables/glance-logging.xml:53(td) ./doc/common/tables/sahara-logging.xml:53(td) ./doc/common/tables/keystone-logging.xml:45(td) ./doc/common/tables/heat-logging.xml:49(td) ./doc/common/tables/nova-logging.xml:57(td) ./doc/common/tables/trove-logging.xml:53(td)
msgid "log_file = None"
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:50(td) ./doc/common/tables/neutron-logging.xml:54(td) ./doc/common/tables/cinder-logging.xml:58(td) ./doc/common/tables/glance-logging.xml:54(td) ./doc/common/tables/sahara-logging.xml:54(td) ./doc/common/tables/keystone-logging.xml:46(td) ./doc/common/tables/heat-logging.xml:50(td) ./doc/common/tables/nova-logging.xml:58(td) ./doc/common/tables/trove-logging.xml:54(td)
msgid "(StrOpt) (Optional) Name of log file to output to. If no default is set, logging will go to stdout."
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:53(td) ./doc/common/tables/neutron-logging.xml:57(td) ./doc/common/tables/cinder-logging.xml:61(td) ./doc/common/tables/glance-logging.xml:57(td) ./doc/common/tables/sahara-logging.xml:57(td) ./doc/common/tables/keystone-logging.xml:49(td) ./doc/common/tables/heat-logging.xml:53(td) ./doc/common/tables/nova-logging.xml:61(td) ./doc/common/tables/trove-logging.xml:57(td)
msgid "log_format = None"
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:54(td) ./doc/common/tables/neutron-logging.xml:58(td) ./doc/common/tables/cinder-logging.xml:62(td) ./doc/common/tables/glance-logging.xml:58(td) ./doc/common/tables/sahara-logging.xml:58(td) ./doc/common/tables/keystone-logging.xml:50(td) ./doc/common/tables/heat-logging.xml:54(td) ./doc/common/tables/nova-logging.xml:62(td) ./doc/common/tables/trove-logging.xml:58(td)
msgid "(StrOpt) DEPRECATED. A logging.Formatter log message format string which may use any of the available logging.LogRecord attributes. This option is deprecated. Please use logging_context_format_string and logging_default_format_string instead."
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:57(td) ./doc/common/tables/neutron-logging.xml:61(td) ./doc/common/tables/cinder-logging.xml:65(td) ./doc/common/tables/glance-logging.xml:61(td) ./doc/common/tables/sahara-logging.xml:61(td) ./doc/common/tables/keystone-logging.xml:53(td) ./doc/common/tables/heat-logging.xml:57(td) ./doc/common/tables/nova-logging.xml:65(td) ./doc/common/tables/trove-logging.xml:61(td)
msgid "logging_context_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s"
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:58(td) ./doc/common/tables/neutron-logging.xml:62(td) ./doc/common/tables/cinder-logging.xml:66(td) ./doc/common/tables/glance-logging.xml:62(td) ./doc/common/tables/sahara-logging.xml:62(td) ./doc/common/tables/keystone-logging.xml:54(td) ./doc/common/tables/heat-logging.xml:58(td) ./doc/common/tables/nova-logging.xml:66(td) ./doc/common/tables/trove-logging.xml:62(td)
msgid "(StrOpt) Format string to use for log messages with context."
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:61(td) ./doc/common/tables/neutron-logging.xml:65(td) ./doc/common/tables/cinder-logging.xml:69(td) ./doc/common/tables/glance-logging.xml:65(td) ./doc/common/tables/sahara-logging.xml:65(td) ./doc/common/tables/keystone-logging.xml:57(td) ./doc/common/tables/heat-logging.xml:61(td) ./doc/common/tables/nova-logging.xml:69(td) ./doc/common/tables/trove-logging.xml:65(td)
msgid "logging_debug_format_suffix = %(funcName)s %(pathname)s:%(lineno)d"
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:62(td) ./doc/common/tables/neutron-logging.xml:66(td) ./doc/common/tables/cinder-logging.xml:70(td) ./doc/common/tables/glance-logging.xml:66(td) ./doc/common/tables/sahara-logging.xml:66(td) ./doc/common/tables/keystone-logging.xml:58(td) ./doc/common/tables/heat-logging.xml:62(td) ./doc/common/tables/nova-logging.xml:70(td) ./doc/common/tables/trove-logging.xml:66(td)
msgid "(StrOpt) Data to append to log format when level is DEBUG."
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:65(td) ./doc/common/tables/neutron-logging.xml:69(td) ./doc/common/tables/cinder-logging.xml:73(td) ./doc/common/tables/glance-logging.xml:69(td) ./doc/common/tables/sahara-logging.xml:69(td) ./doc/common/tables/keystone-logging.xml:61(td) ./doc/common/tables/heat-logging.xml:65(td) ./doc/common/tables/nova-logging.xml:73(td) ./doc/common/tables/trove-logging.xml:69(td)
msgid "logging_default_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s"
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:66(td) ./doc/common/tables/neutron-logging.xml:70(td) ./doc/common/tables/cinder-logging.xml:74(td) ./doc/common/tables/glance-logging.xml:70(td) ./doc/common/tables/sahara-logging.xml:70(td) ./doc/common/tables/keystone-logging.xml:62(td) ./doc/common/tables/heat-logging.xml:66(td) ./doc/common/tables/nova-logging.xml:74(td) ./doc/common/tables/trove-logging.xml:70(td)
msgid "(StrOpt) Format string to use for log messages without context."
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:69(td) ./doc/common/tables/neutron-logging.xml:73(td) ./doc/common/tables/cinder-logging.xml:77(td) ./doc/common/tables/glance-logging.xml:73(td) ./doc/common/tables/sahara-logging.xml:73(td) ./doc/common/tables/keystone-logging.xml:65(td) ./doc/common/tables/heat-logging.xml:69(td) ./doc/common/tables/nova-logging.xml:77(td) ./doc/common/tables/trove-logging.xml:73(td)
msgid "logging_exception_prefix = %(asctime)s.%(msecs)03d %(process)d TRACE %(name)s %(instance)s"
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:70(td) ./doc/common/tables/neutron-logging.xml:74(td) ./doc/common/tables/cinder-logging.xml:78(td) ./doc/common/tables/glance-logging.xml:74(td) ./doc/common/tables/sahara-logging.xml:74(td) ./doc/common/tables/keystone-logging.xml:66(td) ./doc/common/tables/heat-logging.xml:70(td) ./doc/common/tables/nova-logging.xml:78(td) ./doc/common/tables/trove-logging.xml:74(td)
msgid "(StrOpt) Prefix each line of exception output with this format."
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:73(td) ./doc/common/tables/neutron-logging.xml:77(td) ./doc/common/tables/cinder-logging.xml:81(td) ./doc/common/tables/heat-notification.xml:25(td) ./doc/common/tables/glance-logging.xml:77(td) ./doc/common/tables/sahara-logging.xml:77(td) ./doc/common/tables/nova-logging.xml:81(td) ./doc/common/tables/trove-logging.xml:81(td) ./doc/common/tables/keystone-debug.xml:33(td)
msgid "publish_errors = False"
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:74(td) ./doc/common/tables/neutron-logging.xml:78(td) ./doc/common/tables/cinder-logging.xml:82(td) ./doc/common/tables/heat-notification.xml:26(td) ./doc/common/tables/glance-logging.xml:78(td) ./doc/common/tables/sahara-logging.xml:78(td) ./doc/common/tables/nova-logging.xml:82(td) ./doc/common/tables/trove-logging.xml:82(td) ./doc/common/tables/keystone-debug.xml:34(td)
msgid "(BoolOpt) Enables or disables publication of error events."
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:77(td) ./doc/common/tables/neutron-logging.xml:81(td) ./doc/common/tables/cinder-logging.xml:85(td) ./doc/common/tables/glance-logging.xml:81(td) ./doc/common/tables/sahara-logging.xml:81(td) ./doc/common/tables/keystone-logging.xml:69(td) ./doc/common/tables/heat-logging.xml:73(td) ./doc/common/tables/nova-logging.xml:85(td) ./doc/common/tables/trove-logging.xml:85(td)
msgid "syslog_log_facility = LOG_USER"
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:78(td) ./doc/common/tables/neutron-logging.xml:82(td) ./doc/common/tables/cinder-logging.xml:86(td) ./doc/common/tables/glance-logging.xml:82(td) ./doc/common/tables/sahara-logging.xml:82(td) ./doc/common/tables/keystone-logging.xml:70(td) ./doc/common/tables/heat-logging.xml:74(td) ./doc/common/tables/nova-logging.xml:86(td) ./doc/common/tables/trove-logging.xml:86(td)
msgid "(StrOpt) Syslog facility to receive log lines."
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:81(td) ./doc/common/tables/neutron-logging.xml:89(td) ./doc/common/tables/glance-logging.xml:85(td) ./doc/common/tables/cinder-common.xml:161(td) ./doc/common/tables/sahara-logging.xml:85(td) ./doc/common/tables/keystone-logging.xml:73(td) ./doc/common/tables/heat-logging.xml:77(td) ./doc/common/tables/nova-logging.xml:89(td) ./doc/common/tables/trove-logging.xml:89(td)
msgid "use_stderr = True"
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:82(td) ./doc/common/tables/neutron-logging.xml:90(td) ./doc/common/tables/glance-logging.xml:86(td) ./doc/common/tables/cinder-common.xml:162(td) ./doc/common/tables/sahara-logging.xml:86(td) ./doc/common/tables/keystone-logging.xml:74(td) ./doc/common/tables/heat-logging.xml:78(td) ./doc/common/tables/nova-logging.xml:90(td) ./doc/common/tables/trove-logging.xml:90(td)
msgid "(BoolOpt) Log output to standard error."
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:85(td) ./doc/common/tables/neutron-logging.xml:93(td) ./doc/common/tables/neutron-rootwrap.xml:29(td) ./doc/common/tables/cinder-logging.xml:89(td) ./doc/common/tables/nova-rootwrap.xml:29(td) ./doc/common/tables/glance-logging.xml:89(td) ./doc/common/tables/sahara-logging.xml:89(td) ./doc/common/tables/keystone-logging.xml:77(td) ./doc/common/tables/heat-logging.xml:81(td) ./doc/common/tables/nova-logging.xml:93(td) ./doc/common/tables/trove-logging.xml:93(td) ./doc/common/tables/cinder-rootwrap.xml:29(td)
msgid "use_syslog = False"
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:86(td) ./doc/common/tables/neutron-logging.xml:94(td) ./doc/common/tables/cinder-logging.xml:90(td) ./doc/common/tables/glance-logging.xml:90(td) ./doc/common/tables/sahara-logging.xml:90(td) ./doc/common/tables/keystone-logging.xml:78(td) ./doc/common/tables/heat-logging.xml:82(td) ./doc/common/tables/nova-logging.xml:94(td) ./doc/common/tables/trove-logging.xml:94(td)
msgid "(BoolOpt) Use syslog for logging. Existing syslog format is DEPRECATED during I, and will change in J to honor RFC5424."
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:89(td) ./doc/common/tables/neutron-logging.xml:97(td) ./doc/common/tables/cinder-logging.xml:93(td) ./doc/common/tables/glance-logging.xml:93(td) ./doc/common/tables/sahara-logging.xml:93(td) ./doc/common/tables/keystone-logging.xml:81(td) ./doc/common/tables/heat-logging.xml:85(td) ./doc/common/tables/nova-logging.xml:97(td) ./doc/common/tables/trove-logging.xml:97(td)
msgid "use_syslog_rfc_format = False"
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:90(td) ./doc/common/tables/neutron-logging.xml:98(td) ./doc/common/tables/heat-conf-changes.xml:45(td) ./doc/common/tables/neutron-conf-changes.xml:105(td) ./doc/common/tables/cinder-logging.xml:94(td) ./doc/common/tables/trove-conf-changes.xml:97(td) ./doc/common/tables/glance-logging.xml:94(td) ./doc/common/tables/sahara-logging.xml:94(td) ./doc/common/tables/keystone-logging.xml:82(td) ./doc/common/tables/heat-logging.xml:86(td) ./doc/common/tables/nova-logging.xml:98(td) ./doc/common/tables/trove-logging.xml:98(td)
msgid "(BoolOpt) (Optional) Enables or disables syslog rfc5424 format for logging. If enabled, prefixes the MSG part of the syslog message with APP-NAME (RFC5424). The format without the APP-NAME is deprecated in I, and will be removed in J."
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:93(td) ./doc/common/tables/neutron-logging.xml:101(td) ./doc/common/tables/cinder-logging.xml:97(td) ./doc/common/tables/glance-logging.xml:97(td) ./doc/common/tables/sahara-logging.xml:97(td) ./doc/common/tables/keystone-logging.xml:85(td) ./doc/common/tables/heat-logging.xml:89(td) ./doc/common/tables/nova-logging.xml:101(td) ./doc/common/tables/trove-logging.xml:101(td)
msgid "verbose = False"
msgstr ""
#: ./doc/common/tables/ceilometer-logging.xml:94(td) ./doc/common/tables/neutron-logging.xml:102(td) ./doc/common/tables/cinder-logging.xml:98(td) ./doc/common/tables/glance-logging.xml:98(td) ./doc/common/tables/sahara-logging.xml:98(td) ./doc/common/tables/keystone-logging.xml:86(td) ./doc/common/tables/heat-logging.xml:90(td) ./doc/common/tables/nova-logging.xml:102(td) ./doc/common/tables/trove-logging.xml:102(td)
msgid "(BoolOpt) Print more verbose output (set logging level to INFO instead of default WARNING level)."
msgstr ""
#: ./doc/common/tables/heat-common.xml:21(td)
msgid "deferred_auth_method = password"
msgstr ""
#: ./doc/common/tables/heat-common.xml:22(td)
msgid "(StrOpt) Select deferred auth method, stored password or trusts."
msgstr ""
#: ./doc/common/tables/heat-common.xml:25(td)
msgid "environment_dir = /etc/heat/environment.d"
msgstr ""
#: ./doc/common/tables/heat-common.xml:26(td)
msgid "(StrOpt) The directory to search for environment files."
msgstr ""
#: ./doc/common/tables/heat-common.xml:29(td)
msgid "event_purge_batch_size = 10"
msgstr ""
#: ./doc/common/tables/heat-common.xml:30(td)
msgid "(IntOpt) Controls how many events will be pruned whenever a stack's events exceed max_events_per_stack. Set this lower to keep more events at the expense of more frequent purges."
msgstr ""
#: ./doc/common/tables/heat-common.xml:34(td)
msgid "(StrOpt) Name of the engine node. This can be an opaque identifier. It is not necessarily a hostname, FQDN, or IP address."
msgstr ""
#: ./doc/common/tables/heat-common.xml:37(td)
msgid "instance_driver = heat.engine.nova"
msgstr ""
#: ./doc/common/tables/heat-common.xml:38(td)
msgid "(StrOpt) Driver to use for controlling instances."
msgstr ""
#: ./doc/common/tables/heat-common.xml:41(td)
msgid "instance_user = ec2-user"
msgstr ""
#: ./doc/common/tables/heat-common.xml:42(td)
msgid "(StrOpt) The default user for new instances. This option is deprecated and will be removed in the Juno release. If it's empty, Heat will use the default user set up with your cloud image (for OS::Nova::Server) or 'ec2-user' (for AWS::EC2::Instance)."
msgstr ""
#: ./doc/common/tables/heat-common.xml:45(td)
msgid "keystone_backend = heat.common.heat_keystoneclient.KeystoneClientV3"
msgstr ""
#: ./doc/common/tables/heat-common.xml:46(td)
msgid "(StrOpt) Fully qualified class name to use as a keystone backend."
msgstr ""
#: ./doc/common/tables/heat-common.xml:53(td) ./doc/common/tables/cinder-common.xml:85(td) ./doc/common/tables/trove-rpc.xml:37(td)
msgid "periodic_interval = 60"
msgstr ""
#: ./doc/common/tables/heat-common.xml:54(td)
msgid "(IntOpt) Seconds between running periodic tasks."
msgstr ""
#: ./doc/common/tables/heat-common.xml:57(td)
msgid "plugin_dirs = /usr/lib64/heat, /usr/lib/heat"
msgstr ""
#: ./doc/common/tables/heat-common.xml:58(td)
msgid "(ListOpt) List of directories to search for plug-ins."
msgstr ""
#: ./doc/common/tables/heat-common.xml:61(th)
msgid "[revision]"
msgstr ""
#: ./doc/common/tables/heat-common.xml:64(td)
msgid "heat_revision = unknown"
msgstr ""
#: ./doc/common/tables/heat-common.xml:65(td)
msgid "(StrOpt) Heat build revision. If you would prefer to manage your build revision separately, you can move this section to a different file and add it as another config option."
msgstr ""
#: ./doc/common/tables/nova-ipv6.xml:7(caption)
msgid "Description of IPv6 configuration options"
msgstr ""
#: ./doc/common/tables/nova-ipv6.xml:21(td)
msgid "fixed_range_v6 = fd00::/48"
msgstr ""
#: ./doc/common/tables/nova-ipv6.xml:22(td)
msgid "(StrOpt) Fixed IPv6 address block"
msgstr ""
#: ./doc/common/tables/nova-ipv6.xml:25(td)
msgid "gateway_v6 = None"
msgstr ""
#: ./doc/common/tables/nova-ipv6.xml:26(td)
msgid "(StrOpt) Default IPv6 gateway"
msgstr ""
#: ./doc/common/tables/nova-ipv6.xml:29(td)
msgid "ipv6_backend = rfc2462"
msgstr ""
#: ./doc/common/tables/nova-ipv6.xml:30(td)
msgid "(StrOpt) Backend to use for IPv6 generation"
msgstr ""
#: ./doc/common/tables/nova-ipv6.xml:33(td)
msgid "use_ipv6 = False"
msgstr ""
#: ./doc/common/tables/nova-ipv6.xml:34(td)
msgid "(BoolOpt) Use IPv6"
msgstr ""
#: ./doc/common/tables/sahara-zeromq.xml:7(caption) ./doc/common/tables/nova-zeromq.xml:7(caption) ./doc/common/tables/heat-zeromq.xml:7(caption) ./doc/common/tables/neutron-zeromq.xml:7(caption) ./doc/common/tables/keystone-zeromq.xml:7(caption) ./doc/common/tables/glance-zeromq.xml:7(caption) ./doc/common/tables/trove-zeromq.xml:7(caption)
msgid "Description of ZeroMQ configuration options"
msgstr ""
#: ./doc/common/tables/sahara-zeromq.xml:21(td) ./doc/common/tables/nova-zeromq.xml:21(td) ./doc/common/tables/heat-zeromq.xml:21(td) ./doc/common/tables/neutron-zeromq.xml:21(td) ./doc/common/tables/keystone-zeromq.xml:21(td) ./doc/common/tables/glance-zeromq.xml:25(td) ./doc/common/tables/ceilometer-rpc.xml:45(td) ./doc/common/tables/cinder-rpc.xml:185(td) ./doc/common/tables/trove-zeromq.xml:21(td) ./doc/common/tables/nova-rpc_all.xml:173(td)
msgid "rpc_zmq_bind_address = *"
msgstr ""
#: ./doc/common/tables/sahara-zeromq.xml:22(td) ./doc/common/tables/nova-zeromq.xml:22(td) ./doc/common/tables/heat-zeromq.xml:22(td) ./doc/common/tables/neutron-zeromq.xml:22(td) ./doc/common/tables/keystone-zeromq.xml:22(td) ./doc/common/tables/glance-zeromq.xml:26(td) ./doc/common/tables/ceilometer-rpc.xml:46(td) ./doc/common/tables/cinder-rpc.xml:186(td) ./doc/common/tables/trove-zeromq.xml:22(td) ./doc/common/tables/nova-rpc_all.xml:174(td)
msgid "(StrOpt) ZeroMQ bind address. Should be a wildcard (*), an ethernet interface, or IP. The \"host\" option should point or resolve to this address."
msgstr ""
#: ./doc/common/tables/sahara-zeromq.xml:25(td) ./doc/common/tables/nova-zeromq.xml:25(td) ./doc/common/tables/heat-zeromq.xml:25(td) ./doc/common/tables/neutron-zeromq.xml:25(td) ./doc/common/tables/keystone-zeromq.xml:25(td) ./doc/common/tables/glance-zeromq.xml:29(td) ./doc/common/tables/ceilometer-rpc.xml:49(td) ./doc/common/tables/cinder-rpc.xml:189(td) ./doc/common/tables/trove-zeromq.xml:25(td) ./doc/common/tables/nova-rpc_all.xml:177(td)
msgid "rpc_zmq_contexts = 1"
msgstr ""
#: ./doc/common/tables/sahara-zeromq.xml:26(td) ./doc/common/tables/nova-zeromq.xml:26(td) ./doc/common/tables/heat-zeromq.xml:26(td) ./doc/common/tables/neutron-zeromq.xml:26(td) ./doc/common/tables/keystone-zeromq.xml:26(td) ./doc/common/tables/glance-zeromq.xml:30(td) ./doc/common/tables/ceilometer-rpc.xml:50(td) ./doc/common/tables/cinder-rpc.xml:190(td) ./doc/common/tables/nova-rpc_all.xml:178(td)
msgid "(IntOpt) Number of ZeroMQ contexts, defaults to 1."
msgstr ""
#: ./doc/common/tables/sahara-zeromq.xml:29(td) ./doc/common/tables/nova-zeromq.xml:29(td) ./doc/common/tables/heat-zeromq.xml:29(td) ./doc/common/tables/neutron-zeromq.xml:29(td) ./doc/common/tables/keystone-zeromq.xml:29(td) ./doc/common/tables/glance-zeromq.xml:33(td) ./doc/common/tables/ceilometer-rpc.xml:53(td) ./doc/common/tables/cinder-rpc.xml:193(td) ./doc/common/tables/trove-zeromq.xml:29(td) ./doc/common/tables/nova-rpc_all.xml:181(td)
msgid "rpc_zmq_host = localhost"
msgstr ""
#: ./doc/common/tables/sahara-zeromq.xml:30(td) ./doc/common/tables/nova-zeromq.xml:30(td) ./doc/common/tables/heat-zeromq.xml:30(td) ./doc/common/tables/neutron-zeromq.xml:30(td) ./doc/common/tables/keystone-zeromq.xml:30(td) ./doc/common/tables/glance-zeromq.xml:34(td) ./doc/common/tables/ceilometer-rpc.xml:54(td) ./doc/common/tables/cinder-rpc.xml:194(td) ./doc/common/tables/trove-zeromq.xml:30(td) ./doc/common/tables/nova-rpc_all.xml:182(td)
msgid "(StrOpt) Name of this node. Must be a valid hostname, FQDN, or IP address. Must match \"host\" option, if running Nova."
msgstr ""
#: ./doc/common/tables/sahara-zeromq.xml:33(td) ./doc/common/tables/nova-zeromq.xml:33(td) ./doc/common/tables/heat-zeromq.xml:33(td) ./doc/common/tables/neutron-zeromq.xml:33(td) ./doc/common/tables/keystone-zeromq.xml:33(td) ./doc/common/tables/glance-zeromq.xml:37(td) ./doc/common/tables/ceilometer-rpc.xml:57(td) ./doc/common/tables/cinder-rpc.xml:197(td) ./doc/common/tables/trove-zeromq.xml:33(td) ./doc/common/tables/nova-rpc_all.xml:185(td)
msgid "rpc_zmq_ipc_dir = /var/run/openstack"
msgstr ""
#: ./doc/common/tables/sahara-zeromq.xml:34(td) ./doc/common/tables/nova-zeromq.xml:34(td) ./doc/common/tables/heat-zeromq.xml:34(td) ./doc/common/tables/neutron-zeromq.xml:34(td) ./doc/common/tables/keystone-zeromq.xml:34(td) ./doc/common/tables/glance-zeromq.xml:38(td) ./doc/common/tables/ceilometer-rpc.xml:58(td) ./doc/common/tables/cinder-rpc.xml:198(td) ./doc/common/tables/nova-rpc_all.xml:186(td)
msgid "(StrOpt) Directory for holding IPC sockets."
msgstr ""
#: ./doc/common/tables/sahara-zeromq.xml:37(td) ./doc/common/tables/nova-zeromq.xml:37(td) ./doc/common/tables/heat-zeromq.xml:37(td) ./doc/common/tables/neutron-zeromq.xml:37(td) ./doc/common/tables/keystone-zeromq.xml:37(td) ./doc/common/tables/glance-zeromq.xml:41(td) ./doc/common/tables/ceilometer-rpc.xml:61(td) ./doc/common/tables/cinder-rpc.xml:201(td) ./doc/common/tables/nova-rpc_all.xml:189(td)
msgid "rpc_zmq_matchmaker = oslo.messaging._drivers.matchmaker.MatchMakerLocalhost"
msgstr ""
#: ./doc/common/tables/sahara-zeromq.xml:38(td) ./doc/common/tables/nova-zeromq.xml:38(td) ./doc/common/tables/heat-zeromq.xml:38(td) ./doc/common/tables/neutron-zeromq.xml:38(td) ./doc/common/tables/keystone-zeromq.xml:38(td) ./doc/common/tables/glance-zeromq.xml:42(td) ./doc/common/tables/ceilometer-rpc.xml:62(td) ./doc/common/tables/cinder-rpc.xml:202(td) ./doc/common/tables/nova-rpc_all.xml:190(td)
msgid "(StrOpt) MatchMaker driver."
msgstr ""
#: ./doc/common/tables/sahara-zeromq.xml:41(td) ./doc/common/tables/nova-zeromq.xml:41(td) ./doc/common/tables/heat-zeromq.xml:41(td) ./doc/common/tables/neutron-zeromq.xml:41(td) ./doc/common/tables/keystone-zeromq.xml:41(td) ./doc/common/tables/glance-zeromq.xml:45(td) ./doc/common/tables/ceilometer-rpc.xml:65(td) ./doc/common/tables/cinder-rpc.xml:205(td) ./doc/common/tables/trove-zeromq.xml:41(td) ./doc/common/tables/nova-rpc_all.xml:193(td)
msgid "rpc_zmq_port = 9501"
msgstr ""
#: ./doc/common/tables/sahara-zeromq.xml:42(td) ./doc/common/tables/nova-zeromq.xml:42(td) ./doc/common/tables/heat-zeromq.xml:42(td) ./doc/common/tables/neutron-zeromq.xml:42(td) ./doc/common/tables/keystone-zeromq.xml:42(td) ./doc/common/tables/glance-zeromq.xml:46(td) ./doc/common/tables/ceilometer-rpc.xml:66(td) ./doc/common/tables/cinder-rpc.xml:206(td) ./doc/common/tables/nova-rpc_all.xml:194(td)
msgid "(IntOpt) ZeroMQ receiver listening port."
msgstr ""
#: ./doc/common/tables/sahara-zeromq.xml:45(td) ./doc/common/tables/nova-zeromq.xml:45(td) ./doc/common/tables/heat-zeromq.xml:45(td) ./doc/common/tables/neutron-zeromq.xml:45(td) ./doc/common/tables/keystone-zeromq.xml:45(td) ./doc/common/tables/glance-zeromq.xml:49(td) ./doc/common/tables/ceilometer-rpc.xml:69(td) ./doc/common/tables/cinder-rpc.xml:209(td) ./doc/common/tables/trove-zeromq.xml:45(td) ./doc/common/tables/nova-rpc_all.xml:197(td)
msgid "rpc_zmq_topic_backlog = None"
msgstr ""
#: ./doc/common/tables/sahara-zeromq.xml:46(td) ./doc/common/tables/nova-zeromq.xml:46(td) ./doc/common/tables/heat-zeromq.xml:46(td) ./doc/common/tables/neutron-zeromq.xml:46(td) ./doc/common/tables/keystone-zeromq.xml:46(td) ./doc/common/tables/glance-zeromq.xml:50(td) ./doc/common/tables/ceilometer-rpc.xml:70(td) ./doc/common/tables/cinder-rpc.xml:210(td) ./doc/common/tables/trove-zeromq.xml:46(td) ./doc/common/tables/nova-rpc_all.xml:198(td)
msgid "(IntOpt) Maximum number of ingress messages to locally buffer per topic. Default is unlimited."
msgstr ""
#: ./doc/common/tables/nova-vnc.xml:7(caption)
msgid "Description of VNC configuration options"
msgstr ""
#: ./doc/common/tables/nova-vnc.xml:21(td)
msgid "novncproxy_base_url = http://127.0.0.1:6080/vnc_auto.html"
msgstr ""
#: ./doc/common/tables/nova-vnc.xml:22(td)
msgid "(StrOpt) Location of VNC console proxy, in the form \"http://127.0.0.1:6080/vnc_auto.html\""
msgstr ""
#: ./doc/common/tables/nova-vnc.xml:25(td)
msgid "vnc_enabled = True"
msgstr ""
#: ./doc/common/tables/nova-vnc.xml:26(td)
msgid "(BoolOpt) Enable VNC related features"
msgstr ""
#: ./doc/common/tables/nova-vnc.xml:29(td)
msgid "vnc_keymap = en-us"
msgstr ""
#: ./doc/common/tables/nova-vnc.xml:30(td)
msgid "(StrOpt) Keymap for VNC"
msgstr ""
#: ./doc/common/tables/nova-vnc.xml:33(td)
msgid "vncserver_listen = 127.0.0.1"
msgstr ""
#: ./doc/common/tables/nova-vnc.xml:34(td)
msgid "(StrOpt) IP address on which instance vncservers should listen"
msgstr ""
#: ./doc/common/tables/nova-vnc.xml:37(td)
msgid "vncserver_proxyclient_address = 127.0.0.1"
msgstr ""
#: ./doc/common/tables/nova-vnc.xml:38(td)
msgid "(StrOpt) The address to which proxy clients (like nova-xvpvncproxy) should connect"
msgstr ""
#: ./doc/common/tables/nova-vnc.xml:44(td)
msgid "vnc_port = 5900"
msgstr ""
#: ./doc/common/tables/nova-vnc.xml:45(td)
msgid "(IntOpt) VNC starting port"
msgstr ""
#: ./doc/common/tables/nova-vnc.xml:48(td)
msgid "vnc_port_total = 10000"
msgstr ""
#: ./doc/common/tables/nova-vnc.xml:49(td)
msgid "(IntOpt) Total number of VNC ports"
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:5(caption)
msgid "Description of extra specs options for NetApp Unified Driver with Clustered Data ONTAP"
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:11(th)
msgid "Extra spec"
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:12(th)
msgid "Type"
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:18(literal)
msgid "netapp:raid_type"
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:19(td) ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:24(td) ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:30(td)
msgid "String"
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:20(literal)
msgid "raid4, raid_dp"
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:20(td)
msgid "Limit the candidate volume list based on one of the following raid types: <placeholder-1/>."
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:23(literal)
msgid "netapp:disk_type"
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:25(literal)
msgid "ATA, BSAS, EATA, FCAL, FSAS, LUN, MSATA, SAS, SATA, SCSI, XATA, XSAS, or SSD."
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:25(td)
msgid "Limit the candidate volume list based on one of the following disk types: <placeholder-1/>"
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:29(literal)
msgid "netapp:qos_policy_group"
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:31(td)
msgid "Limit the candidate volume list based on the name of a QoS policy group, which defines measurable Service Level Objectives that apply to the storage objects with which the policy group is associated."
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:35(literal)
msgid "netapp_mirrored"
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:35(para)
msgid "If both the positive and negative specs for a pair are specified (for example, <literal>netapp_dedup</literal> and <literal>netapp_nodedup</literal>) and set to the same value within a single <literal>extra_specs</literal> list, then neither spec will be utilized by the driver."
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:36(td) ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:41(td) ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:46(td) ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:51(td) ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:56(td) ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:61(td) ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:66(td) ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:71(td)
msgid "Boolean"
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:37(td)
msgid "Limit the candidate volume list to only the ones that are mirrored on the storage controller."
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:40(literal)
msgid "netapp_unmirrored"
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:42(td)
msgid "Limit the candidate volume list to only the ones that are not mirrored on the storage controller."
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:45(literal)
msgid "netapp_dedup"
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:47(td)
msgid "Limit the candidate volume list to only the ones that have deduplication enabled on the storage controller."
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:50(literal)
msgid "netapp_nodedup"
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:52(td)
msgid "Limit the candidate volume list to only the ones that have deduplication disabled on the storage controller."
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:55(literal)
msgid "netapp_compression"
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:57(td)
msgid "Limit the candidate volume list to only the ones that have compression enabled on the storage controller."
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:60(literal)
msgid "netapp_nocompression"
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:62(td)
msgid "Limit the candidate volume list to only the ones that have compression disabled on the storage controller."
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:65(literal)
msgid "netapp_thin_provisioned"
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:67(td)
msgid "Limit the candidate volume list to only the ones that support thin provisioning on the storage controller."
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:70(literal)
msgid "netapp_thick_provisioned"
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_extraspecs.xml:72(td)
msgid "Limit the candidate volume list to only the ones that support thick provisioning on the storage controller."
msgstr ""
#: ./doc/common/tables/ceilometer-nova_cells.xml:7(caption)
msgid "Description of nova cells configuration options"
msgstr ""
#: ./doc/common/tables/ceilometer-nova_cells.xml:18(th) ./doc/common/tables/nova-scheduler.xml:125(th) ./doc/common/tables/nova-upgrade_levels.xml:18(th) ./doc/common/tables/nova-cells.xml:18(th) ./doc/common/tables/nova-rpc_all.xml:201(th) ./doc/common/tables/nova-quota.xml:81(th) ./doc/common/tables/nova-rpc.xml:61(th)
msgid "[cells]"
msgstr ""
#: ./doc/common/tables/ceilometer-nova_cells.xml:21(td) ./doc/common/tables/nova-quota.xml:84(td)
msgid "bandwidth_update_interval = 600"
msgstr ""
#: ./doc/common/tables/ceilometer-nova_cells.xml:22(td) ./doc/common/tables/nova-quota.xml:85(td)
msgid "(IntOpt) Seconds between bandwidth updates for cells."
msgstr ""
#: ./doc/common/tables/ceilometer-nova_cells.xml:25(td) ./doc/common/tables/nova-cells.xml:21(td)
msgid "call_timeout = 60"
msgstr ""
#: ./doc/common/tables/ceilometer-nova_cells.xml:26(td) ./doc/common/tables/nova-cells.xml:22(td)
msgid "(IntOpt) Seconds to wait for response from a call to a cell."
msgstr ""
#: ./doc/common/tables/ceilometer-nova_cells.xml:29(td) ./doc/common/tables/nova-cells.xml:25(td)
msgid "capabilities = hypervisor=xenserver;kvm, os=linux;windows"
msgstr ""
#: ./doc/common/tables/ceilometer-nova_cells.xml:30(td) ./doc/common/tables/nova-cells.xml:26(td)
msgid "(ListOpt) Key/Multi-value list with the capabilities of the cell"
msgstr ""
#: ./doc/common/tables/ceilometer-nova_cells.xml:33(td) ./doc/common/tables/nova-cells.xml:29(td)
msgid "cell_type = compute"
msgstr ""
#: ./doc/common/tables/ceilometer-nova_cells.xml:34(td) ./doc/common/tables/nova-cells.xml:30(td)
msgid "(StrOpt) Type of cell: api or compute"
msgstr ""
#: ./doc/common/tables/ceilometer-nova_cells.xml:37(td) ./doc/common/tables/nova-cells.xml:45(td) ./doc/common/tables/keystone-ssl.xml:76(td)
msgid "enable = False"
msgstr ""
#: ./doc/common/tables/ceilometer-nova_cells.xml:38(td) ./doc/common/tables/nova-cells.xml:46(td)
msgid "(BoolOpt) Enable cell functionality"
msgstr ""
#: ./doc/common/tables/ceilometer-nova_cells.xml:41(td) ./doc/common/tables/nova-cells.xml:57(td)
msgid "manager = nova.cells.manager.CellsManager"
msgstr ""
#: ./doc/common/tables/ceilometer-nova_cells.xml:42(td) ./doc/common/tables/nova-cells.xml:58(td)
msgid "(StrOpt) Manager for cells"
msgstr ""
#: ./doc/common/tables/ceilometer-nova_cells.xml:45(td) ./doc/common/tables/nova-cells.xml:65(td)
msgid "mute_child_interval = 300"
msgstr ""
#: ./doc/common/tables/ceilometer-nova_cells.xml:46(td) ./doc/common/tables/nova-cells.xml:66(td)
msgid "(IntOpt) Number of seconds after which a lack of capability and capacity updates signals the child cell is to be treated as a mute."
msgstr ""
#: ./doc/common/tables/ceilometer-nova_cells.xml:49(td) ./doc/common/tables/nova-cells.xml:77(td)
msgid "name = nova"
msgstr ""
#: ./doc/common/tables/ceilometer-nova_cells.xml:50(td) ./doc/common/tables/nova-cells.xml:78(td)
msgid "(StrOpt) Name of this cell"
msgstr ""
#: ./doc/common/tables/ceilometer-nova_cells.xml:53(td) ./doc/common/tables/nova-cells.xml:85(td)
msgid "reserve_percent = 10.0"
msgstr ""
#: ./doc/common/tables/ceilometer-nova_cells.xml:54(td) ./doc/common/tables/nova-cells.xml:86(td)
msgid "(FloatOpt) Percentage of cell capacity to hold in reserve. Affects both memory and disk utilization"
msgstr ""
#: ./doc/common/tables/ceilometer-nova_cells.xml:57(td) ./doc/common/tables/nova-cells.xml:89(td)
msgid "topic = cells"
msgstr ""
#: ./doc/common/tables/ceilometer-nova_cells.xml:58(td) ./doc/common/tables/nova-cells.xml:90(td)
msgid "(StrOpt) The topic cells nodes listen on"
msgstr ""
#: ./doc/common/tables/swift-container-reconciler-app-proxy-server.xml:8(literal) ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:8(literal) ./doc/common/tables/swift-object-expirer-app-proxy-server.xml:8(literal)
msgid "[app-proxy-server]"
msgstr ""
#: ./doc/common/tables/swift-container-reconciler-app-proxy-server.xml:20(td) ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:136(td) ./doc/common/tables/swift-object-expirer-app-proxy-server.xml:20(td)
msgid "use = egg:swift#proxy"
msgstr ""
#: ./doc/common/tables/trove-qpid.xml:7(caption) ./doc/common/tables/heat-qpid.xml:7(caption) ./doc/common/tables/nova-qpid.xml:7(caption) ./doc/common/tables/glance-qpid.xml:7(caption) ./doc/common/tables/sahara-qpid.xml:7(caption) ./doc/common/tables/neutron-qpid.xml:7(caption) ./doc/common/tables/keystone-qpid.xml:7(caption) ./doc/common/tables/ceilometer-qpid.xml:7(caption)
msgid "Description of Qpid configuration options"
msgstr ""
#: ./doc/common/tables/trove-qpid.xml:21(td) ./doc/common/tables/heat-qpid.xml:21(td) ./doc/common/tables/nova-qpid.xml:21(td) ./doc/common/tables/glance-qpid.xml:21(td) ./doc/common/tables/cinder-rpc.xml:77(td) ./doc/common/tables/nova-rpc_all.xml:61(td) ./doc/common/tables/sahara-qpid.xml:21(td) ./doc/common/tables/neutron-qpid.xml:21(td) ./doc/common/tables/keystone-qpid.xml:21(td) ./doc/common/tables/ceilometer-qpid.xml:21(td)
msgid "qpid_heartbeat = 60"
msgstr ""
#: ./doc/common/tables/trove-qpid.xml:22(td)
msgid "(IntOpt) Seconds between connection keepalive heartbeats"
msgstr ""
#: ./doc/common/tables/trove-qpid.xml:25(td) ./doc/common/tables/heat-qpid.xml:25(td) ./doc/common/tables/nova-qpid.xml:25(td) ./doc/common/tables/glance-qpid.xml:25(td) ./doc/common/tables/cinder-rpc.xml:81(td) ./doc/common/tables/nova-rpc_all.xml:65(td) ./doc/common/tables/sahara-qpid.xml:25(td) ./doc/common/tables/neutron-qpid.xml:25(td) ./doc/common/tables/keystone-qpid.xml:25(td) ./doc/common/tables/ceilometer-qpid.xml:25(td)
msgid "qpid_hostname = localhost"
msgstr ""
#: ./doc/common/tables/trove-qpid.xml:26(td)
msgid "(StrOpt) Qpid broker hostname"
msgstr ""
#: ./doc/common/tables/trove-qpid.xml:29(td) ./doc/common/tables/heat-qpid.xml:29(td) ./doc/common/tables/nova-qpid.xml:29(td) ./doc/common/tables/glance-qpid.xml:29(td) ./doc/common/tables/cinder-rpc.xml:85(td) ./doc/common/tables/nova-rpc_all.xml:69(td) ./doc/common/tables/sahara-qpid.xml:29(td) ./doc/common/tables/neutron-qpid.xml:29(td) ./doc/common/tables/keystone-qpid.xml:29(td) ./doc/common/tables/ceilometer-qpid.xml:29(td)
msgid "qpid_hosts = $qpid_hostname:$qpid_port"
msgstr ""
#: ./doc/common/tables/trove-qpid.xml:30(td)
msgid "(ListOpt) Qpid HA cluster host:port pairs"
msgstr ""
#: ./doc/common/tables/trove-qpid.xml:33(td) ./doc/common/tables/heat-qpid.xml:33(td) ./doc/common/tables/nova-qpid.xml:33(td) ./doc/common/tables/glance-qpid.xml:33(td) ./doc/common/tables/cinder-rpc.xml:89(td) ./doc/common/tables/nova-rpc_all.xml:73(td) ./doc/common/tables/sahara-qpid.xml:33(td) ./doc/common/tables/neutron-qpid.xml:33(td) ./doc/common/tables/keystone-qpid.xml:33(td) ./doc/common/tables/ceilometer-qpid.xml:33(td)
msgid "qpid_password ="
msgstr ""
#: ./doc/common/tables/trove-qpid.xml:34(td)
msgid "(StrOpt) Password for qpid connection"
msgstr ""
#: ./doc/common/tables/trove-qpid.xml:37(td) ./doc/common/tables/heat-qpid.xml:37(td) ./doc/common/tables/nova-qpid.xml:37(td) ./doc/common/tables/glance-qpid.xml:37(td) ./doc/common/tables/cinder-rpc.xml:93(td) ./doc/common/tables/nova-rpc_all.xml:77(td) ./doc/common/tables/sahara-qpid.xml:37(td) ./doc/common/tables/neutron-qpid.xml:37(td) ./doc/common/tables/keystone-qpid.xml:37(td) ./doc/common/tables/ceilometer-qpid.xml:37(td)
msgid "qpid_port = 5672"
msgstr ""
#: ./doc/common/tables/trove-qpid.xml:38(td)
msgid "(IntOpt) Qpid broker port"
msgstr ""
#: ./doc/common/tables/trove-qpid.xml:41(td) ./doc/common/tables/heat-qpid.xml:41(td) ./doc/common/tables/nova-qpid.xml:41(td) ./doc/common/tables/glance-qpid.xml:41(td) ./doc/common/tables/cinder-rpc.xml:97(td) ./doc/common/tables/nova-rpc_all.xml:81(td) ./doc/common/tables/sahara-qpid.xml:41(td) ./doc/common/tables/neutron-qpid.xml:41(td) ./doc/common/tables/keystone-qpid.xml:41(td) ./doc/common/tables/ceilometer-qpid.xml:41(td)
msgid "qpid_protocol = tcp"
msgstr ""
#: ./doc/common/tables/trove-qpid.xml:42(td)
msgid "(StrOpt) Transport to use, either 'tcp' or 'ssl'"
msgstr ""
#: ./doc/common/tables/trove-qpid.xml:45(td) ./doc/common/tables/heat-qpid.xml:45(td) ./doc/common/tables/nova-qpid.xml:49(td) ./doc/common/tables/glance-qpid.xml:45(td) ./doc/common/tables/cinder-rpc.xml:101(td) ./doc/common/tables/nova-rpc_all.xml:89(td) ./doc/common/tables/sahara-qpid.xml:45(td) ./doc/common/tables/neutron-qpid.xml:45(td) ./doc/common/tables/keystone-qpid.xml:45(td) ./doc/common/tables/ceilometer-qpid.xml:45(td)
msgid "qpid_sasl_mechanisms ="
msgstr ""
#: ./doc/common/tables/trove-qpid.xml:46(td)
msgid "(StrOpt) Space separated list of SASL mechanisms to use for auth"
msgstr ""
#: ./doc/common/tables/trove-qpid.xml:49(td) ./doc/common/tables/heat-qpid.xml:49(td) ./doc/common/tables/nova-qpid.xml:53(td) ./doc/common/tables/glance-qpid.xml:49(td) ./doc/common/tables/cinder-rpc.xml:105(td) ./doc/common/tables/nova-rpc_all.xml:93(td) ./doc/common/tables/sahara-qpid.xml:49(td) ./doc/common/tables/neutron-qpid.xml:49(td) ./doc/common/tables/keystone-qpid.xml:49(td) ./doc/common/tables/ceilometer-qpid.xml:49(td)
msgid "qpid_tcp_nodelay = True"
msgstr ""
#: ./doc/common/tables/trove-qpid.xml:50(td)
msgid "(BoolOpt) Disable Nagle algorithm"
msgstr ""
#: ./doc/common/tables/trove-qpid.xml:53(td) ./doc/common/tables/heat-qpid.xml:57(td) ./doc/common/tables/nova-qpid.xml:61(td) ./doc/common/tables/glance-qpid.xml:57(td) ./doc/common/tables/cinder-rpc.xml:113(td) ./doc/common/tables/nova-rpc_all.xml:101(td) ./doc/common/tables/sahara-qpid.xml:57(td) ./doc/common/tables/neutron-qpid.xml:57(td) ./doc/common/tables/keystone-qpid.xml:57(td) ./doc/common/tables/ceilometer-qpid.xml:57(td)
msgid "qpid_username ="
msgstr ""
#: ./doc/common/tables/trove-qpid.xml:54(td)
msgid "(StrOpt) Username for qpid connection"
msgstr ""
#: ./doc/common/tables/keystone-api.xml:7(caption) ./doc/common/tables/trove-api.xml:7(caption) ./doc/common/tables/glance-api.xml:7(caption) ./doc/common/tables/ceilometer-api.xml:7(caption) ./doc/common/tables/heat-api.xml:7(caption) ./doc/common/tables/cinder-api.xml:7(caption) ./doc/common/tables/nova-api.xml:7(caption) ./doc/common/tables/neutron-api.xml:7(caption)
msgid "Description of API configuration options"
msgstr ""
#: ./doc/common/tables/keystone-api.xml:21(td)
msgid "admin_bind_host = 0.0.0.0"
msgstr ""
#: ./doc/common/tables/keystone-api.xml:22(td)
msgid "(StrOpt) The IP address of the network interface for the admin service to listen on."
msgstr ""
#: ./doc/common/tables/keystone-api.xml:25(td)
msgid "admin_endpoint = None"
msgstr ""
#: ./doc/common/tables/keystone-api.xml:26(td)
msgid "(StrOpt) The base admin endpoint URL for Keystone that is advertised to clients (NOTE: this does NOT affect how Keystone listens for connections). Defaults to the base host URL of the request. E.g. a request to http://server:35357/v2.0/users will default to http://server:35357. You should only need to set this value if the base URL contains a path (e.g. /prefix/v2.0) or the endpoint should be found on a different server."
msgstr ""
#: ./doc/common/tables/keystone-api.xml:29(td)
msgid "admin_port = 35357"
msgstr ""
#: ./doc/common/tables/keystone-api.xml:30(td)
msgid "(IntOpt) The port number which the admin service listens on."
msgstr ""
#: ./doc/common/tables/keystone-api.xml:33(td)
msgid "admin_token = ADMIN"
msgstr ""
#: ./doc/common/tables/keystone-api.xml:34(td)
msgid "(StrOpt) A \"shared secret\" that can be used to bootstrap Keystone. This \"token\" does not represent a user, and carries no explicit authorization. To disable in production (highly recommended), remove AdminTokenAuthMiddleware from your paste application pipelines (for example, in keystone-paste.ini)."
msgstr ""
#: ./doc/common/tables/keystone-api.xml:37(td)
msgid "admin_workers = 1"
msgstr ""
#: ./doc/common/tables/keystone-api.xml:38(td) ./doc/common/tables/keystone-conf-changes.xml:17(td)
msgid "(IntOpt) The number of worker processes to serve the admin WSGI application"
msgstr ""
#: ./doc/common/tables/keystone-api.xml:41(td)
msgid "compute_port = 8774"
msgstr ""
#: ./doc/common/tables/keystone-api.xml:42(td)
msgid "(IntOpt) (Deprecated) The port which the OpenStack Compute service listens on. This option was only used for string replacement in the templated catalog backend. Templated catalogs should replace the \"$(compute_port)s\" substitution with the static port of the compute service. As of Juno, this option is deprecated and will be removed in the L release."
msgstr ""
#: ./doc/common/tables/keystone-api.xml:45(td)
msgid "domain_id_immutable = True"
msgstr ""
#: ./doc/common/tables/keystone-api.xml:46(td)
msgid "(BoolOpt) Set this to false if you want to enable the ability for user, group and project entities to be moved between domains by updating their domain_id. Allowing such movement is not recommended if the scope of a domain admin is being restricted by use of an appropriate policy file (see policy.v3cloudsample as an example)."
msgstr ""
#: ./doc/common/tables/keystone-api.xml:50(td)
msgid "(IntOpt) The maximum number of entities that will be returned in a collection, with no limit set by default. This global limit may be then overridden for a specific driver, by specifying a list_limit in the appropriate section (e.g. [assignment])."
msgstr ""
#: ./doc/common/tables/keystone-api.xml:53(td)
msgid "max_param_size = 64"
msgstr ""
#: ./doc/common/tables/keystone-api.xml:54(td)
msgid "(IntOpt) Limit the sizes of user &amp; project ID/names."
msgstr ""
#: ./doc/common/tables/keystone-api.xml:57(td) ./doc/common/tables/neutron-api.xml:45(td)
msgid "max_request_body_size = 114688"
msgstr ""
#: ./doc/common/tables/keystone-api.xml:58(td)
msgid "(IntOpt) Enforced by optional sizelimit middleware (keystone.middleware:RequestBodySizeLimiter)."
msgstr ""
#: ./doc/common/tables/keystone-api.xml:61(td)
msgid "max_token_size = 8192"
msgstr ""
#: ./doc/common/tables/keystone-api.xml:62(td)
msgid "(IntOpt) Similar to max_param_size, but provides an exception for token values."
msgstr ""
#: ./doc/common/tables/keystone-api.xml:65(td)
msgid "member_role_id = 9fe2ff9ee4384b1894a90878d3e92bab"
msgstr ""
#: ./doc/common/tables/keystone-api.xml:66(td)
msgid "(StrOpt) During a SQL upgrade member_role_id will be used to create a new role that will replace records in the assignment table with explicit role grants. After migration, the member_role_id will be used in the API add_user_to_project."
msgstr ""
#: ./doc/common/tables/keystone-api.xml:69(td)
msgid "member_role_name = _member_"
msgstr ""
#: ./doc/common/tables/keystone-api.xml:70(td)
msgid "(StrOpt) During a SQL upgrade member_role_name will be used to create a new role that will replace records in the assignment table with explicit role grants. After migration, member_role_name will be ignored."
msgstr ""
#: ./doc/common/tables/keystone-api.xml:73(td)
msgid "public_bind_host = 0.0.0.0"
msgstr ""
#: ./doc/common/tables/keystone-api.xml:74(td)
msgid "(StrOpt) The IP address of the network interface for the public service to listen on."
msgstr ""
#: ./doc/common/tables/keystone-api.xml:77(td)
msgid "public_endpoint = None"
msgstr ""
#: ./doc/common/tables/keystone-api.xml:78(td)
msgid "(StrOpt) The base public endpoint URL for Keystone that is advertised to clients (NOTE: this does NOT affect how Keystone listens for connections). Defaults to the base host URL of the request. E.g. a request to http://server:5000/v2.0/users will default to http://server:5000. You should only need to set this value if the base URL contains a path (e.g. /prefix/v2.0) or the endpoint should be found on a different server."
msgstr ""
#: ./doc/common/tables/keystone-api.xml:81(td)
msgid "public_port = 5000"
msgstr ""
#: ./doc/common/tables/keystone-api.xml:82(td)
msgid "(IntOpt) The port number which the public service listens on."
msgstr ""
#: ./doc/common/tables/keystone-api.xml:85(td)
msgid "public_workers = 1"
msgstr ""
#: ./doc/common/tables/keystone-api.xml:86(td) ./doc/common/tables/keystone-conf-changes.xml:21(td)
msgid "(IntOpt) The number of worker processes to serve the public WSGI application"
msgstr ""
#: ./doc/common/tables/keystone-api.xml:89(td)
msgid "strict_password_check = False"
msgstr ""
#: ./doc/common/tables/keystone-api.xml:90(td) ./doc/common/tables/keystone-conf-changes.xml:25(td)
msgid "(BoolOpt) If set to true, strict password length checking is performed for password manipulation. If a password exceeds the maximum length, the operation will fail with an HTTP 403 Forbidden error. If set to false, passwords are automatically truncated to the maximum length."
msgstr ""
#: ./doc/common/tables/keystone-api.xml:93(td)
msgid "tcp_keepalive = False"
msgstr ""
#: ./doc/common/tables/keystone-api.xml:94(td)
msgid "(BoolOpt) Set this to true if you want to enable TCP_KEEPALIVE on server sockets, i.e. sockets used by the Keystone wsgi server for client connections."
msgstr ""
#: ./doc/common/tables/keystone-api.xml:97(td) ./doc/common/tables/trove-api.xml:85(td) ./doc/common/tables/cinder-common.xml:149(td) ./doc/common/tables/neutron-wsgi.xml:29(td) ./doc/common/tables/glance-wsgi.xml:29(td) ./doc/common/tables/nova-wsgi.xml:37(td)
msgid "tcp_keepidle = 600"
msgstr ""
#: ./doc/common/tables/keystone-api.xml:98(td)
msgid "(IntOpt) Sets the value of TCP_KEEPIDLE in seconds for each server socket. Only applies if tcp_keepalive is true. Not supported on OS X."
msgstr ""
#: ./doc/common/tables/keystone-api.xml:101(th)
msgid "[endpoint_filter]"
msgstr ""
#: ./doc/common/tables/keystone-api.xml:104(td)
msgid "driver = keystone.contrib.endpoint_filter.backends.sql.EndpointFilter"
msgstr ""
#: ./doc/common/tables/keystone-api.xml:105(td)
msgid "(StrOpt) Endpoint Filter backend driver"
msgstr ""
#: ./doc/common/tables/keystone-api.xml:108(td)
msgid "return_all_endpoints_if_no_filter = True"
msgstr ""
#: ./doc/common/tables/keystone-api.xml:109(td)
msgid "(BoolOpt) Toggle to return all active endpoints if no filter exists."
msgstr ""
#: ./doc/common/tables/keystone-api.xml:112(th) ./doc/common/tables/heat-api.xml:142(th) ./doc/common/tables/glance-paste.xml:18(th)
msgid "[paste_deploy]"
msgstr ""
#: ./doc/common/tables/keystone-api.xml:115(td)
msgid "config_file = keystone-paste.ini"
msgstr ""
#: ./doc/common/tables/keystone-api.xml:116(td)
msgid "(StrOpt) Name of the paste configuration file that defines the available pipelines."
msgstr ""
#: ./doc/common/tables/swift-object-expirer-pipeline-main.xml:8(literal) ./doc/common/tables/swift-proxy-server-pipeline-main.xml:8(literal) ./doc/common/tables/swift-container-server-pipeline-main.xml:8(literal) ./doc/common/tables/swift-object-server-pipeline-main.xml:8(literal) ./doc/common/tables/swift-account-server-pipeline-main.xml:8(literal) ./doc/common/tables/swift-container-reconciler-pipeline-main.xml:8(literal)
msgid "[pipeline-main]"
msgstr ""
#: ./doc/common/tables/swift-object-expirer-pipeline-main.xml:8(literal) ./doc/common/tables/swift-object-expirer-filter-catch_errors.xml:8(literal) ./doc/common/tables/swift-object-expirer-object-expirer.xml:8(literal) ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:8(literal) ./doc/common/tables/swift-object-expirer-DEFAULT.xml:8(literal) ./doc/common/tables/swift-object-expirer-filter-cache.xml:8(literal) ./doc/common/tables/swift-object-expirer-app-proxy-server.xml:8(literal)
msgid "object-expirer.conf"
msgstr ""
#: ./doc/common/tables/swift-object-expirer-pipeline-main.xml:20(td) ./doc/common/tables/swift-container-reconciler-pipeline-main.xml:20(td)
msgid "pipeline = catch_errors proxy-logging cache proxy-server"
msgstr ""
#: ./doc/common/tables/nova-ironic.xml:7(caption)
msgid "Description of bare metal configuration options"
msgstr ""
#: ./doc/common/tables/nova-ironic.xml:18(th)
msgid "[ironic]"
msgstr ""
#: ./doc/common/tables/nova-ironic.xml:21(td)
msgid "admin_auth_token = None"
msgstr ""
#: ./doc/common/tables/nova-ironic.xml:22(td) ./doc/common/tables/nova-conf-changes.xml:125(td)
msgid "(StrOpt) Ironic keystone auth token."
msgstr ""
#: ./doc/common/tables/nova-ironic.xml:26(td) ./doc/common/tables/nova-conf-changes.xml:129(td)
msgid "(StrOpt) Ironic keystone admin password."
msgstr ""
#: ./doc/common/tables/nova-ironic.xml:29(td) ./doc/common/tables/glance-registry.xml:25(td) ./doc/common/tables/nova-neutron.xml:40(td) ./doc/common/tables/neutron-common.xml:25(td) ./doc/common/tables/neutron-common.xml:211(td)
msgid "admin_tenant_name = None"
msgstr ""
#: ./doc/common/tables/nova-ironic.xml:30(td) ./doc/common/tables/nova-conf-changes.xml:133(td)
msgid "(StrOpt) Ironic keystone tenant name."
msgstr ""
#: ./doc/common/tables/nova-ironic.xml:33(td)
msgid "admin_url = None"
msgstr ""
#: ./doc/common/tables/nova-ironic.xml:34(td) ./doc/common/tables/nova-conf-changes.xml:137(td)
msgid "(StrOpt) Keystone public API endpoint."
msgstr ""
#: ./doc/common/tables/nova-ironic.xml:37(td) ./doc/common/tables/nova-neutron.xml:48(td) ./doc/common/tables/neutron-embrane_lb.xml:25(td)
msgid "admin_username = None"
msgstr ""
#: ./doc/common/tables/nova-ironic.xml:38(td) ./doc/common/tables/nova-conf-changes.xml:141(td)
msgid "(StrOpt) Ironic keystone admin name"
msgstr ""
#: ./doc/common/tables/nova-ironic.xml:41(td)
msgid "api_endpoint = None"
msgstr ""
#: ./doc/common/tables/nova-ironic.xml:42(td) ./doc/common/tables/nova-conf-changes.xml:145(td)
msgid "(StrOpt) URL for Ironic API endpoint."
msgstr ""
#: ./doc/common/tables/nova-ironic.xml:45(td)
msgid "api_max_retries = 60"
msgstr ""
#: ./doc/common/tables/nova-ironic.xml:46(td) ./doc/common/tables/nova-conf-changes.xml:149(td)
msgid "(IntOpt) How many retries when a request does conflict."
msgstr ""
#: ./doc/common/tables/nova-ironic.xml:49(td)
msgid "api_retry_interval = 2"
msgstr ""
#: ./doc/common/tables/nova-ironic.xml:50(td) ./doc/common/tables/nova-conf-changes.xml:153(td)
msgid "(IntOpt) How often to retry in seconds when a request does conflict"
msgstr ""
#: ./doc/common/tables/nova-ironic.xml:53(td)
msgid "api_version = 1"
msgstr ""
#: ./doc/common/tables/nova-ironic.xml:54(td) ./doc/common/tables/nova-conf-changes.xml:157(td)
msgid "(IntOpt) Version of Ironic API service endpoint."
msgstr ""
#: ./doc/common/tables/nova-ironic.xml:57(td)
msgid "client_log_level = None"
msgstr ""
#: ./doc/common/tables/nova-ironic.xml:58(td) ./doc/common/tables/nova-conf-changes.xml:161(td)
msgid "(StrOpt) Log level override for ironicclient. Set this in order to override the global \"default_log_levels\", \"verbose\", and \"debug\" settings."
msgstr ""
#: ./doc/common/tables/swift-container-server-container-auditor.xml:8(literal)
msgid "[container-auditor]"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-auditor.xml:20(td)
msgid "containers_per_second = 200"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-auditor.xml:21(td)
msgid "Maximum containers audited per second. Should be tuned according to individual system specs. 0 is unlimited. mounted to prevent accidentally writing to the root device process simultaneously (it will actually accept(2) N + 1). Setting this to one (1) will only handle one request at a time, without accepting another request concurrently. By increasing the number of workers to a much higher value, one can reduce the impact of slow file system operations in one request from negatively impacting other requests."
msgstr ""
#: ./doc/common/tables/swift-container-server-container-auditor.xml:24(td) ./doc/common/tables/swift-account-server-account-auditor.xml:24(td)
msgid "interval = 1800"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-auditor.xml:40(td)
msgid "log_name = container-auditor"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-auditor.xml:44(td) ./doc/common/tables/swift-container-server-filter-recon.xml:20(td) ./doc/common/tables/swift-object-expirer-object-expirer.xml:50(td) ./doc/common/tables/swift-account-server-filter-recon.xml:20(td) ./doc/common/tables/swift-account-server-account-replicator.xml:72(td) ./doc/common/tables/swift-container-server-container-updater.xml:57(td) ./doc/common/tables/swift-object-server-object-replicator.xml:68(td) ./doc/common/tables/swift-object-server-object-auditor.xml:60(td) ./doc/common/tables/swift-container-server-container-replicator.xml:64(td) ./doc/common/tables/swift-account-server-account-auditor.xml:44(td) ./doc/common/tables/swift-object-server-filter-recon.xml:20(td) ./doc/common/tables/swift-object-server-object-updater.xml:48(td)
msgid "recon_cache_path = /var/cache/swift"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-auditor.xml:45(td) ./doc/common/tables/swift-container-server-filter-recon.xml:21(td) ./doc/common/tables/swift-object-expirer-object-expirer.xml:51(td) ./doc/common/tables/swift-account-server-filter-recon.xml:21(td) ./doc/common/tables/swift-account-server-account-replicator.xml:73(td) ./doc/common/tables/swift-container-server-container-updater.xml:58(td) ./doc/common/tables/swift-object-server-object-replicator.xml:69(td) ./doc/common/tables/swift-object-server-object-auditor.xml:61(td) ./doc/common/tables/swift-container-server-container-replicator.xml:65(td) ./doc/common/tables/swift-account-server-account-auditor.xml:45(td) ./doc/common/tables/swift-object-server-filter-recon.xml:21(td) ./doc/common/tables/swift-object-server-object-updater.xml:49(td)
msgid "Directory where stats for a few items will be stored"
msgstr ""
#: ./doc/common/tables/glance-rpc.xml:21(td)
msgid "allowed_rpc_exception_modules = openstack.common.exception, glance.common.exception, exceptions"
msgstr ""
#: ./doc/common/tables/glance-rpc.xml:22(td) ./doc/common/tables/keystone-rpc.xml:22(td) ./doc/common/tables/trove-rpc.xml:22(td)
msgid "(ListOpt) Modules of exceptions that are permitted to be recreatedupon receiving exception data from an rpc call."
msgstr ""
#: ./doc/common/tables/neutron-policy.xml:21(td)
msgid "allow_overlapping_ips = False"
msgstr ""
#: ./doc/common/tables/neutron-policy.xml:22(td)
msgid "(BoolOpt) Allow overlapping IP support in Neutron"
msgstr ""
#: ./doc/common/tables/neutron-policy.xml:26(td)
msgid "(StrOpt) The policy file to use"
msgstr ""
#: ./doc/common/tables/nova-spice.xml:7(caption)
msgid "Description of SPICE configuration options"
msgstr ""
#: ./doc/common/tables/nova-spice.xml:18(th)
msgid "[spice]"
msgstr ""
#: ./doc/common/tables/nova-spice.xml:21(td)
msgid "agent_enabled = True"
msgstr ""
#: ./doc/common/tables/nova-spice.xml:22(td)
msgid "(BoolOpt) Enable spice guest agent support"
msgstr ""
#: ./doc/common/tables/nova-spice.xml:25(td) ./doc/common/tables/keystone-os_inherit.xml:21(td) ./doc/common/tables/nova-rdp.xml:21(td) ./doc/common/tables/nova-serial_console.xml:25(td) ./doc/common/tables/nova-apiv3.xml:21(td) ./doc/common/tables/neutron-fwaas.xml:21(td) ./doc/common/tables/keystone-cache.xml:37(td) ./doc/common/tables/nova-ephemeral_storage_encryption.xml:25(td)
msgid "enabled = False"
msgstr ""
#: ./doc/common/tables/nova-spice.xml:26(td)
msgid "(BoolOpt) Enable spice related features"
msgstr ""
#: ./doc/common/tables/nova-spice.xml:29(td)
msgid "html5proxy_base_url = http://127.0.0.1:6082/spice_auto.html"
msgstr ""
#: ./doc/common/tables/nova-spice.xml:30(td)
msgid "(StrOpt) Location of spice HTML5 console proxy, in the form \"http://127.0.0.1:6082/spice_auto.html\""
msgstr ""
#: ./doc/common/tables/nova-spice.xml:33(td)
msgid "keymap = en-us"
msgstr ""
#: ./doc/common/tables/nova-spice.xml:34(td)
msgid "(StrOpt) Keymap for spice"
msgstr ""
#: ./doc/common/tables/nova-spice.xml:37(td)
msgid "server_listen = 127.0.0.1"
msgstr ""
#: ./doc/common/tables/nova-spice.xml:38(td)
msgid "(StrOpt) IP address on which instance spice server should listen"
msgstr ""
#: ./doc/common/tables/nova-spice.xml:41(td)
msgid "server_proxyclient_address = 127.0.0.1"
msgstr ""
#: ./doc/common/tables/nova-spice.xml:42(td)
msgid "(StrOpt) The address to which proxy clients (like nova-spicehtml5proxy) should connect"
msgstr ""
#: ./doc/common/tables/heat-clients_heat.xml:7(caption)
msgid "Description of heat clients configuration options"
msgstr ""
#: ./doc/common/tables/heat-clients_heat.xml:18(th)
msgid "[clients_heat]"
msgstr ""
#: ./doc/common/tables/heat-clients_heat.xml:41(td) ./doc/common/tables/neutron-ml2_ncs.xml:29(td) ./doc/common/tables/neutron-ml2_odl.xml:33(td)
msgid "url = None"
msgstr ""
#: ./doc/common/tables/heat-clients_heat.xml:42(td)
msgid "(StrOpt) Optional heat url in format like http://0.0.0.0:8004/v1/%(tenant_id)s."
msgstr ""
#: ./doc/common/tables/nova-xen.xml:7(caption)
msgid "Description of Xen configuration options"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:21(td)
msgid "console_driver = nova.console.xvp.XVPConsoleProxy"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:22(td)
msgid "(StrOpt) Driver to use for the console proxy"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:25(td)
msgid "console_vmrc_error_retries = 10"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:26(td)
msgid "(IntOpt) Number of retries for retrieving VMRC information"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:29(td)
msgid "console_vmrc_port = 443"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:30(td)
msgid "(IntOpt) Port for VMware VMRC connections"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:33(td)
msgid "console_xvp_conf = /etc/xvp.conf"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:34(td)
msgid "(StrOpt) Generated XVP conf file"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:37(td)
msgid "console_xvp_conf_template = $pybasedir/nova/console/xvp.conf.template"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:38(td)
msgid "(StrOpt) XVP conf template"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:41(td)
msgid "console_xvp_log = /var/log/xvp.log"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:42(td)
msgid "(StrOpt) XVP log file"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:45(td)
msgid "console_xvp_multiplex_port = 5900"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:46(td)
msgid "(IntOpt) Port for XVP to multiplex VNC connections on"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:49(td)
msgid "console_xvp_pid = /var/run/xvp.pid"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:50(td)
msgid "(StrOpt) XVP master process pid file"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:53(td)
msgid "stub_compute = False"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:54(td)
msgid "(BoolOpt) Stub calls to compute worker for tests"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:57(th) ./doc/common/tables/nova-volumes.xml:98(th) ./doc/common/tables/nova-livemigration.xml:25(th) ./doc/common/tables/nova-libvirt.xml:29(th)
msgid "[libvirt]"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:60(td)
msgid "xen_hvmloader_path = /usr/lib/xen/boot/hvmloader"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:61(td)
msgid "(StrOpt) Location where the Xen hvmloader is kept"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:64(th) ./doc/common/tables/nova-volumes.xml:145(th)
msgid "[xenserver]"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:67(td)
msgid "agent_path = usr/sbin/xe-update-networking"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:68(td)
msgid "(StrOpt) Specifies the path in which the XenAPI guest agent should be located. If the agent is present, network configuration is not injected into the image. Used if compute_driver=xenapi.XenAPIDriver and flat_injected=True"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:71(td)
msgid "agent_resetnetwork_timeout = 60"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:72(td)
msgid "(IntOpt) Number of seconds to wait for agent reply to resetnetwork request"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:75(td)
msgid "agent_timeout = 30"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:76(td)
msgid "(IntOpt) Number of seconds to wait for agent reply"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:79(td)
msgid "agent_version_timeout = 300"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:80(td)
msgid "(IntOpt) Number of seconds to wait for agent to be fully operational"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:83(td)
msgid "cache_images = all"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:84(td)
msgid "(StrOpt) Cache glance images locally. `all` will cache all images, `some` will only cache images that have the image_property `cache_in_nova=True`, and `none` turns off caching entirely"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:87(td)
msgid "check_host = True"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:88(td)
msgid "(BoolOpt) Ensure compute service is running on host XenAPI connects to."
msgstr ""
#: ./doc/common/tables/nova-xen.xml:91(td)
msgid "connection_concurrent = 5"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:92(td)
msgid "(IntOpt) Maximum number of concurrent XenAPI connections. Used only if compute_driver=xenapi.XenAPIDriver"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:95(td) ./doc/common/tables/ceilometer-xenapi.xml:21(td)
msgid "connection_password = None"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:96(td)
msgid "(StrOpt) Password for connection to XenServer/Xen Cloud Platform. Used only if compute_driver=xenapi.XenAPIDriver"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:99(td) ./doc/common/tables/ceilometer-xenapi.xml:25(td)
msgid "connection_url = None"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:100(td)
msgid "(StrOpt) URL for connection to XenServer/Xen Cloud Platform. A special value of unix://local can be used to connect to the local unix socket. Required if compute_driver=xenapi.XenAPIDriver"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:103(td) ./doc/common/tables/ceilometer-xenapi.xml:29(td)
msgid "connection_username = root"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:104(td)
msgid "(StrOpt) Username for connection to XenServer/Xen Cloud Platform. Used only if compute_driver=xenapi.XenAPIDriver"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:107(td)
msgid "default_os_type = linux"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:108(td)
msgid "(StrOpt) Default OS type"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:111(td)
msgid "disable_agent = False"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:112(td)
msgid "(BoolOpt) Disables the use of the XenAPI agent in any image regardless of what image properties are present."
msgstr ""
#: ./doc/common/tables/nova-xen.xml:115(td)
msgid "image_compression_level = None"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:116(td)
msgid "(IntOpt) Compression level for images, e.g., 9 for gzip -9. Range is 1-9, 9 being most compressed but most CPU intensive on dom0."
msgstr ""
#: ./doc/common/tables/nova-xen.xml:119(td)
msgid "image_upload_handler = nova.virt.xenapi.image.glance.GlanceStore"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:120(td)
msgid "(StrOpt) Dom0 plugin driver used to handle image uploads."
msgstr ""
#: ./doc/common/tables/nova-xen.xml:123(td)
msgid "introduce_vdi_retry_wait = 20"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:124(td)
msgid "(IntOpt) Number of seconds to wait for an SR to settle if the VDI does not exist when first introduced"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:127(td)
msgid "ipxe_boot_menu_url = None"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:128(td)
msgid "(StrOpt) URL to the iPXE boot menu"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:131(td)
msgid "ipxe_mkisofs_cmd = mkisofs"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:132(td) ./doc/common/tables/nova-configdrive.xml:38(td)
msgid "(StrOpt) Name and optionally path of the tool used for ISO image creation"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:135(td)
msgid "ipxe_network_name = None"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:136(td)
msgid "(StrOpt) Name of network to use for booting iPXE ISOs"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:139(td)
msgid "iqn_prefix = iqn.2010-10.org.openstack"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:140(td)
msgid "(StrOpt) IQN Prefix"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:143(td) ./doc/common/tables/ceilometer-xenapi.xml:33(td)
msgid "login_timeout = 10"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:144(td) ./doc/common/tables/ceilometer-xenapi.xml:34(td) ./doc/common/tables/ceilometer-conf-changes.xml:181(td)
msgid "(IntOpt) Timeout in seconds for XenAPI login."
msgstr ""
#: ./doc/common/tables/nova-xen.xml:147(td)
msgid "max_kernel_ramdisk_size = 16777216"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:148(td)
msgid "(IntOpt) Maximum size in bytes of kernel or ramdisk images"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:151(td)
msgid "num_vbd_unplug_retries = 10"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:152(td)
msgid "(IntOpt) Maximum number of retries to unplug VBD"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:155(td)
msgid "ovs_integration_bridge = xapi1"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:156(td) ./doc/common/tables/nova-neutron.xml:77(td) ./doc/common/tables/nova-conf-changes.xml:245(td)
msgid "(StrOpt) Name of Integration Bridge used by Open vSwitch"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:159(td)
msgid "remap_vbd_dev = False"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:160(td)
msgid "(BoolOpt) Used to enable the remapping of VBD dev (Works around an issue in Ubuntu Maverick)"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:163(td)
msgid "remap_vbd_dev_prefix = sd"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:164(td)
msgid "(StrOpt) Specify prefix to remap VBD dev to (ex. /dev/xvdb -&gt; /dev/sdb)"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:167(td)
msgid "running_timeout = 60"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:168(td)
msgid "(IntOpt) Number of seconds to wait for instance to go to running state"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:171(td)
msgid "sparse_copy = True"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:172(td)
msgid "(BoolOpt) Whether to use sparse_copy for copying data on a resize down (False will use standard dd). This speeds up resizes down considerably since large runs of zeros won't have to be rsynced"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:175(td)
msgid "sr_base_path = /var/run/sr-mount"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:179(td)
msgid "sr_matching_filter = default-sr:true"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:180(td)
msgid "(StrOpt) Filter for finding the SR to be used to install guest instances on. To use the Local Storage in default XenServer/XCP installations set this flag to other-config:i18n-key=local-storage. To select an SR with a different matching criteria, you could set it to other-config:my_favorite_sr=true. On the other hand, to fall back on the Default SR, as displayed by XenCenter, set this flag to: default-sr:true"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:183(td)
msgid "target_host = None"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:184(td)
msgid "(StrOpt) The iSCSI Target Host"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:187(td)
msgid "target_port = 3260"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:188(td)
msgid "(StrOpt) The iSCSI Target Port, default is port 3260"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:191(td)
msgid "torrent_base_url = None"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:192(td)
msgid "(StrOpt) Base URL for torrent files."
msgstr ""
#: ./doc/common/tables/nova-xen.xml:195(td)
msgid "torrent_download_stall_cutoff = 600"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:196(td)
msgid "(IntOpt) Number of seconds a download can remain at the same progress percentage w/o being considered a stall"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:199(td)
msgid "torrent_images = none"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:200(td)
msgid "(StrOpt) Whether or not to download images via Bit Torrent (all|some|none)."
msgstr ""
#: ./doc/common/tables/nova-xen.xml:203(td)
msgid "torrent_listen_port_end = 6891"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:204(td)
msgid "(IntOpt) End of port range to listen on"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:207(td)
msgid "torrent_listen_port_start = 6881"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:208(td)
msgid "(IntOpt) Beginning of port range to listen on"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:211(td)
msgid "torrent_max_last_accessed = 86400"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:212(td)
msgid "(IntOpt) Cached torrent files not accessed within this number of seconds can be reaped"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:215(td)
msgid "torrent_max_seeder_processes_per_host = 1"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:216(td)
msgid "(IntOpt) Maximum number of seeder processes to run concurrently within a given dom0. (-1 = no limit)"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:219(td)
msgid "torrent_seed_chance = 1.0"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:220(td)
msgid "(FloatOpt) Probability that peer will become a seeder. (1.0 = 100%)"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:223(td)
msgid "torrent_seed_duration = 3600"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:224(td)
msgid "(IntOpt) Number of seconds after downloading an image via BitTorrent that it should be seeded for other peers."
msgstr ""
#: ./doc/common/tables/nova-xen.xml:227(td)
msgid "use_agent_default = False"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:228(td)
msgid "(BoolOpt) Determines if the XenAPI agent should be used when the image used does not contain a hint to declare if the agent is present or not. The hint is a glance property \"xenapi_use_agent\" that has the value \"True\" or \"False\". Note that waiting for the agent when it is not present will significantly increase server boot times."
msgstr ""
#: ./doc/common/tables/nova-xen.xml:231(td)
msgid "use_join_force = True"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:232(td)
msgid "(BoolOpt) To use for hosts with different CPUs"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:235(td)
msgid "vhd_coalesce_max_attempts = 20"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:236(td)
msgid "(IntOpt) Max number of times to poll for VHD to coalesce. Used only if compute_driver=xenapi.XenAPIDriver"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:239(td)
msgid "vhd_coalesce_poll_interval = 5.0"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:240(td)
msgid "(FloatOpt) The interval used for polling of coalescing vhds. Used only if compute_driver=xenapi.XenAPIDriver"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:243(td)
msgid "vif_driver = nova.virt.xenapi.vif.XenAPIBridgeDriver"
msgstr ""
#: ./doc/common/tables/nova-xen.xml:244(td)
msgid "(StrOpt) The XenAPI VIF driver using XenServer Network APIs."
msgstr ""
#: ./doc/common/tables/trove-amqp.xml:7(caption) ./doc/common/tables/heat-amqp.xml:7(caption) ./doc/common/tables/keystone-amqp.xml:7(caption) ./doc/common/tables/sahara-amqp.xml:7(caption) ./doc/common/tables/glance-amqp.xml:7(caption) ./doc/common/tables/ceilometer-amqp.xml:7(caption)
msgid "Description of AMQP configuration options"
msgstr ""
#: ./doc/common/tables/trove-amqp.xml:29(td)
msgid "conductor_manager = trove.conductor.manager.Manager"
msgstr ""
#: ./doc/common/tables/trove-amqp.xml:30(td) ./doc/common/tables/trove-conf-changes.xml:45(td)
msgid "(StrOpt) Qualified class name to use for conductor manager."
msgstr ""
#: ./doc/common/tables/trove-amqp.xml:33(td)
msgid "conductor_queue = trove-conductor"
msgstr ""
#: ./doc/common/tables/trove-amqp.xml:37(td) ./doc/common/tables/heat-amqp.xml:29(td) ./doc/common/tables/glance-rabbitmq.xml:21(td) ./doc/common/tables/ceilometer-exchange.xml:25(td) ./doc/common/tables/sahara-common.xml:34(td) ./doc/common/tables/cinder-rpc.xml:29(td) ./doc/common/tables/nova-rpc_all.xml:29(td) ./doc/common/tables/nova-rpc.xml:29(td)
msgid "control_exchange = openstack"
msgstr ""
#: ./doc/common/tables/trove-amqp.xml:38(td)
msgid "(StrOpt) AMQP exchange to connect to if using RabbitMQ or Qpid"
msgstr ""
#: ./doc/common/tables/trove-amqp.xml:42(td)
msgid "(BoolOpt) If passed, use a fake RabbitMQ provider"
msgstr ""
#: ./doc/common/tables/trove-amqp.xml:45(td) ./doc/common/tables/glance-rabbitmq.xml:33(td) ./doc/common/tables/heat-rabbitmq.xml:25(td) ./doc/common/tables/keystone-rabbitmq.xml:29(td) ./doc/common/tables/nova-kombu.xml:25(td) ./doc/common/tables/sahara-rpc.xml:25(td) ./doc/common/tables/cinder-rpc.xml:45(td) ./doc/common/tables/nova-rpc_all.xml:37(td) ./doc/common/tables/neutron-rabbitmq.xml:25(td) ./doc/common/tables/ceilometer-rabbitmq.xml:29(td)
msgid "kombu_ssl_ca_certs ="
msgstr ""
#: ./doc/common/tables/trove-amqp.xml:46(td)
msgid "(StrOpt) SSL certification authority file (valid only if SSL enabled)"
msgstr ""
#: ./doc/common/tables/trove-amqp.xml:49(td) ./doc/common/tables/glance-rabbitmq.xml:37(td) ./doc/common/tables/heat-rabbitmq.xml:29(td) ./doc/common/tables/keystone-rabbitmq.xml:33(td) ./doc/common/tables/nova-kombu.xml:29(td) ./doc/common/tables/sahara-rpc.xml:29(td) ./doc/common/tables/cinder-rpc.xml:49(td) ./doc/common/tables/nova-rpc_all.xml:41(td) ./doc/common/tables/neutron-rabbitmq.xml:29(td) ./doc/common/tables/ceilometer-rabbitmq.xml:33(td)
msgid "kombu_ssl_certfile ="
msgstr ""
#: ./doc/common/tables/trove-amqp.xml:50(td)
msgid "(StrOpt) SSL cert file (valid only if SSL enabled)"
msgstr ""
#: ./doc/common/tables/trove-amqp.xml:53(td) ./doc/common/tables/glance-rabbitmq.xml:41(td) ./doc/common/tables/heat-rabbitmq.xml:33(td) ./doc/common/tables/keystone-rabbitmq.xml:37(td) ./doc/common/tables/nova-kombu.xml:33(td) ./doc/common/tables/sahara-rpc.xml:33(td) ./doc/common/tables/cinder-rpc.xml:53(td) ./doc/common/tables/nova-rpc_all.xml:45(td) ./doc/common/tables/neutron-rabbitmq.xml:33(td) ./doc/common/tables/ceilometer-rabbitmq.xml:37(td)
msgid "kombu_ssl_keyfile ="
msgstr ""
#: ./doc/common/tables/trove-amqp.xml:54(td)
msgid "(StrOpt) SSL key file (valid only if SSL enabled)"
msgstr ""
#: ./doc/common/tables/trove-amqp.xml:57(td) ./doc/common/tables/glance-rabbitmq.xml:45(td) ./doc/common/tables/heat-rabbitmq.xml:37(td) ./doc/common/tables/keystone-rabbitmq.xml:41(td) ./doc/common/tables/nova-kombu.xml:37(td) ./doc/common/tables/sahara-rpc.xml:37(td) ./doc/common/tables/cinder-rpc.xml:57(td) ./doc/common/tables/nova-rpc_all.xml:49(td) ./doc/common/tables/neutron-rabbitmq.xml:37(td) ./doc/common/tables/ceilometer-rabbitmq.xml:41(td)
msgid "kombu_ssl_version ="
msgstr ""
#: ./doc/common/tables/trove-amqp.xml:58(td)
msgid "(StrOpt) SSL version to use (valid only if SSL enabled). valid values are TLSv1, SSLv23 and SSLv3. SSLv2 may be available on some distributions"
msgstr ""
#: ./doc/common/tables/trove-amqp.xml:61(td) ./doc/common/tables/nova-common.xml:57(td) ./doc/common/tables/heat-amqp.xml:49(td) ./doc/common/tables/keystone-amqp.xml:37(td) ./doc/common/tables/sahara-amqp.xml:29(td) ./doc/common/tables/glance-amqp.xml:29(td) ./doc/common/tables/cinder-rpc.xml:69(td) ./doc/common/tables/neutron-notifier.xml:21(td) ./doc/common/tables/ceilometer-amqp.xml:29(td)
msgid "notification_driver = []"
msgstr ""
#: ./doc/common/tables/trove-amqp.xml:62(td)
msgid "(MultiStrOpt) Driver or drivers to handle sending notifications"
msgstr ""
#: ./doc/common/tables/trove-amqp.xml:65(td)
msgid "notification_service_id = {'couchbase': 'fa62fe68-74d9-4779-a24e-36f19602c415', 'mongodb': 'c8c907af-7375-456f-b929-b637ff9209ee', 'cassandra': '459a230d-4e97-4344-9067-2a54a310b0ed', 'redis': 'b216ffc5-1947-456c-a4cf-70f94c05f7d0', 'mysql': '2f3ff068-2bfb-4f70-9a9d-a6bb65bc084b'}"
msgstr ""
#: ./doc/common/tables/trove-amqp.xml:66(td)
msgid "(DictOpt) Unique ID to tag notification events."
msgstr ""
#: ./doc/common/tables/trove-amqp.xml:69(td) ./doc/common/tables/nova-common.xml:61(td) ./doc/common/tables/heat-amqp.xml:53(td) ./doc/common/tables/keystone-amqp.xml:41(td) ./doc/common/tables/sahara-amqp.xml:41(td) ./doc/common/tables/glance-amqp.xml:33(td) ./doc/common/tables/cinder-rpc.xml:73(td) ./doc/common/tables/neutron-notifier.xml:25(td) ./doc/common/tables/ceilometer-amqp.xml:33(td)
msgid "notification_topics = notifications"
msgstr ""
#: ./doc/common/tables/trove-amqp.xml:70(td)
msgid "(ListOpt) AMQP topic used for openstack notifications"
msgstr ""
#: ./doc/common/tables/glance-matchmaker.xml:7(caption)
msgid "Description of matchmaker configuration options"
msgstr ""
#: ./doc/common/tables/nova-rabbitmq.xml:7(caption) ./doc/common/tables/glance-rabbitmq.xml:7(caption) ./doc/common/tables/heat-rabbitmq.xml:7(caption) ./doc/common/tables/trove-rabbitmq.xml:7(caption) ./doc/common/tables/keystone-rabbitmq.xml:7(caption) ./doc/common/tables/sahara-rabbitmq.xml:7(caption) ./doc/common/tables/neutron-rabbitmq.xml:7(caption) ./doc/common/tables/ceilometer-rabbitmq.xml:7(caption)
msgid "Description of RabbitMQ configuration options"
msgstr ""
#: ./doc/common/tables/nova-rabbitmq.xml:21(td) ./doc/common/tables/glance-rabbitmq.xml:49(td) ./doc/common/tables/heat-rabbitmq.xml:41(td) ./doc/common/tables/trove-rabbitmq.xml:21(td) ./doc/common/tables/keystone-rabbitmq.xml:45(td) ./doc/common/tables/sahara-rabbitmq.xml:21(td) ./doc/common/tables/cinder-rpc.xml:117(td) ./doc/common/tables/nova-rpc_all.xml:105(td) ./doc/common/tables/neutron-rabbitmq.xml:41(td) ./doc/common/tables/ceilometer-rabbitmq.xml:45(td)
msgid "rabbit_ha_queues = False"
msgstr ""
#: ./doc/common/tables/nova-rabbitmq.xml:22(td) ./doc/common/tables/glance-rabbitmq.xml:50(td) ./doc/common/tables/heat-rabbitmq.xml:42(td) ./doc/common/tables/keystone-rabbitmq.xml:46(td) ./doc/common/tables/sahara-rabbitmq.xml:22(td) ./doc/common/tables/cinder-rpc.xml:118(td) ./doc/common/tables/nova-rpc_all.xml:106(td) ./doc/common/tables/neutron-rabbitmq.xml:42(td) ./doc/common/tables/ceilometer-rabbitmq.xml:46(td)
msgid "(BoolOpt) Use HA queues in RabbitMQ (x-ha-policy: all). If you change this option, you must wipe the RabbitMQ database."
msgstr ""
#: ./doc/common/tables/nova-rabbitmq.xml:25(td) ./doc/common/tables/glance-rabbitmq.xml:53(td) ./doc/common/tables/heat-rabbitmq.xml:45(td) ./doc/common/tables/trove-rabbitmq.xml:25(td) ./doc/common/tables/keystone-rabbitmq.xml:49(td) ./doc/common/tables/sahara-rabbitmq.xml:25(td) ./doc/common/tables/cinder-rpc.xml:121(td) ./doc/common/tables/nova-rpc_all.xml:109(td) ./doc/common/tables/neutron-rabbitmq.xml:45(td) ./doc/common/tables/ceilometer-rabbitmq.xml:49(td)
msgid "rabbit_host = localhost"
msgstr ""
#: ./doc/common/tables/nova-rabbitmq.xml:26(td) ./doc/common/tables/glance-rabbitmq.xml:54(td) ./doc/common/tables/heat-rabbitmq.xml:46(td) ./doc/common/tables/keystone-rabbitmq.xml:50(td) ./doc/common/tables/sahara-rabbitmq.xml:26(td) ./doc/common/tables/cinder-rpc.xml:122(td) ./doc/common/tables/nova-rpc_all.xml:110(td) ./doc/common/tables/neutron-rabbitmq.xml:46(td) ./doc/common/tables/ceilometer-rabbitmq.xml:50(td)
msgid "(StrOpt) The RabbitMQ broker address where a single node is used."
msgstr ""
#: ./doc/common/tables/nova-rabbitmq.xml:29(td) ./doc/common/tables/glance-rabbitmq.xml:57(td) ./doc/common/tables/heat-rabbitmq.xml:49(td) ./doc/common/tables/trove-rabbitmq.xml:29(td) ./doc/common/tables/keystone-rabbitmq.xml:53(td) ./doc/common/tables/sahara-rabbitmq.xml:29(td) ./doc/common/tables/cinder-rpc.xml:125(td) ./doc/common/tables/nova-rpc_all.xml:113(td) ./doc/common/tables/neutron-rabbitmq.xml:49(td) ./doc/common/tables/ceilometer-rabbitmq.xml:53(td)
msgid "rabbit_hosts = $rabbit_host:$rabbit_port"
msgstr ""
#: ./doc/common/tables/nova-rabbitmq.xml:30(td) ./doc/common/tables/glance-rabbitmq.xml:58(td) ./doc/common/tables/heat-rabbitmq.xml:50(td) ./doc/common/tables/keystone-rabbitmq.xml:54(td) ./doc/common/tables/sahara-rabbitmq.xml:30(td) ./doc/common/tables/cinder-rpc.xml:126(td) ./doc/common/tables/nova-rpc_all.xml:114(td) ./doc/common/tables/neutron-rabbitmq.xml:50(td) ./doc/common/tables/ceilometer-rabbitmq.xml:54(td)
msgid "(ListOpt) RabbitMQ HA cluster host:port pairs."
msgstr ""
#: ./doc/common/tables/nova-rabbitmq.xml:33(td) ./doc/common/tables/glance-rabbitmq.xml:61(td) ./doc/common/tables/heat-rabbitmq.xml:53(td) ./doc/common/tables/keystone-rabbitmq.xml:57(td) ./doc/common/tables/sahara-rabbitmq.xml:33(td) ./doc/common/tables/cinder-rpc.xml:129(td) ./doc/common/tables/nova-rpc_all.xml:117(td) ./doc/common/tables/neutron-rabbitmq.xml:53(td) ./doc/common/tables/ceilometer-rabbitmq.xml:57(td)
msgid "rabbit_login_method = AMQPLAIN"
msgstr ""
#: ./doc/common/tables/nova-rabbitmq.xml:34(td) ./doc/common/tables/heat-conf-changes.xml:29(td) ./doc/common/tables/neutron-conf-changes.xml:85(td) ./doc/common/tables/glance-rabbitmq.xml:62(td) ./doc/common/tables/ceilometer-conf-changes.xml:37(td) ./doc/common/tables/heat-rabbitmq.xml:54(td) ./doc/common/tables/keystone-rabbitmq.xml:58(td) ./doc/common/tables/sahara-rabbitmq.xml:34(td) ./doc/common/tables/cinder-rpc.xml:130(td) ./doc/common/tables/nova-rpc_all.xml:118(td) ./doc/common/tables/neutron-rabbitmq.xml:54(td) ./doc/common/tables/ceilometer-rabbitmq.xml:58(td)
msgid "(StrOpt) the RabbitMQ login method"
msgstr ""
#: ./doc/common/tables/nova-rabbitmq.xml:37(td) ./doc/common/tables/glance-rabbitmq.xml:65(td) ./doc/common/tables/heat-rabbitmq.xml:57(td) ./doc/common/tables/trove-rabbitmq.xml:33(td) ./doc/common/tables/keystone-rabbitmq.xml:61(td) ./doc/common/tables/sahara-rabbitmq.xml:37(td) ./doc/common/tables/cinder-rpc.xml:133(td) ./doc/common/tables/nova-rpc_all.xml:121(td) ./doc/common/tables/neutron-rabbitmq.xml:57(td) ./doc/common/tables/ceilometer-rabbitmq.xml:61(td)
msgid "rabbit_max_retries = 0"
msgstr ""
#: ./doc/common/tables/nova-rabbitmq.xml:38(td) ./doc/common/tables/glance-rabbitmq.xml:66(td) ./doc/common/tables/heat-rabbitmq.xml:58(td) ./doc/common/tables/keystone-rabbitmq.xml:62(td) ./doc/common/tables/sahara-rabbitmq.xml:38(td) ./doc/common/tables/cinder-rpc.xml:134(td) ./doc/common/tables/nova-rpc_all.xml:122(td) ./doc/common/tables/neutron-rabbitmq.xml:58(td) ./doc/common/tables/ceilometer-rabbitmq.xml:62(td)
msgid "(IntOpt) Maximum number of RabbitMQ connection retries. Default is 0 (infinite retry count)."
msgstr ""
#: ./doc/common/tables/nova-rabbitmq.xml:41(td) ./doc/common/tables/glance-rabbitmq.xml:69(td) ./doc/common/tables/heat-rabbitmq.xml:61(td) ./doc/common/tables/trove-rabbitmq.xml:37(td) ./doc/common/tables/keystone-rabbitmq.xml:65(td) ./doc/common/tables/sahara-rabbitmq.xml:41(td) ./doc/common/tables/cinder-rpc.xml:137(td) ./doc/common/tables/nova-rpc_all.xml:125(td) ./doc/common/tables/neutron-rabbitmq.xml:61(td) ./doc/common/tables/ceilometer-rabbitmq.xml:65(td)
msgid "rabbit_password = guest"
msgstr ""
#: ./doc/common/tables/nova-rabbitmq.xml:42(td) ./doc/common/tables/glance-rabbitmq.xml:70(td) ./doc/common/tables/heat-rabbitmq.xml:62(td) ./doc/common/tables/keystone-rabbitmq.xml:66(td) ./doc/common/tables/sahara-rabbitmq.xml:42(td) ./doc/common/tables/cinder-rpc.xml:138(td) ./doc/common/tables/nova-rpc_all.xml:126(td) ./doc/common/tables/neutron-rabbitmq.xml:62(td) ./doc/common/tables/ceilometer-rabbitmq.xml:66(td)
msgid "(StrOpt) The RabbitMQ password."
msgstr ""
#: ./doc/common/tables/nova-rabbitmq.xml:45(td) ./doc/common/tables/glance-rabbitmq.xml:73(td) ./doc/common/tables/heat-rabbitmq.xml:65(td) ./doc/common/tables/trove-rabbitmq.xml:41(td) ./doc/common/tables/keystone-rabbitmq.xml:69(td) ./doc/common/tables/sahara-rabbitmq.xml:45(td) ./doc/common/tables/cinder-rpc.xml:141(td) ./doc/common/tables/nova-rpc_all.xml:129(td) ./doc/common/tables/neutron-rabbitmq.xml:65(td) ./doc/common/tables/ceilometer-rabbitmq.xml:69(td)
msgid "rabbit_port = 5672"
msgstr ""
#: ./doc/common/tables/nova-rabbitmq.xml:46(td) ./doc/common/tables/glance-rabbitmq.xml:74(td) ./doc/common/tables/heat-rabbitmq.xml:66(td) ./doc/common/tables/keystone-rabbitmq.xml:70(td) ./doc/common/tables/sahara-rabbitmq.xml:46(td) ./doc/common/tables/cinder-rpc.xml:142(td) ./doc/common/tables/nova-rpc_all.xml:130(td) ./doc/common/tables/neutron-rabbitmq.xml:66(td) ./doc/common/tables/ceilometer-rabbitmq.xml:70(td)
msgid "(IntOpt) The RabbitMQ broker port where a single node is used."
msgstr ""
#: ./doc/common/tables/nova-rabbitmq.xml:49(td) ./doc/common/tables/glance-rabbitmq.xml:77(td) ./doc/common/tables/heat-rabbitmq.xml:69(td) ./doc/common/tables/trove-rabbitmq.xml:45(td) ./doc/common/tables/keystone-rabbitmq.xml:73(td) ./doc/common/tables/sahara-rabbitmq.xml:49(td) ./doc/common/tables/cinder-rpc.xml:145(td) ./doc/common/tables/nova-rpc_all.xml:133(td) ./doc/common/tables/neutron-rabbitmq.xml:69(td) ./doc/common/tables/ceilometer-rabbitmq.xml:73(td)
msgid "rabbit_retry_backoff = 2"
msgstr ""
#: ./doc/common/tables/nova-rabbitmq.xml:50(td) ./doc/common/tables/glance-rabbitmq.xml:78(td) ./doc/common/tables/heat-rabbitmq.xml:70(td) ./doc/common/tables/keystone-rabbitmq.xml:74(td) ./doc/common/tables/sahara-rabbitmq.xml:50(td) ./doc/common/tables/cinder-rpc.xml:146(td) ./doc/common/tables/nova-rpc_all.xml:134(td) ./doc/common/tables/neutron-rabbitmq.xml:70(td) ./doc/common/tables/ceilometer-rabbitmq.xml:74(td)
msgid "(IntOpt) How long to backoff for between retries when connecting to RabbitMQ."
msgstr ""
#: ./doc/common/tables/nova-rabbitmq.xml:53(td) ./doc/common/tables/glance-rabbitmq.xml:81(td) ./doc/common/tables/heat-rabbitmq.xml:73(td) ./doc/common/tables/trove-rabbitmq.xml:49(td) ./doc/common/tables/keystone-rabbitmq.xml:77(td) ./doc/common/tables/sahara-rabbitmq.xml:53(td) ./doc/common/tables/cinder-rpc.xml:149(td) ./doc/common/tables/nova-rpc_all.xml:137(td) ./doc/common/tables/neutron-rabbitmq.xml:73(td) ./doc/common/tables/ceilometer-rabbitmq.xml:77(td)
msgid "rabbit_retry_interval = 1"
msgstr ""
#: ./doc/common/tables/nova-rabbitmq.xml:54(td) ./doc/common/tables/glance-rabbitmq.xml:82(td) ./doc/common/tables/heat-rabbitmq.xml:74(td) ./doc/common/tables/keystone-rabbitmq.xml:78(td) ./doc/common/tables/sahara-rabbitmq.xml:54(td) ./doc/common/tables/cinder-rpc.xml:150(td) ./doc/common/tables/nova-rpc_all.xml:138(td) ./doc/common/tables/neutron-rabbitmq.xml:74(td) ./doc/common/tables/ceilometer-rabbitmq.xml:78(td)
msgid "(IntOpt) How frequently to retry connecting with RabbitMQ."
msgstr ""
#: ./doc/common/tables/nova-rabbitmq.xml:57(td) ./doc/common/tables/glance-rabbitmq.xml:85(td) ./doc/common/tables/heat-rabbitmq.xml:77(td) ./doc/common/tables/trove-rabbitmq.xml:53(td) ./doc/common/tables/keystone-rabbitmq.xml:81(td) ./doc/common/tables/sahara-rabbitmq.xml:57(td) ./doc/common/tables/cinder-rpc.xml:153(td) ./doc/common/tables/nova-rpc_all.xml:141(td) ./doc/common/tables/neutron-rabbitmq.xml:77(td) ./doc/common/tables/ceilometer-rabbitmq.xml:81(td)
msgid "rabbit_use_ssl = False"
msgstr ""
#: ./doc/common/tables/nova-rabbitmq.xml:58(td) ./doc/common/tables/glance-rabbitmq.xml:86(td) ./doc/common/tables/heat-rabbitmq.xml:78(td) ./doc/common/tables/keystone-rabbitmq.xml:82(td) ./doc/common/tables/sahara-rabbitmq.xml:58(td) ./doc/common/tables/cinder-rpc.xml:154(td) ./doc/common/tables/nova-rpc_all.xml:142(td) ./doc/common/tables/neutron-rabbitmq.xml:78(td) ./doc/common/tables/ceilometer-rabbitmq.xml:82(td)
msgid "(BoolOpt) Connect over SSL for RabbitMQ."
msgstr ""
#: ./doc/common/tables/nova-rabbitmq.xml:61(td) ./doc/common/tables/glance-rabbitmq.xml:89(td) ./doc/common/tables/heat-rabbitmq.xml:81(td) ./doc/common/tables/trove-rabbitmq.xml:57(td) ./doc/common/tables/keystone-rabbitmq.xml:85(td) ./doc/common/tables/sahara-rabbitmq.xml:61(td) ./doc/common/tables/cinder-rpc.xml:157(td) ./doc/common/tables/nova-rpc_all.xml:145(td) ./doc/common/tables/neutron-rabbitmq.xml:81(td) ./doc/common/tables/ceilometer-rabbitmq.xml:85(td)
msgid "rabbit_userid = guest"
msgstr ""
#: ./doc/common/tables/nova-rabbitmq.xml:62(td) ./doc/common/tables/glance-rabbitmq.xml:90(td) ./doc/common/tables/heat-rabbitmq.xml:82(td) ./doc/common/tables/keystone-rabbitmq.xml:86(td) ./doc/common/tables/sahara-rabbitmq.xml:62(td) ./doc/common/tables/cinder-rpc.xml:158(td) ./doc/common/tables/nova-rpc_all.xml:146(td) ./doc/common/tables/neutron-rabbitmq.xml:82(td) ./doc/common/tables/ceilometer-rabbitmq.xml:86(td)
msgid "(StrOpt) The RabbitMQ userid."
msgstr ""
#: ./doc/common/tables/nova-rabbitmq.xml:65(td) ./doc/common/tables/glance-rabbitmq.xml:93(td) ./doc/common/tables/heat-rabbitmq.xml:85(td) ./doc/common/tables/trove-rabbitmq.xml:61(td) ./doc/common/tables/keystone-rabbitmq.xml:89(td) ./doc/common/tables/sahara-rabbitmq.xml:65(td) ./doc/common/tables/cinder-rpc.xml:161(td) ./doc/common/tables/nova-rpc_all.xml:149(td) ./doc/common/tables/neutron-rabbitmq.xml:85(td) ./doc/common/tables/ceilometer-rabbitmq.xml:89(td)
msgid "rabbit_virtual_host = /"
msgstr ""
#: ./doc/common/tables/nova-rabbitmq.xml:66(td) ./doc/common/tables/glance-rabbitmq.xml:94(td) ./doc/common/tables/heat-rabbitmq.xml:86(td) ./doc/common/tables/keystone-rabbitmq.xml:90(td) ./doc/common/tables/sahara-rabbitmq.xml:66(td) ./doc/common/tables/cinder-rpc.xml:162(td) ./doc/common/tables/nova-rpc_all.xml:150(td) ./doc/common/tables/neutron-rabbitmq.xml:86(td) ./doc/common/tables/ceilometer-rabbitmq.xml:90(td)
msgid "(StrOpt) The RabbitMQ virtual host."
msgstr ""
#: ./doc/common/tables/sahara-database.xml:21(td)
msgid "db_driver = sahara.db"
msgstr ""
#: ./doc/common/tables/sahara-database.xml:22(td)
msgid "(StrOpt) Driver to use for database access."
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:7(caption)
msgid "Description of ML2 Cisco mechanism driver configuration options"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:21(td)
msgid "apic_system_id = openstack"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:22(td) ./doc/common/tables/neutron-conf-changes.xml:25(td)
msgid "(StrOpt) Prefix for APIC domain/names/profiles created"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:28(td)
msgid "managed_physical_network = None"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:29(td)
msgid "(StrOpt) The physical network managed by the switches."
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:32(th)
msgid "[ml2_cisco_apic]"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:35(td)
msgid "apic_agent_poll_interval = 2"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:36(td) ./doc/common/tables/neutron-conf-changes.xml:309(td)
msgid "(FloatOpt) Interval between agent poll for topology (in sec)"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:39(td)
msgid "apic_agent_report_interval = 30"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:40(td) ./doc/common/tables/neutron-conf-changes.xml:313(td)
msgid "(FloatOpt) Interval between agent status updates (in sec)"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:43(td)
msgid "apic_app_profile_name = ${apic_system_id}_app"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:44(td) ./doc/common/tables/neutron-conf-changes.xml:317(td)
msgid "(StrOpt) Name for the app profile used for Openstack"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:47(td)
msgid "apic_domain_name = ${apic_system_id}"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:48(td) ./doc/common/tables/neutron-conf-changes.xml:321(td)
msgid "(StrOpt) Name for the domain created on APIC"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:51(td)
msgid "apic_entity_profile = ${apic_system_id}_entity_profile"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:52(td) ./doc/common/tables/neutron-conf-changes.xml:325(td)
msgid "(StrOpt) Name of the entity profile to be created"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:55(td)
msgid "apic_function_profile = ${apic_system_id}_function_profile"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:56(td) ./doc/common/tables/neutron-conf-changes.xml:329(td)
msgid "(StrOpt) Name of the function profile to be created"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:59(td)
msgid "apic_host_uplink_ports ="
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:60(td) ./doc/common/tables/neutron-conf-changes.xml:333(td)
msgid "(ListOpt) The uplink ports to check for ACI connectivity"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:63(td)
msgid "apic_hosts ="
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:64(td) ./doc/common/tables/neutron-conf-changes.xml:337(td)
msgid "(ListOpt) An ordered list of host names or IP addresses of the APIC controller(s)."
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:67(td)
msgid "apic_lacp_profile = ${apic_system_id}_lacp_profile"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:68(td) ./doc/common/tables/neutron-conf-changes.xml:341(td)
msgid "(StrOpt) Name of the LACP profile to be created"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:71(td)
msgid "apic_name_mapping = use_name"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:72(td) ./doc/common/tables/neutron-conf-changes.xml:345(td)
msgid "(StrOpt) Name mapping strategy to use: use_uuid | use_name"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:75(td)
msgid "apic_node_profile = ${apic_system_id}_node_profile"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:76(td) ./doc/common/tables/neutron-conf-changes.xml:349(td)
msgid "(StrOpt) Name of the node profile to be created"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:79(td)
msgid "apic_password = None"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:80(td) ./doc/common/tables/neutron-conf-changes.xml:353(td)
msgid "(StrOpt) Password for the APIC controller"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:83(td)
msgid "apic_sync_interval = 0"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:84(td) ./doc/common/tables/neutron-conf-changes.xml:357(td)
msgid "(IntOpt) Synchronization interval in seconds"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:87(td)
msgid "apic_use_ssl = True"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:88(td) ./doc/common/tables/neutron-conf-changes.xml:361(td)
msgid "(BoolOpt) Use SSL to connect to the APIC controller"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:91(td)
msgid "apic_username = None"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:92(td) ./doc/common/tables/neutron-conf-changes.xml:365(td)
msgid "(StrOpt) Username for the APIC controller"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:95(td)
msgid "apic_vlan_ns_name = ${apic_system_id}_vlan_ns"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:96(td) ./doc/common/tables/neutron-conf-changes.xml:369(td)
msgid "(StrOpt) Name for the vlan namespace to be used for Openstack"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:99(td)
msgid "apic_vlan_range = 2:4093"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:100(td) ./doc/common/tables/neutron-conf-changes.xml:373(td)
msgid "(StrOpt) Range of VLAN's to be used for Openstack"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:103(td)
msgid "apic_vpc_pairs ="
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:104(td) ./doc/common/tables/neutron-conf-changes.xml:377(td)
msgid "(ListOpt) The switch pairs for VPC connectivity"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:107(td)
msgid "root_helper = sudo /usr/local/bin/neutron-rootwrap /etc/neutron/rootwrap.conf"
msgstr ""
#: ./doc/common/tables/neutron-ml2_cisco.xml:108(td) ./doc/common/tables/neutron-conf-changes.xml:381(td)
msgid "(StrOpt) Setup root helper as rootwrap or sudo"
msgstr ""
#: ./doc/common/tables/nova-policy.xml:21(td)
msgid "allow_instance_snapshots = True"
msgstr ""
#: ./doc/common/tables/nova-policy.xml:22(td)
msgid "(BoolOpt) Permit instance snapshot operations."
msgstr ""
#: ./doc/common/tables/nova-policy.xml:25(td)
msgid "allow_migrate_to_same_host = False"
msgstr ""
#: ./doc/common/tables/nova-policy.xml:26(td)
msgid "(BoolOpt) Allow migrate machine to the same host. Useful when testing in single-host environments."
msgstr ""
#: ./doc/common/tables/nova-policy.xml:29(td)
msgid "allow_resize_to_same_host = False"
msgstr ""
#: ./doc/common/tables/nova-policy.xml:30(td)
msgid "(BoolOpt) Allow destination machine to match source for resize. Useful when testing in single-host environments."
msgstr ""
#: ./doc/common/tables/nova-policy.xml:33(td) ./doc/common/tables/cinder-quota.xml:21(td)
msgid "max_age = 0"
msgstr ""
#: ./doc/common/tables/nova-policy.xml:34(td) ./doc/common/tables/cinder-quota.xml:22(td)
msgid "(IntOpt) Number of seconds between subsequent usage refreshes"
msgstr ""
#: ./doc/common/tables/nova-policy.xml:37(td)
msgid "max_local_block_devices = 3"
msgstr ""
#: ./doc/common/tables/nova-policy.xml:38(td)
msgid "(IntOpt) Maximum number of devices that will result in a local image being created on the hypervisor node. Setting this to 0 means nova will allow only boot from volume. A negative number means unlimited."
msgstr ""
#: ./doc/common/tables/nova-policy.xml:41(td)
msgid "osapi_compute_unique_server_name_scope ="
msgstr ""
#: ./doc/common/tables/nova-policy.xml:42(td)
msgid "(StrOpt) When set, compute API will consider duplicate hostnames invalid within the specified scope, regardless of case. Should be empty, \"project\" or \"global\"."
msgstr ""
#: ./doc/common/tables/nova-policy.xml:45(td) ./doc/common/tables/cinder-api.xml:53(td)
msgid "osapi_max_limit = 1000"
msgstr ""
#: ./doc/common/tables/nova-policy.xml:46(td)
msgid "(IntOpt) The maximum number of items returned in a single response from a collection resource"
msgstr ""
#: ./doc/common/tables/nova-policy.xml:49(td) ./doc/common/tables/cinder-api.xml:57(td)
msgid "osapi_max_request_body_size = 114688"
msgstr ""
#: ./doc/common/tables/nova-policy.xml:50(td)
msgid "(IntOpt) The maximum body size per each osapi request(bytes)"
msgstr ""
#: ./doc/common/tables/nova-policy.xml:53(td)
msgid "password_length = 12"
msgstr ""
#: ./doc/common/tables/nova-policy.xml:54(td)
msgid "(IntOpt) Length of generated instance admin passwords"
msgstr ""
#: ./doc/common/tables/nova-policy.xml:65(td) ./doc/common/tables/cinder-quota.xml:53(td)
msgid "reservation_expire = 86400"
msgstr ""
#: ./doc/common/tables/nova-policy.xml:66(td) ./doc/common/tables/cinder-quota.xml:54(td)
msgid "(IntOpt) Number of seconds until a reservation expires"
msgstr ""
#: ./doc/common/tables/nova-policy.xml:69(td)
msgid "resize_fs_using_block_device = False"
msgstr ""
#: ./doc/common/tables/nova-policy.xml:70(td)
msgid "(BoolOpt) Attempt to resize the filesystem by accessing the image over a block device. This is done by the host and may not be necessary if the image contains a recent version of cloud-init. Possible mechanisms require the nbd driver (for qcow and raw), or loop (for raw)."
msgstr ""
#: ./doc/common/tables/nova-policy.xml:73(td) ./doc/common/tables/cinder-common.xml:153(td)
msgid "until_refresh = 0"
msgstr ""
#: ./doc/common/tables/nova-policy.xml:74(td) ./doc/common/tables/cinder-common.xml:154(td)
msgid "(IntOpt) Count of reservations until usage is refreshed"
msgstr ""
#: ./doc/common/tables/keystone-identity.xml:7(caption)
msgid "Description of identity configuration options"
msgstr ""
#: ./doc/common/tables/keystone-identity.xml:18(th)
msgid "[identity]"
msgstr ""
#: ./doc/common/tables/keystone-identity.xml:21(td)
msgid "default_domain_id = default"
msgstr ""
#: ./doc/common/tables/keystone-identity.xml:22(td)
msgid "(StrOpt) This references the domain to use for all Identity API v2 requests (which are not aware of domains). A domain with this ID will be created for you by keystone-manage db_sync in migration 008. The domain referenced by this ID cannot be deleted on the v3 API, to prevent accidentally breaking the v2 API. There is nothing special about this domain, other than the fact that it must exist to order to maintain support for your v2 clients."
msgstr ""
#: ./doc/common/tables/keystone-identity.xml:25(td)
msgid "domain_config_dir = /etc/keystone/domains"
msgstr ""
#: ./doc/common/tables/keystone-identity.xml:26(td)
msgid "(StrOpt) Path for Keystone to locate the domain specific identity configuration files if domain_specific_drivers_enabled is set to true."
msgstr ""
#: ./doc/common/tables/keystone-identity.xml:29(td)
msgid "domain_specific_drivers_enabled = False"
msgstr ""
#: ./doc/common/tables/keystone-identity.xml:30(td)
msgid "(BoolOpt) A subset (or all) of domains can have their own identity driver, each with their own partial configuration file in a domain configuration directory. Only values specific to the domain need to be placed in the domain specific configuration file. This feature is disabled by default; set to true to enable."
msgstr ""
#: ./doc/common/tables/keystone-identity.xml:33(td)
msgid "driver = keystone.identity.backends.sql.Identity"
msgstr ""
#: ./doc/common/tables/keystone-identity.xml:34(td)
msgid "(StrOpt) Identity backend driver."
msgstr ""
#: ./doc/common/tables/keystone-identity.xml:38(td)
msgid "(IntOpt) Maximum number of entities that will be returned in an identity collection."
msgstr ""
#: ./doc/common/tables/keystone-identity.xml:41(td)
msgid "max_password_length = 4096"
msgstr ""
#: ./doc/common/tables/keystone-identity.xml:42(td)
msgid "(IntOpt) Maximum supported length for user passwords; decrease to improve performance."
msgstr ""
#: ./doc/common/tables/ceilometer-inspector.xml:7(caption)
msgid "Description of inspector configuration options"
msgstr ""
#: ./doc/common/tables/ceilometer-inspector.xml:21(td)
msgid "hypervisor_inspector = libvirt"
msgstr ""
#: ./doc/common/tables/ceilometer-inspector.xml:22(td)
msgid "(StrOpt) Inspector to use for inspecting the hypervisor layer."
msgstr ""
#: ./doc/common/tables/ceilometer-inspector.xml:25(td)
msgid "libvirt_type = kvm"
msgstr ""
#: ./doc/common/tables/ceilometer-inspector.xml:26(td)
msgid "(StrOpt) Libvirt domain type (valid options are: kvm, lxc, qemu, uml, xen)."
msgstr ""
#: ./doc/common/tables/ceilometer-inspector.xml:29(td)
msgid "libvirt_uri ="
msgstr ""
#: ./doc/common/tables/ceilometer-inspector.xml:30(td)
msgid "(StrOpt) Override the default libvirt URI (which is dependent on libvirt_type)."
msgstr ""
#: ./doc/common/tables/cinder-scheduler.xml:21(td)
msgid "scheduler_default_filters = AvailabilityZoneFilter, CapacityFilter, CapabilitiesFilter"
msgstr ""
#: ./doc/common/tables/cinder-scheduler.xml:22(td) ./doc/common/tables/nova-scheduler.xml:82(td)
msgid "(ListOpt) Which filter class names to use for filtering hosts when not specified in the request."
msgstr ""
#: ./doc/common/tables/cinder-scheduler.xml:25(td)
msgid "scheduler_default_weighers = CapacityWeigher"
msgstr ""
#: ./doc/common/tables/cinder-scheduler.xml:26(td)
msgid "(ListOpt) Which weigher class names to use for weighing hosts."
msgstr ""
#: ./doc/common/tables/cinder-scheduler.xml:29(td)
msgid "scheduler_driver = cinder.scheduler.filter_scheduler.FilterScheduler"
msgstr ""
#: ./doc/common/tables/cinder-scheduler.xml:30(td)
msgid "(StrOpt) Default scheduler driver to use"
msgstr ""
#: ./doc/common/tables/cinder-scheduler.xml:33(td)
msgid "scheduler_host_manager = cinder.scheduler.host_manager.HostManager"
msgstr ""
#: ./doc/common/tables/cinder-scheduler.xml:34(td) ./doc/common/tables/nova-scheduler.xml:94(td)
msgid "(StrOpt) The scheduler host manager class to use"
msgstr ""
#: ./doc/common/tables/cinder-scheduler.xml:37(td) ./doc/common/tables/nova-scheduler.xml:101(td)
msgid "scheduler_json_config_location ="
msgstr ""
#: ./doc/common/tables/cinder-scheduler.xml:38(td) ./doc/common/tables/nova-scheduler.xml:102(td)
msgid "(StrOpt) Absolute path to scheduler configuration JSON file."
msgstr ""
#: ./doc/common/tables/cinder-scheduler.xml:41(td)
msgid "scheduler_manager = cinder.scheduler.manager.SchedulerManager"
msgstr ""
#: ./doc/common/tables/cinder-scheduler.xml:42(td) ./doc/common/tables/nova-scheduler.xml:106(td)
msgid "(StrOpt) Full class name for the Manager for scheduler"
msgstr ""
#: ./doc/common/tables/cinder-scheduler.xml:45(td) ./doc/common/tables/nova-scheduler.xml:109(td)
msgid "scheduler_max_attempts = 3"
msgstr ""
#: ./doc/common/tables/cinder-scheduler.xml:46(td)
msgid "(IntOpt) Maximum number of attempts to schedule an volume"
msgstr ""
#: ./doc/common/tables/cinder-scheduler.xml:49(td)
msgid "scheduler_topic = cinder-scheduler"
msgstr ""
#: ./doc/common/tables/cinder-scheduler.xml:50(td)
msgid "(StrOpt) The topic that scheduler nodes listen on"
msgstr ""
#: ./doc/common/tables/trove-db_cassandra.xml:7(caption)
msgid "Description of Cassandra database configuration options"
msgstr ""
#: ./doc/common/tables/trove-db_cassandra.xml:18(th)
msgid "[cassandra]"
msgstr ""
#: ./doc/common/tables/trove-db_cassandra.xml:21(td) ./doc/common/tables/trove-db_mongodb.xml:25(td) ./doc/common/tables/trove-db_redis.xml:21(td)
msgid "backup_strategy = None"
msgstr ""
#: ./doc/common/tables/trove-db_cassandra.xml:29(td)
msgid "mount_point = /var/lib/cassandra"
msgstr ""
#: ./doc/common/tables/trove-db_cassandra.xml:33(td) ./doc/common/tables/trove-db_couchbase.xml:37(td) ./doc/common/tables/trove-db_mongodb.xml:53(td) ./doc/common/tables/trove-db_redis.xml:33(td)
msgid "replication_strategy = None"
msgstr ""
#: ./doc/common/tables/trove-db_cassandra.xml:37(td)
msgid "tcp_ports = 7000, 7001, 9042, 9160"
msgstr ""
#: ./doc/common/tables/neutron-logging.xml:21(td) ./doc/common/tables/sahara-debug.xml:21(td) ./doc/common/tables/cinder-logging.xml:21(td) ./doc/common/tables/glance-logging.xml:21(td) ./doc/common/tables/heat-debug.xml:25(td) ./doc/common/tables/ceilometer-debug.xml:21(td) ./doc/common/tables/nova-logging.xml:21(td) ./doc/common/tables/trove-debug.xml:29(td) ./doc/common/tables/keystone-debug.xml:25(td)
msgid "debug = False"
msgstr ""
#: ./doc/common/tables/neutron-logging.xml:22(td) ./doc/common/tables/sahara-debug.xml:22(td) ./doc/common/tables/cinder-logging.xml:22(td) ./doc/common/tables/glance-logging.xml:22(td) ./doc/common/tables/heat-debug.xml:26(td) ./doc/common/tables/ceilometer-debug.xml:22(td) ./doc/common/tables/nova-logging.xml:22(td) ./doc/common/tables/trove-debug.xml:30(td) ./doc/common/tables/keystone-debug.xml:26(td)
msgid "(BoolOpt) Print debugging output (set logging level to DEBUG instead of default WARNING level)."
msgstr ""
#: ./doc/common/tables/neutron-logging.xml:25(td) ./doc/common/tables/glance-logging.xml:25(td) ./doc/common/tables/heat-logging.xml:21(td)
msgid "default_log_levels = amqp=WARN, amqplib=WARN, boto=WARN, qpid=WARN, sqlalchemy=WARN, suds=INFO, oslo.messaging=INFO, iso8601=WARN, requests.packages.urllib3.connectionpool=WARN"
msgstr ""
#: ./doc/common/tables/neutron-logging.xml:85(td) ./doc/common/tables/neutron-nec.xml:57(td)
msgid "use_ssl = False"
msgstr ""
#: ./doc/common/tables/neutron-logging.xml:86(td)
msgid "(BoolOpt) Enable SSL on the API server"
msgstr ""
#: ./doc/common/tables/nova-availabilityzones.xml:7(caption)
msgid "Description of availability zones configuration options"
msgstr ""
#: ./doc/common/tables/nova-availabilityzones.xml:21(td)
msgid "default_availability_zone = nova"
msgstr ""
#: ./doc/common/tables/nova-availabilityzones.xml:22(td)
msgid "(StrOpt) Default compute node availability_zone"
msgstr ""
#: ./doc/common/tables/nova-availabilityzones.xml:25(td)
msgid "default_schedule_zone = None"
msgstr ""
#: ./doc/common/tables/nova-availabilityzones.xml:26(td)
msgid "(StrOpt) Availability zone to use when user doesn't specify one"
msgstr ""
#: ./doc/common/tables/nova-availabilityzones.xml:29(td)
msgid "internal_service_availability_zone = internal"
msgstr ""
#: ./doc/common/tables/nova-availabilityzones.xml:30(td)
msgid "(StrOpt) The availability_zone to show internal services under"
msgstr ""
#: ./doc/common/tables/keystone-catalog.xml:7(caption)
msgid "Description of catalog configuration options"
msgstr ""
#: ./doc/common/tables/keystone-catalog.xml:18(th)
msgid "[catalog]"
msgstr ""
#: ./doc/common/tables/keystone-catalog.xml:21(td) ./doc/common/tables/keystone-assignment.xml:21(td) ./doc/common/tables/keystone-token.xml:25(td)
msgid "cache_time = None"
msgstr ""
#: ./doc/common/tables/keystone-catalog.xml:22(td) ./doc/common/tables/keystone-conf-changes.xml:29(td)
msgid "(IntOpt) Time to cache catalog data (in seconds). This has no effect unless global and catalog caching are enabled."
msgstr ""
#: ./doc/common/tables/keystone-catalog.xml:25(td) ./doc/common/tables/keystone-assignment.xml:25(td) ./doc/common/tables/keystone-revoke.xml:21(td) ./doc/common/tables/keystone-token.xml:29(td)
msgid "caching = True"
msgstr ""
#: ./doc/common/tables/keystone-catalog.xml:26(td) ./doc/common/tables/keystone-conf-changes.xml:33(td)
msgid "(BoolOpt) Toggle for catalog caching. This has no effect unless global caching is enabled."
msgstr ""
#: ./doc/common/tables/keystone-catalog.xml:29(td)
msgid "driver = keystone.catalog.backends.sql.Catalog"
msgstr ""
#: ./doc/common/tables/keystone-catalog.xml:30(td)
msgid "(StrOpt) Catalog backend driver."
msgstr ""
#: ./doc/common/tables/keystone-catalog.xml:34(td)
msgid "(IntOpt) Maximum number of entities that will be returned in a catalog collection."
msgstr ""
#: ./doc/common/tables/keystone-catalog.xml:37(td)
msgid "template_file = default_catalog.templates"
msgstr ""
#: ./doc/common/tables/keystone-catalog.xml:38(td)
msgid "(StrOpt) Catalog template file name for use with the template catalog backend."
msgstr ""
#: ./doc/common/tables/cinder-netapp_eseries_iscsi.xml:7(caption)
msgid "Description of NetApp E-Series driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-netapp_eseries_iscsi.xml:21(td)
msgid "netapp_controller_ips = None"
msgstr ""
#: ./doc/common/tables/cinder-netapp_eseries_iscsi.xml:22(td)
msgid "(StrOpt) This option is only utilized when the storage family is configured to eseries. This option is used to restrict provisioning to the specified controllers. Specify the value of this option to be a comma separated list of controller hostnames or IP addresses to be used for provisioning."
msgstr ""
#: ./doc/common/tables/cinder-netapp_eseries_iscsi.xml:33(td)
msgid "netapp_sa_password = None"
msgstr ""
#: ./doc/common/tables/cinder-netapp_eseries_iscsi.xml:34(td)
msgid "(StrOpt) Password for the NetApp E-Series storage array."
msgstr ""
#: ./doc/common/tables/cinder-netapp_eseries_iscsi.xml:49(td)
msgid "netapp_storage_pools = None"
msgstr ""
#: ./doc/common/tables/cinder-netapp_eseries_iscsi.xml:50(td)
msgid "(StrOpt) This option is used to restrict provisioning to the specified storage pools. Only dynamic disk pools are currently supported. Specify the value of this option to be a comma separated list of disk pool names to be used for provisioning."
msgstr ""
#: ./doc/common/tables/cinder-netapp_eseries_iscsi.xml:57(td)
msgid "netapp_webservice_path = /devmgr/v2"
msgstr ""
#: ./doc/common/tables/cinder-netapp_eseries_iscsi.xml:58(td)
msgid "(StrOpt) This option is used to specify the path to the E-Series proxy application on a proxy server. The value is combined with the value of the netapp_transport_type, netapp_server_hostname, and netapp_server_port options to create the URL used by the driver to connect to the proxy application."
msgstr ""
#: ./doc/common/tables/neutron-ml2_fslsdn.xml:7(caption)
msgid "Description of ML2 Freescale SDN mechanism driver configuration options"
msgstr ""
#: ./doc/common/tables/neutron-ml2_fslsdn.xml:18(th)
msgid "[ml2_fslsdn]"
msgstr ""
#: ./doc/common/tables/neutron-ml2_fslsdn.xml:21(td)
msgid "crd_api_insecure = False"
msgstr ""
#: ./doc/common/tables/neutron-ml2_fslsdn.xml:22(td) ./doc/common/tables/neutron-conf-changes.xml:385(td) ./doc/common/tables/nova-neutron.xml:57(td) ./doc/common/tables/nova-conf-changes.xml:225(td)
msgid "(BoolOpt) If set, ignore any SSL validation issues"
msgstr ""
#: ./doc/common/tables/neutron-ml2_fslsdn.xml:25(td)
msgid "crd_auth_strategy = keystone"
msgstr ""
#: ./doc/common/tables/neutron-ml2_fslsdn.xml:26(td) ./doc/common/tables/neutron-conf-changes.xml:389(td)
msgid "(StrOpt) Auth strategy for connecting to neutron in admin context"
msgstr ""
#: ./doc/common/tables/neutron-ml2_fslsdn.xml:29(td)
msgid "crd_auth_url = http://127.0.0.1:5000/v2.0/"
msgstr ""
#: ./doc/common/tables/neutron-ml2_fslsdn.xml:30(td) ./doc/common/tables/neutron-conf-changes.xml:393(td)
msgid "(StrOpt) CRD Auth URL"
msgstr ""
#: ./doc/common/tables/neutron-ml2_fslsdn.xml:33(td)
msgid "crd_ca_certificates_file = None"
msgstr ""
#: ./doc/common/tables/neutron-ml2_fslsdn.xml:34(td) ./doc/common/tables/neutron-conf-changes.xml:397(td)
msgid "(StrOpt) Location of ca certificates file to use for CRD client requests."
msgstr ""
#: ./doc/common/tables/neutron-ml2_fslsdn.xml:37(td)
msgid "crd_password = password"
msgstr ""
#: ./doc/common/tables/neutron-ml2_fslsdn.xml:38(td) ./doc/common/tables/neutron-conf-changes.xml:401(td)
msgid "(StrOpt) CRD Service Password"
msgstr ""
#: ./doc/common/tables/neutron-ml2_fslsdn.xml:41(td)
msgid "crd_region_name = RegionOne"
msgstr ""
#: ./doc/common/tables/neutron-ml2_fslsdn.xml:42(td) ./doc/common/tables/neutron-conf-changes.xml:405(td)
msgid "(StrOpt) Region name for connecting to CRD Service in admin context"
msgstr ""
#: ./doc/common/tables/neutron-ml2_fslsdn.xml:45(td)
msgid "crd_tenant_name = service"
msgstr ""
#: ./doc/common/tables/neutron-ml2_fslsdn.xml:46(td) ./doc/common/tables/neutron-conf-changes.xml:409(td)
msgid "(StrOpt) CRD Tenant Name"
msgstr ""
#: ./doc/common/tables/neutron-ml2_fslsdn.xml:49(td)
msgid "crd_url = http://127.0.0.1:9797"
msgstr ""
#: ./doc/common/tables/neutron-ml2_fslsdn.xml:50(td) ./doc/common/tables/neutron-conf-changes.xml:413(td)
msgid "(StrOpt) URL for connecting to CRD service"
msgstr ""
#: ./doc/common/tables/neutron-ml2_fslsdn.xml:53(td)
msgid "crd_url_timeout = 30"
msgstr ""
#: ./doc/common/tables/neutron-ml2_fslsdn.xml:54(td) ./doc/common/tables/neutron-conf-changes.xml:417(td)
msgid "(IntOpt) Timeout value for connecting to CRD service in seconds"
msgstr ""
#: ./doc/common/tables/neutron-ml2_fslsdn.xml:57(td)
msgid "crd_user_name = crd"
msgstr ""
#: ./doc/common/tables/neutron-ml2_fslsdn.xml:58(td) ./doc/common/tables/neutron-conf-changes.xml:421(td)
msgid "(StrOpt) CRD service Username"
msgstr ""
#: ./doc/common/tables/neutron-rootwrap.xml:7(caption) ./doc/common/tables/nova-rootwrap.xml:7(caption) ./doc/common/tables/cinder-rootwrap.xml:7(caption)
msgid "Description of rootwrap configuration options"
msgstr ""
#: ./doc/common/tables/neutron-rootwrap.xml:21(td)
msgid "filters_path = /etc/neutron/rootwrap.d,/usr/share/neutron/rootwrap"
msgstr ""
#: ./doc/common/tables/neutron-rootwrap.xml:22(td) ./doc/common/tables/nova-rootwrap.xml:22(td) ./doc/common/tables/cinder-rootwrap.xml:22(td)
msgid "List of directories to load filter definitions from (separated by ','). These directories MUST all be only writeable by root !"
msgstr ""
#: ./doc/common/tables/neutron-rootwrap.xml:25(td) ./doc/common/tables/nova-rootwrap.xml:25(td) ./doc/common/tables/cinder-rootwrap.xml:25(td)
msgid "exec_dirs = /sbin,/usr/sbin,/bin,/usr/bin"
msgstr ""
#: ./doc/common/tables/neutron-rootwrap.xml:26(td) ./doc/common/tables/nova-rootwrap.xml:26(td) ./doc/common/tables/cinder-rootwrap.xml:26(td)
msgid "List of directories to search executables in, in case filters do not explicitely specify a full path (separated by ',') If not specified, defaults to system PATH environment variable. These directories MUST all be only writeable by root !"
msgstr ""
#: ./doc/common/tables/neutron-rootwrap.xml:30(td) ./doc/common/tables/nova-rootwrap.xml:30(td) ./doc/common/tables/cinder-rootwrap.xml:30(td)
msgid "Enable logging to syslog Default value is False"
msgstr ""
#: ./doc/common/tables/neutron-rootwrap.xml:33(td) ./doc/common/tables/nova-rootwrap.xml:33(td) ./doc/common/tables/cinder-rootwrap.xml:33(td)
msgid "syslog_log_facility = syslog"
msgstr ""
#: ./doc/common/tables/neutron-rootwrap.xml:34(td) ./doc/common/tables/nova-rootwrap.xml:34(td) ./doc/common/tables/cinder-rootwrap.xml:34(td)
msgid "Which syslog facility to use. Valid values include auth, authpriv, syslog, local0, local1... Default value is 'syslog'"
msgstr ""
#: ./doc/common/tables/neutron-rootwrap.xml:37(td) ./doc/common/tables/nova-rootwrap.xml:37(td) ./doc/common/tables/cinder-rootwrap.xml:37(td)
msgid "syslog_log_level = ERROR"
msgstr ""
#: ./doc/common/tables/neutron-rootwrap.xml:38(td) ./doc/common/tables/nova-rootwrap.xml:38(td) ./doc/common/tables/cinder-rootwrap.xml:38(td)
msgid "Which messages to log. INFO means log all usage ERROR means only log unsuccessful attempts"
msgstr ""
#: ./doc/common/tables/neutron-rootwrap.xml:41(th) ./doc/common/tables/ceilometer-xenapi.xml:18(th)
msgid "[xenapi]"
msgstr ""
#: ./doc/common/tables/neutron-rootwrap.xml:44(td)
msgid "xenapi_connection_url = &lt;None&gt;"
msgstr ""
#: ./doc/common/tables/neutron-rootwrap.xml:45(td)
msgid "XenAPI configuration is only required by the L2 agent if it is to target a XenServer/XCP compute host's dom0."
msgstr ""
#: ./doc/common/tables/neutron-rootwrap.xml:52(td)
msgid "xenapi_connection_password = &lt;None&gt;"
msgstr ""
#: ./doc/common/tables/cinder-auth.xml:21(td) ./doc/common/tables/glance-registry.xml:37(td)
msgid "auth_strategy = noauth"
msgstr ""
#: ./doc/common/tables/cinder-auth.xml:22(td)
msgid "(StrOpt) The strategy to use for auth. Supports noauth, keystone, and deprecated."
msgstr ""
#: ./doc/common/tables/swift-swift-swift-constraints.xml:8(literal)
msgid "[swift-constraints]"
msgstr ""
#: ./doc/common/tables/swift-swift-swift-constraints.xml:8(literal) ./doc/common/tables/swift-swift-storage-policy-0.xml:8(literal) ./doc/common/tables/swift-swift-storage-policy-1.xml:8(literal) ./doc/common/tables/swift-swift-swift-hash.xml:8(literal)
msgid "swift.conf"
msgstr ""
#: ./doc/common/tables/swift-swift-swift-constraints.xml:20(td)
msgid "account_listing_limit = 10000"
msgstr ""
#: ./doc/common/tables/swift-swift-swift-constraints.xml:24(td)
msgid "container_listing_limit = 10000"
msgstr ""
#: ./doc/common/tables/swift-swift-swift-constraints.xml:28(td)
msgid "max_account_name_length = 256"
msgstr ""
#: ./doc/common/tables/swift-swift-swift-constraints.xml:32(td)
msgid "max_container_name_length = 256"
msgstr ""
#: ./doc/common/tables/swift-swift-swift-constraints.xml:36(td)
msgid "max_file_size = 5368709122"
msgstr ""
#: ./doc/common/tables/swift-swift-swift-constraints.xml:40(td)
msgid "max_header_size = 8192"
msgstr ""
#: ./doc/common/tables/swift-swift-swift-constraints.xml:41(td)
msgid "max_header_size is the max number of bytes in the utf8 encoding of each header. Using 8192 as default because eventlet use 8192 as max size of header line. This value may need to be increased when using identity v3 API tokens including more than 7 catalog entries. See also include_service_catalog in proxy-server.conf-sample (documented in overview_auth.rst)"
msgstr ""
#: ./doc/common/tables/swift-swift-swift-constraints.xml:44(td)
msgid "max_meta_count = 90"
msgstr ""
#: ./doc/common/tables/swift-swift-swift-constraints.xml:48(td)
msgid "max_meta_name_length = 128"
msgstr ""
#: ./doc/common/tables/swift-swift-swift-constraints.xml:52(td)
msgid "max_meta_overall_size = 4096"
msgstr ""
#: ./doc/common/tables/swift-swift-swift-constraints.xml:56(td)
msgid "max_meta_value_length = 256"
msgstr ""
#: ./doc/common/tables/swift-swift-swift-constraints.xml:60(td)
msgid "max_object_name_length = 1024"
msgstr ""
#: ./doc/common/tables/heat-qpid.xml:22(td) ./doc/common/tables/nova-qpid.xml:22(td) ./doc/common/tables/glance-qpid.xml:22(td) ./doc/common/tables/cinder-rpc.xml:78(td) ./doc/common/tables/nova-rpc_all.xml:62(td) ./doc/common/tables/sahara-qpid.xml:22(td) ./doc/common/tables/neutron-qpid.xml:22(td) ./doc/common/tables/keystone-qpid.xml:22(td) ./doc/common/tables/ceilometer-qpid.xml:22(td)
msgid "(IntOpt) Seconds between connection keepalive heartbeats."
msgstr ""
#: ./doc/common/tables/heat-qpid.xml:26(td) ./doc/common/tables/nova-qpid.xml:26(td) ./doc/common/tables/glance-qpid.xml:26(td) ./doc/common/tables/cinder-rpc.xml:82(td) ./doc/common/tables/nova-rpc_all.xml:66(td) ./doc/common/tables/sahara-qpid.xml:26(td) ./doc/common/tables/neutron-qpid.xml:26(td) ./doc/common/tables/keystone-qpid.xml:26(td) ./doc/common/tables/ceilometer-qpid.xml:26(td)
msgid "(StrOpt) Qpid broker hostname."
msgstr ""
#: ./doc/common/tables/heat-qpid.xml:30(td) ./doc/common/tables/nova-qpid.xml:30(td) ./doc/common/tables/glance-qpid.xml:30(td) ./doc/common/tables/cinder-rpc.xml:86(td) ./doc/common/tables/nova-rpc_all.xml:70(td) ./doc/common/tables/sahara-qpid.xml:30(td) ./doc/common/tables/neutron-qpid.xml:30(td) ./doc/common/tables/keystone-qpid.xml:30(td) ./doc/common/tables/ceilometer-qpid.xml:30(td)
msgid "(ListOpt) Qpid HA cluster host:port pairs."
msgstr ""
#: ./doc/common/tables/heat-qpid.xml:34(td) ./doc/common/tables/nova-qpid.xml:34(td) ./doc/common/tables/glance-qpid.xml:34(td) ./doc/common/tables/cinder-rpc.xml:90(td) ./doc/common/tables/nova-rpc_all.xml:74(td) ./doc/common/tables/sahara-qpid.xml:34(td) ./doc/common/tables/neutron-qpid.xml:34(td) ./doc/common/tables/keystone-qpid.xml:34(td) ./doc/common/tables/ceilometer-qpid.xml:34(td)
msgid "(StrOpt) Password for Qpid connection."
msgstr ""
#: ./doc/common/tables/heat-qpid.xml:38(td) ./doc/common/tables/nova-qpid.xml:38(td) ./doc/common/tables/glance-qpid.xml:38(td) ./doc/common/tables/cinder-rpc.xml:94(td) ./doc/common/tables/nova-rpc_all.xml:78(td) ./doc/common/tables/sahara-qpid.xml:38(td) ./doc/common/tables/neutron-qpid.xml:38(td) ./doc/common/tables/keystone-qpid.xml:38(td) ./doc/common/tables/ceilometer-qpid.xml:38(td)
msgid "(IntOpt) Qpid broker port."
msgstr ""
#: ./doc/common/tables/heat-qpid.xml:42(td) ./doc/common/tables/nova-qpid.xml:42(td) ./doc/common/tables/glance-qpid.xml:42(td) ./doc/common/tables/cinder-rpc.xml:98(td) ./doc/common/tables/nova-rpc_all.xml:82(td) ./doc/common/tables/sahara-qpid.xml:42(td) ./doc/common/tables/neutron-qpid.xml:42(td) ./doc/common/tables/keystone-qpid.xml:42(td) ./doc/common/tables/ceilometer-qpid.xml:42(td)
msgid "(StrOpt) Transport to use, either 'tcp' or 'ssl'."
msgstr ""
#: ./doc/common/tables/heat-qpid.xml:46(td) ./doc/common/tables/nova-qpid.xml:50(td) ./doc/common/tables/glance-qpid.xml:46(td) ./doc/common/tables/cinder-rpc.xml:102(td) ./doc/common/tables/nova-rpc_all.xml:90(td) ./doc/common/tables/sahara-qpid.xml:46(td) ./doc/common/tables/neutron-qpid.xml:46(td) ./doc/common/tables/keystone-qpid.xml:46(td) ./doc/common/tables/ceilometer-qpid.xml:46(td)
msgid "(StrOpt) Space separated list of SASL mechanisms to use for auth."
msgstr ""
#: ./doc/common/tables/heat-qpid.xml:50(td) ./doc/common/tables/nova-qpid.xml:54(td) ./doc/common/tables/glance-qpid.xml:50(td) ./doc/common/tables/cinder-rpc.xml:106(td) ./doc/common/tables/nova-rpc_all.xml:94(td) ./doc/common/tables/sahara-qpid.xml:50(td) ./doc/common/tables/neutron-qpid.xml:50(td) ./doc/common/tables/keystone-qpid.xml:50(td) ./doc/common/tables/ceilometer-qpid.xml:50(td)
msgid "(BoolOpt) Whether to disable the Nagle algorithm."
msgstr ""
#: ./doc/common/tables/heat-qpid.xml:53(td) ./doc/common/tables/nova-qpid.xml:57(td) ./doc/common/tables/glance-qpid.xml:53(td) ./doc/common/tables/cinder-rpc.xml:109(td) ./doc/common/tables/nova-rpc_all.xml:97(td) ./doc/common/tables/sahara-qpid.xml:53(td) ./doc/common/tables/neutron-qpid.xml:53(td) ./doc/common/tables/keystone-qpid.xml:53(td) ./doc/common/tables/ceilometer-qpid.xml:53(td)
msgid "qpid_topology_version = 1"
msgstr ""
#: ./doc/common/tables/heat-qpid.xml:54(td) ./doc/common/tables/nova-qpid.xml:58(td) ./doc/common/tables/glance-qpid.xml:54(td) ./doc/common/tables/cinder-rpc.xml:110(td) ./doc/common/tables/nova-rpc_all.xml:98(td) ./doc/common/tables/sahara-qpid.xml:54(td) ./doc/common/tables/neutron-qpid.xml:54(td) ./doc/common/tables/keystone-qpid.xml:54(td) ./doc/common/tables/ceilometer-qpid.xml:54(td)
msgid "(IntOpt) The qpid topology version to use. Version 1 is what was originally used by impl_qpid. Version 2 includes some backwards-incompatible changes that allow broker federation to work. Users should update to version 2 when they are able to take everything down, as it requires a clean break."
msgstr ""
#: ./doc/common/tables/heat-qpid.xml:58(td) ./doc/common/tables/nova-qpid.xml:62(td) ./doc/common/tables/glance-qpid.xml:58(td) ./doc/common/tables/cinder-rpc.xml:114(td) ./doc/common/tables/nova-rpc_all.xml:102(td) ./doc/common/tables/sahara-qpid.xml:58(td) ./doc/common/tables/neutron-qpid.xml:58(td) ./doc/common/tables/keystone-qpid.xml:58(td) ./doc/common/tables/ceilometer-qpid.xml:58(td)
msgid "(StrOpt) Username for Qpid connection."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-slo.xml:8(literal)
msgid "[filter-slo]"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-slo.xml:20(td) ./doc/common/tables/swift-proxy-server-filter-dlo.xml:20(td)
msgid "max_get_time = 86400"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-slo.xml:24(td)
msgid "max_manifest_segments = 1000"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-slo.xml:28(td)
msgid "max_manifest_size = 2097152"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-slo.xml:32(td)
msgid "min_segment_size = 1048576"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-slo.xml:36(td) ./doc/common/tables/swift-proxy-server-filter-dlo.xml:24(td)
msgid "rate_limit_after_segment = 10"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-slo.xml:37(td) ./doc/common/tables/swift-proxy-server-filter-dlo.xml:25(td)
msgid "Rate limit the download of large object segments after this segment is downloaded."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-slo.xml:40(td)
msgid "rate_limit_segments_per_sec = 0"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-slo.xml:41(td) ./doc/common/tables/swift-proxy-server-filter-dlo.xml:29(td)
msgid "Rate limit large object downloads at this rate. contact for a normal request. You can use '* replicas' at the end to have it use the number given times the number of replicas for the ring being used for the request. paste.deploy to use for auth. To use tempauth set to: `egg:swift#tempauth` each request"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-slo.xml:44(td)
msgid "use = egg:swift#slo"
msgstr ""
#: ./doc/common/tables/nova-zookeeper.xml:7(caption)
msgid "Description of Zookeeper configuration options"
msgstr ""
#: ./doc/common/tables/nova-zookeeper.xml:18(th)
msgid "[zookeeper]"
msgstr ""
#: ./doc/common/tables/nova-zookeeper.xml:21(td)
msgid "address = None"
msgstr ""
#: ./doc/common/tables/nova-zookeeper.xml:22(td)
msgid "(StrOpt) The ZooKeeper addresses for servicegroup service in the format of host1:port,host2:port,host3:port"
msgstr ""
#: ./doc/common/tables/nova-zookeeper.xml:25(td)
msgid "recv_timeout = 4000"
msgstr ""
#: ./doc/common/tables/nova-zookeeper.xml:26(td)
msgid "(IntOpt) The recv_timeout parameter for the zk session"
msgstr ""
#: ./doc/common/tables/nova-zookeeper.xml:29(td)
msgid "sg_prefix = /servicegroups"
msgstr ""
#: ./doc/common/tables/nova-zookeeper.xml:30(td)
msgid "(StrOpt) The prefix used in ZooKeeper to store ephemeral nodes"
msgstr ""
#: ./doc/common/tables/nova-zookeeper.xml:33(td)
msgid "sg_retry_interval = 5"
msgstr ""
#: ./doc/common/tables/nova-zookeeper.xml:34(td)
msgid "(IntOpt) Number of seconds to wait until retrying to join the session"
msgstr ""
#: ./doc/common/tables/nova-keymgr.xml:7(caption) ./doc/common/tables/cinder-keymgr.xml:7(caption)
msgid "Description of key manager configuration options"
msgstr ""
#: ./doc/common/tables/nova-keymgr.xml:18(th) ./doc/common/tables/cinder-keymgr.xml:18(th)
msgid "[keymgr]"
msgstr ""
#: ./doc/common/tables/nova-keymgr.xml:21(td)
msgid "api_class = nova.keymgr.conf_key_mgr.ConfKeyManager"
msgstr ""
#: ./doc/common/tables/nova-keymgr.xml:22(td) ./doc/common/tables/cinder-keymgr.xml:22(td)
msgid "(StrOpt) The full class name of the key manager API class"
msgstr ""
#: ./doc/common/tables/nova-keymgr.xml:25(td) ./doc/common/tables/cinder-keymgr.xml:33(td)
msgid "fixed_key = None"
msgstr ""
#: ./doc/common/tables/nova-keymgr.xml:26(td) ./doc/common/tables/cinder-keymgr.xml:34(td)
msgid "(StrOpt) Fixed key returned by key manager, specified in hex"
msgstr ""
#: ./doc/common/tables/swift-swift-storage-policy-0.xml:8(literal)
msgid "[storage-policy-0]"
msgstr ""
#: ./doc/common/tables/swift-swift-storage-policy-0.xml:20(td)
msgid "default = yes"
msgstr ""
#: ./doc/common/tables/swift-swift-storage-policy-0.xml:21(td)
msgid "0 means to not use a per-disk thread pool. It is recommended to keep this value small, as large values can result in high read latencies due to large queue depths. A good starting point is 4 threads per disk."
msgstr ""
#: ./doc/common/tables/swift-swift-storage-policy-0.xml:24(td)
msgid "name = Policy-0"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-cache.xml:8(literal) ./doc/common/tables/swift-object-expirer-filter-cache.xml:8(literal) ./doc/common/tables/swift-container-reconciler-filter-cache.xml:8(literal)
msgid "[filter-cache]"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-cache.xml:20(td) ./doc/common/tables/swift-memcache-memcache.xml:20(td)
msgid "memcache_max_connections = 2"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-cache.xml:21(td) ./doc/common/tables/swift-memcache-memcache.xml:21(td)
msgid "Max number of connections to each memcached server per worker services"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-cache.xml:24(td) ./doc/common/tables/swift-memcache-memcache.xml:24(td)
msgid "memcache_serialization_support = 2"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-cache.xml:28(td) ./doc/common/tables/swift-memcache-memcache.xml:28(td)
msgid "memcache_servers = 127.0.0.1:11211"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-cache.xml:29(td) ./doc/common/tables/swift-memcache-memcache.xml:29(td)
msgid "Comma separated list of memcached servers ip:port services"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-cache.xml:48(td)
msgid "set log_name = cache"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-cache.xml:52(td) ./doc/common/tables/swift-object-expirer-filter-cache.xml:20(td) ./doc/common/tables/swift-container-reconciler-filter-cache.xml:20(td)
msgid "use = egg:swift#memcache"
msgstr ""
#: ./doc/common/tables/nova-ldap.xml:7(caption) ./doc/common/tables/keystone-ldap.xml:7(caption)
msgid "Description of LDAP configuration options"
msgstr ""
#: ./doc/common/tables/nova-ldap.xml:21(td)
msgid "ldap_dns_base_dn = ou=hosts,dc=example,dc=org"
msgstr ""
#: ./doc/common/tables/nova-ldap.xml:22(td)
msgid "(StrOpt) Base DN for DNS entries in LDAP"
msgstr ""
#: ./doc/common/tables/nova-ldap.xml:25(td)
msgid "ldap_dns_password = password"
msgstr ""
#: ./doc/common/tables/nova-ldap.xml:26(td)
msgid "(StrOpt) Password for LDAP DNS"
msgstr ""
#: ./doc/common/tables/nova-ldap.xml:29(td)
msgid "ldap_dns_servers = ['dns.example.org']"
msgstr ""
#: ./doc/common/tables/nova-ldap.xml:30(td)
msgid "(MultiStrOpt) DNS Servers for LDAP DNS driver"
msgstr ""
#: ./doc/common/tables/nova-ldap.xml:33(td)
msgid "ldap_dns_soa_expiry = 86400"
msgstr ""
#: ./doc/common/tables/nova-ldap.xml:34(td)
msgid "(StrOpt) Expiry interval (in seconds) for LDAP DNS driver Statement of Authority"
msgstr ""
#: ./doc/common/tables/nova-ldap.xml:37(td)
msgid "ldap_dns_soa_hostmaster = hostmaster@example.org"
msgstr ""
#: ./doc/common/tables/nova-ldap.xml:38(td)
msgid "(StrOpt) Hostmaster for LDAP DNS driver Statement of Authority"
msgstr ""
#: ./doc/common/tables/nova-ldap.xml:41(td)
msgid "ldap_dns_soa_minimum = 7200"
msgstr ""
#: ./doc/common/tables/nova-ldap.xml:42(td)
msgid "(StrOpt) Minimum interval (in seconds) for LDAP DNS driver Statement of Authority"
msgstr ""
#: ./doc/common/tables/nova-ldap.xml:45(td)
msgid "ldap_dns_soa_refresh = 1800"
msgstr ""
#: ./doc/common/tables/nova-ldap.xml:46(td)
msgid "(StrOpt) Refresh interval (in seconds) for LDAP DNS driver Statement of Authority"
msgstr ""
#: ./doc/common/tables/nova-ldap.xml:49(td)
msgid "ldap_dns_soa_retry = 3600"
msgstr ""
#: ./doc/common/tables/nova-ldap.xml:50(td)
msgid "(StrOpt) Retry interval (in seconds) for LDAP DNS driver Statement of Authority"
msgstr ""
#: ./doc/common/tables/nova-ldap.xml:53(td)
msgid "ldap_dns_url = ldap://ldap.example.com:389"
msgstr ""
#: ./doc/common/tables/nova-ldap.xml:54(td)
msgid "(StrOpt) URL for LDAP server which will store DNS entries"
msgstr ""
#: ./doc/common/tables/nova-ldap.xml:57(td)
msgid "ldap_dns_user = uid=admin,ou=people,dc=example,dc=org"
msgstr ""
#: ./doc/common/tables/nova-ldap.xml:58(td)
msgid "(StrOpt) User for LDAP DNS"
msgstr ""
#: ./doc/common/tables/swift-container-server-filter-recon.xml:8(literal) ./doc/common/tables/swift-account-server-filter-recon.xml:8(literal) ./doc/common/tables/swift-object-server-filter-recon.xml:8(literal)
msgid "[filter-recon]"
msgstr ""
#: ./doc/common/tables/swift-container-server-filter-recon.xml:24(td) ./doc/common/tables/swift-account-server-filter-recon.xml:24(td) ./doc/common/tables/swift-object-server-filter-recon.xml:28(td)
msgid "use = egg:swift#recon"
msgstr ""
#: ./doc/common/tables/sahara-debug.xml:7(caption) ./doc/common/tables/heat-debug.xml:7(caption) ./doc/common/tables/ceilometer-debug.xml:7(caption) ./doc/common/tables/trove-debug.xml:7(caption) ./doc/common/tables/keystone-debug.xml:7(caption)
msgid "Description of debug configuration options"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-pipeline-main.xml:20(td)
msgid "pipeline = catch_errors gatekeeper healthcheck proxy-logging cache container_sync bulk tempurl ratelimit tempauth container-quotas account-quotas slo dlo proxy-logging proxy-server"
msgstr ""
#: ./doc/common/tables/ceilometer-auth.xml:18(th)
msgid "[service_credentials]"
msgstr ""
#: ./doc/common/tables/ceilometer-auth.xml:22(td)
msgid "(BoolOpt) Disables X.509 certificate validation when an SSL connection to Identity Service is established."
msgstr ""
#: ./doc/common/tables/ceilometer-auth.xml:25(td)
msgid "os_auth_url = http://localhost:5000/v2.0"
msgstr ""
#: ./doc/common/tables/ceilometer-auth.xml:26(td)
msgid "(StrOpt) Auth URL to use for OpenStack service access."
msgstr ""
#: ./doc/common/tables/ceilometer-auth.xml:29(td)
msgid "os_cacert = None"
msgstr ""
#: ./doc/common/tables/ceilometer-auth.xml:30(td)
msgid "(StrOpt) Certificate chain for SSL validation."
msgstr ""
#: ./doc/common/tables/ceilometer-auth.xml:33(td)
msgid "os_endpoint_type = publicURL"
msgstr ""
#: ./doc/common/tables/ceilometer-auth.xml:34(td)
msgid "(StrOpt) Type of endpoint in Identity service catalog to use for communication with OpenStack services."
msgstr ""
#: ./doc/common/tables/ceilometer-auth.xml:37(td)
msgid "os_password = admin"
msgstr ""
#: ./doc/common/tables/ceilometer-auth.xml:38(td)
msgid "(StrOpt) Password to use for OpenStack service access."
msgstr ""
#: ./doc/common/tables/ceilometer-auth.xml:41(td) ./doc/common/tables/nova-volumes.xml:79(td) ./doc/common/tables/trove-api.xml:77(td) ./doc/common/tables/sahara-common.xml:95(td) ./doc/common/tables/cinder-compute.xml:45(td) ./doc/common/tables/glance-common.xml:104(td)
msgid "os_region_name = None"
msgstr ""
#: ./doc/common/tables/ceilometer-auth.xml:42(td)
msgid "(StrOpt) Region name to use for OpenStack service endpoints."
msgstr ""
#: ./doc/common/tables/ceilometer-auth.xml:45(td)
msgid "os_tenant_id ="
msgstr ""
#: ./doc/common/tables/ceilometer-auth.xml:46(td)
msgid "(StrOpt) Tenant ID to use for OpenStack service access."
msgstr ""
#: ./doc/common/tables/ceilometer-auth.xml:49(td)
msgid "os_tenant_name = admin"
msgstr ""
#: ./doc/common/tables/ceilometer-auth.xml:50(td)
msgid "(StrOpt) Tenant name to use for OpenStack service access."
msgstr ""
#: ./doc/common/tables/ceilometer-auth.xml:53(td)
msgid "os_username = ceilometer"
msgstr ""
#: ./doc/common/tables/ceilometer-auth.xml:54(td)
msgid "(StrOpt) User name to use for OpenStack service access."
msgstr ""
#: ./doc/common/tables/cinder-quota.xml:7(caption) ./doc/common/tables/heat-quota.xml:7(caption) ./doc/common/tables/trove-quota.xml:7(caption) ./doc/common/tables/nova-quota.xml:7(caption)
msgid "Description of quota configuration options"
msgstr ""
#: ./doc/common/tables/cinder-quota.xml:25(td)
msgid "quota_backup_gigabytes = 1000"
msgstr ""
#: ./doc/common/tables/cinder-quota.xml:26(td) ./doc/common/tables/cinder-conf-changes.xml:213(td)
msgid "(IntOpt) Total amount of storage, in gigabytes, allowed for backups per project"
msgstr ""
#: ./doc/common/tables/cinder-quota.xml:29(td)
msgid "quota_backups = 10"
msgstr ""
#: ./doc/common/tables/cinder-quota.xml:30(td) ./doc/common/tables/cinder-conf-changes.xml:217(td)
msgid "(IntOpt) Number of volume backups allowed per project"
msgstr ""
#: ./doc/common/tables/cinder-quota.xml:33(td)
msgid "quota_consistencygroups = 10"
msgstr ""
#: ./doc/common/tables/cinder-quota.xml:34(td) ./doc/common/tables/cinder-conf-changes.xml:221(td)
msgid "(IntOpt) Number of consistencygroups allowed per project"
msgstr ""
#: ./doc/common/tables/cinder-quota.xml:37(td)
msgid "quota_driver = cinder.quota.DbQuotaDriver"
msgstr ""
#: ./doc/common/tables/cinder-quota.xml:38(td) ./doc/common/tables/neutron-quotas.xml:33(td) ./doc/common/tables/nova-quota.xml:34(td)
msgid "(StrOpt) Default driver to use for quota checks"
msgstr ""
#: ./doc/common/tables/cinder-quota.xml:41(td)
msgid "quota_gigabytes = 1000"
msgstr ""
#: ./doc/common/tables/cinder-quota.xml:42(td)
msgid "(IntOpt) Total amount of storage, in gigabytes, allowed for volumes and snapshots per project"
msgstr ""
#: ./doc/common/tables/cinder-quota.xml:45(td)
msgid "quota_snapshots = 10"
msgstr ""
#: ./doc/common/tables/cinder-quota.xml:46(td)
msgid "(IntOpt) Number of volume snapshots allowed per project"
msgstr ""
#: ./doc/common/tables/cinder-quota.xml:49(td)
msgid "quota_volumes = 10"
msgstr ""
#: ./doc/common/tables/cinder-quota.xml:50(td)
msgid "(IntOpt) Number of volumes allowed per project"
msgstr ""
#: ./doc/common/tables/cinder-quota.xml:57(td)
msgid "use_default_quota_class = True"
msgstr ""
#: ./doc/common/tables/cinder-quota.xml:58(td)
msgid "(BoolOpt) Enables or disables use of default quota class with default quota."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-account-quotas.xml:8(literal)
msgid "[filter-account-quotas]"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-account-quotas.xml:20(td)
msgid "use = egg:swift#account_quotas"
msgstr ""
#: ./doc/common/tables/keystone-os_inherit.xml:7(caption)
msgid "Description of os_inherit configuration options"
msgstr ""
#: ./doc/common/tables/keystone-os_inherit.xml:18(th)
msgid "[os_inherit]"
msgstr ""
#: ./doc/common/tables/keystone-os_inherit.xml:22(td)
msgid "(BoolOpt) role-assignment inheritance to projects from owning domain can be optionally enabled."
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:7(caption)
msgid "Description of SDN-VE configuration options"
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:18(th)
msgid "[SDNVE]"
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:21(td)
msgid "base_url = /one/nb/v2/"
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:22(td)
msgid "(StrOpt) Base URL for SDN-VE controller REST API."
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:25(td)
msgid "controller_ips = 127.0.0.1"
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:26(td)
msgid "(ListOpt) List of IP addresses of SDN-VE controller(s)."
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:29(td)
msgid "default_tenant_type = OVERLAY"
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:30(td)
msgid "(StrOpt) Tenant type: OVERLAY (default) or OF."
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:33(td)
msgid "format = json"
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:34(td)
msgid "(StrOpt) SDN-VE request/response format."
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:37(td)
msgid "info = sdnve_info_string"
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:38(td)
msgid "(StrOpt) SDN-VE RPC subject."
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:41(td)
msgid "integration_bridge = None"
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:45(td)
msgid "interface_mappings ="
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:46(td)
msgid "(ListOpt) List of &lt;physical_network_name&gt;:&lt;interface_name&gt; mappings."
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:49(td)
msgid "of_signature = SDNVE-OF"
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:50(td)
msgid "(StrOpt) The string in tenant description that indicates the tenant is a OF tenant."
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:53(td)
msgid "out_of_band = True"
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:54(td)
msgid "(BoolOpt) Indicating if controller is out of band or not."
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:57(td)
msgid "overlay_signature = SDNVE-OVERLAY"
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:58(td)
msgid "(StrOpt) The string in tenant description that indicates the tenant is a OVERLAY tenant."
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:61(td)
msgid "password = admin"
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:62(td)
msgid "(StrOpt) SDN-VE administrator password."
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:65(td)
msgid "port = 8443"
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:66(td)
msgid "(StrOpt) SDN-VE controller port number."
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:69(td)
msgid "reset_bridge = True"
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:70(td)
msgid "(BoolOpt) Whether to reset the integration bridge before use."
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:73(td)
msgid "use_fake_controller = False"
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:74(td)
msgid "(BoolOpt) Whether to use a fake controller."
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:77(td)
msgid "userid = admin"
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:78(td)
msgid "(StrOpt) SDN-VE administrator user ID."
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:81(th)
msgid "[SDNVE_AGENT]"
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:84(td) ./doc/common/tables/neutron-hyperv_agent.xml:37(td)
msgid "polling_interval = 2"
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:85(td)
msgid "(IntOpt) Agent polling interval if necessary."
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:88(td) ./doc/common/tables/neutron-common.xml:189(td) ./doc/common/tables/neutron-common.xml:200(td)
msgid "root_helper = sudo"
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:89(td)
msgid "(StrOpt) Using root helper."
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:92(td)
msgid "rpc = True"
msgstr ""
#: ./doc/common/tables/neutron-sdnve.xml:93(td)
msgid "(BoolOpt) Whether to use rpc."
msgstr ""
#: ./doc/common/tables/nova-compute.xml:7(caption) ./doc/common/tables/trove-compute.xml:7(caption) ./doc/common/tables/neutron-compute.xml:7(caption) ./doc/common/tables/cinder-compute.xml:7(caption)
msgid "Description of Compute configuration options"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:21(td)
msgid "compute_available_monitors = ['nova.compute.monitors.all_monitors']"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:22(td)
msgid "(MultiStrOpt) Monitor classes available to the compute which may be specified more than once."
msgstr ""
#: ./doc/common/tables/nova-compute.xml:25(td)
msgid "compute_driver = None"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:26(td)
msgid "(StrOpt) Driver to use for controlling virtualization. Options include: libvirt.LibvirtDriver, xenapi.XenAPIDriver, fake.FakeDriver, baremetal.BareMetalDriver, vmwareapi.VMwareVCDriver, hyperv.HyperVDriver"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:29(td)
msgid "compute_manager = nova.compute.manager.ComputeManager"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:30(td)
msgid "(StrOpt) Full class name for the Manager for compute"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:33(td)
msgid "compute_monitors ="
msgstr ""
#: ./doc/common/tables/nova-compute.xml:34(td)
msgid "(ListOpt) A list of monitors that can be used for getting compute metrics."
msgstr ""
#: ./doc/common/tables/nova-compute.xml:37(td)
msgid "compute_resources = vcpu"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:38(td) ./doc/common/tables/nova-conf-changes.xml:29(td)
msgid "(ListOpt) The names of the extra resources to track."
msgstr ""
#: ./doc/common/tables/nova-compute.xml:41(td)
msgid "compute_stats_class = nova.compute.stats.Stats"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:42(td)
msgid "(StrOpt) Class that will manage stats for the local compute host"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:45(td)
msgid "console_host = localhost"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:46(td)
msgid "(StrOpt) Console proxy host to use to connect to instances on this host."
msgstr ""
#: ./doc/common/tables/nova-compute.xml:49(td)
msgid "console_manager = nova.console.manager.ConsoleProxyManager"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:50(td)
msgid "(StrOpt) Full class name for the Manager for console proxy"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:53(td)
msgid "default_flavor = m1.small"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:54(td)
msgid "(StrOpt) Default flavor to use for the EC2 API only. The Nova API does not support a default flavor."
msgstr ""
#: ./doc/common/tables/nova-compute.xml:57(td) ./doc/common/tables/heat-amqp.xml:33(td) ./doc/common/tables/trove-common.xml:37(td)
msgid "default_notification_level = INFO"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:58(td) ./doc/common/tables/trove-common.xml:38(td)
msgid "(StrOpt) Default notification level for outgoing notifications"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:61(td) ./doc/common/tables/heat-amqp.xml:37(td) ./doc/common/tables/keystone-amqp.xml:33(td)
msgid "default_publisher_id = None"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:62(td) ./doc/common/tables/trove-common.xml:46(td) ./doc/common/tables/keystone-amqp.xml:34(td)
msgid "(StrOpt) Default publisher_id for outgoing notifications"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:65(td)
msgid "enable_instance_password = True"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:66(td)
msgid "(BoolOpt) Enables returning of the instance password by the relevant server API calls such as create, rebuild or rescue, If the hypervisor does not support password injection then the password returned will not be correct"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:69(td)
msgid "heal_instance_info_cache_interval = 60"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:70(td)
msgid "(IntOpt) Number of seconds between instance info_cache self healing updates"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:73(td)
msgid "image_cache_manager_interval = 2400"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:74(td)
msgid "(IntOpt) Number of seconds to wait between runs of the image cache manager. Set to -1 to disable. Setting this to 0 will disable, but this will change in the K release to mean \"run at the default rate\"."
msgstr ""
#: ./doc/common/tables/nova-compute.xml:77(td)
msgid "image_cache_subdirectory_name = _base"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:78(td)
msgid "(StrOpt) Where cached images are stored under $instances_path. This is NOT the full path - just a folder name. For per-compute-host cached images, set to _base_$my_ip"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:81(td)
msgid "instance_build_timeout = 0"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:82(td)
msgid "(IntOpt) Amount of time in seconds an instance can be in BUILD before going into ERROR status.Set to 0 to disable."
msgstr ""
#: ./doc/common/tables/nova-compute.xml:85(td)
msgid "instance_delete_interval = 300"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:86(td)
msgid "(IntOpt) Interval in seconds for retrying failed instance file deletes"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:89(td)
msgid "instance_usage_audit = False"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:90(td)
msgid "(BoolOpt) Generate periodic compute.instance.exists notifications"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:93(td)
msgid "instance_usage_audit_period = month"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:94(td)
msgid "(StrOpt) Time period to generate instance usages for. Time period must be hour, day, month or year"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:97(td)
msgid "instances_path = $state_path/instances"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:98(td)
msgid "(StrOpt) Where instances are stored on disk"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:101(td)
msgid "maximum_instance_delete_attempts = 5"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:102(td)
msgid "(IntOpt) The number of times to attempt to reap an instance's files."
msgstr ""
#: ./doc/common/tables/nova-compute.xml:105(td)
msgid "reboot_timeout = 0"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:106(td)
msgid "(IntOpt) Automatically hard reboot an instance if it has been stuck in a rebooting state longer than N seconds. Set to 0 to disable."
msgstr ""
#: ./doc/common/tables/nova-compute.xml:109(td)
msgid "reclaim_instance_interval = 0"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:110(td)
msgid "(IntOpt) Interval in seconds for reclaiming deleted instances"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:113(td)
msgid "rescue_timeout = 0"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:114(td)
msgid "(IntOpt) Automatically unrescue an instance after N seconds. Set to 0 to disable."
msgstr ""
#: ./doc/common/tables/nova-compute.xml:117(td)
msgid "resize_confirm_window = 0"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:118(td)
msgid "(IntOpt) Automatically confirm resizes after N seconds. Set to 0 to disable."
msgstr ""
#: ./doc/common/tables/nova-compute.xml:121(td)
msgid "resume_guests_state_on_host_boot = False"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:122(td)
msgid "(BoolOpt) Whether to start guests that were running before the host rebooted"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:125(td)
msgid "running_deleted_instance_action = reap"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:126(td)
msgid "(StrOpt) Action to take if a running deleted instance is detected.Valid options are 'noop', 'log', 'shutdown', or 'reap'. Set to 'noop' to take no action."
msgstr ""
#: ./doc/common/tables/nova-compute.xml:129(td)
msgid "running_deleted_instance_poll_interval = 1800"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:130(td)
msgid "(IntOpt) Number of seconds to wait between runs of the cleanup task."
msgstr ""
#: ./doc/common/tables/nova-compute.xml:133(td)
msgid "running_deleted_instance_timeout = 0"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:134(td)
msgid "(IntOpt) Number of seconds after being deleted when a running instance should be considered eligible for cleanup."
msgstr ""
#: ./doc/common/tables/nova-compute.xml:137(td)
msgid "shelved_offload_time = 0"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:138(td)
msgid "(IntOpt) Time in seconds before a shelved instance is eligible for removing from a host. -1 never offload, 0 offload when shelved"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:141(td)
msgid "shelved_poll_interval = 3600"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:142(td)
msgid "(IntOpt) Interval in seconds for polling shelved instances to offload. Set to -1 to disable.Setting this to 0 will disable, but this will change in Juno to mean \"run at the default rate\"."
msgstr ""
#: ./doc/common/tables/nova-compute.xml:145(td)
msgid "shutdown_timeout = 60"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:146(td) ./doc/common/tables/nova-conf-changes.xml:41(td)
msgid "(IntOpt) Total amount of time to wait in seconds for an instance to perform a clean shutdown."
msgstr ""
#: ./doc/common/tables/nova-compute.xml:149(td)
msgid "sync_power_state_interval = 600"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:150(td)
msgid "(IntOpt) Interval to sync power states between the database and the hypervisor. Set to -1 to disable. Setting this to 0 will disable, but this will change in Juno to mean \"run at the default rate\"."
msgstr ""
#: ./doc/common/tables/nova-compute.xml:153(td)
msgid "vif_plugging_is_fatal = True"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:154(td)
msgid "(BoolOpt) Fail instance boot if vif plugging fails"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:157(td)
msgid "vif_plugging_timeout = 300"
msgstr ""
#: ./doc/common/tables/nova-compute.xml:158(td)
msgid "(IntOpt) Number of seconds to wait for neutron vif plugging events to arrive before continuing or failing (see vif_plugging_is_fatal). If this is set to zero and vif_plugging_is_fatal is False, events should not be expected to arrive at all."
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:21(td)
msgid "aggregate_image_properties_isolation_namespace = None"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:22(td)
msgid "(StrOpt) Force the filter to consider only keys matching the given namespace."
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:25(td)
msgid "aggregate_image_properties_isolation_separator = ."
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:26(td)
msgid "(StrOpt) The separator used between the namespace and keys"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:29(td)
msgid "baremetal_scheduler_default_filters = RetryFilter, AvailabilityZoneFilter, ComputeFilter, ComputeCapabilitiesFilter, ImagePropertiesFilter, ExactRamFilter, ExactDiskFilter, ExactCoreFilter"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:30(td) ./doc/common/tables/nova-conf-changes.xml:17(td)
msgid "(ListOpt) Which filter class names to use for filtering baremetal hosts when not specified in the request."
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:33(td)
msgid "cpu_allocation_ratio = 16.0"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:34(td)
msgid "(FloatOpt) Virtual CPU to physical CPU allocation ratio which affects all CPU filters. This configuration specifies a global ratio for CoreFilter. For AggregateCoreFilter, it will fall back to this configuration value if no per-aggregate setting found."
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:37(td)
msgid "disk_allocation_ratio = 1.0"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:38(td)
msgid "(FloatOpt) Virtual disk to physical disk allocation ratio"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:41(td)
msgid "isolated_hosts ="
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:42(td)
msgid "(ListOpt) Host reserved for specific images"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:45(td)
msgid "isolated_images ="
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:46(td)
msgid "(ListOpt) Images to run on isolated host"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:49(td)
msgid "max_instances_per_host = 50"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:50(td)
msgid "(IntOpt) Ignore hosts that have too many instances"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:53(td)
msgid "max_io_ops_per_host = 8"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:54(td)
msgid "(IntOpt) Tells filters to ignore hosts that have this many or more instances currently in build, resize, snapshot, migrate, rescue or unshelve task states"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:57(td)
msgid "ram_allocation_ratio = 1.5"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:58(td)
msgid "(FloatOpt) Virtual ram to physical ram allocation ratio which affects all ram filters. This configuration specifies a global ratio for RamFilter. For AggregateRamFilter, it will fall back to this configuration value if no per-aggregate setting found."
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:61(td)
msgid "ram_weight_multiplier = 1.0"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:62(td) ./doc/common/tables/nova-scheduler.xml:129(td)
msgid "(FloatOpt) Multiplier used for weighing ram. Negative numbers mean to stack vs spread."
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:65(td)
msgid "reserved_host_disk_mb = 0"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:66(td)
msgid "(IntOpt) Amount of disk in MB to reserve for the host"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:69(td)
msgid "reserved_host_memory_mb = 512"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:70(td)
msgid "(IntOpt) Amount of memory in MB to reserve for the host"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:73(td)
msgid "restrict_isolated_hosts_to_isolated_images = True"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:74(td)
msgid "(BoolOpt) Whether to force isolated hosts to run only isolated images"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:77(td)
msgid "scheduler_available_filters = ['nova.scheduler.filters.all_filters']"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:78(td)
msgid "(MultiStrOpt) Filter classes available to the scheduler which may be specified more than once. An entry of \"nova.scheduler.filters.standard_filters\" maps to all filters included with nova."
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:81(td)
msgid "scheduler_default_filters = RetryFilter, AvailabilityZoneFilter, RamFilter, ComputeFilter, ComputeCapabilitiesFilter, ImagePropertiesFilter, ServerGroupAntiAffinityFilter, ServerGroupAffinityFilter"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:85(td)
msgid "scheduler_driver = nova.scheduler.filter_scheduler.FilterScheduler"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:86(td)
msgid "(StrOpt) Default driver to use for the scheduler"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:89(td)
msgid "scheduler_driver_task_period = 60"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:90(td)
msgid "(IntOpt) How often (in seconds) to run periodic tasks in the scheduler driver of your choice. Please note this is likely to interact with the value of service_down_time, but exactly how they interact will depend on your choice of scheduler driver."
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:93(td)
msgid "scheduler_host_manager = nova.scheduler.host_manager.HostManager"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:97(td)
msgid "scheduler_host_subset_size = 1"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:98(td)
msgid "(IntOpt) New instances will be scheduled on a host chosen randomly from a subset of the N best hosts. This property defines the subset size that a host is chosen from. A value of 1 chooses the first host returned by the weighing functions. This value must be at least 1. Any value less than 1 will be ignored, and 1 will be used instead"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:105(td)
msgid "scheduler_manager = nova.scheduler.manager.SchedulerManager"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:110(td)
msgid "(IntOpt) Maximum number of attempts to schedule an instance"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:113(td)
msgid "scheduler_topic = scheduler"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:114(td)
msgid "(StrOpt) The topic scheduler nodes listen on"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:117(td)
msgid "scheduler_use_baremetal_filters = False"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:118(td) ./doc/common/tables/nova-conf-changes.xml:37(td)
msgid "(BoolOpt) Flag to decide whether to use baremetal_scheduler_default_filters or not."
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:121(td)
msgid "scheduler_weight_classes = nova.scheduler.weights.all_weighers"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:122(td)
msgid "(ListOpt) Which weight class names to use for weighing hosts"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:128(td)
msgid "ram_weight_multiplier = 10.0"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:132(td)
msgid "scheduler_filter_classes = nova.cells.filters.all_filters"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:133(td)
msgid "(ListOpt) Filter classes the cells scheduler should use. An entry of \"nova.cells.filters.all_filters\" maps to all cells filters included with nova."
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:136(td)
msgid "scheduler_retries = 10"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:137(td)
msgid "(IntOpt) How many retries when no cells are available."
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:140(td)
msgid "scheduler_retry_delay = 2"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:141(td)
msgid "(IntOpt) How often to retry in seconds when no cells are available."
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:144(td)
msgid "scheduler_weight_classes = nova.cells.weights.all_weighers"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:145(td)
msgid "(ListOpt) Weigher classes the cells scheduler should use. An entry of \"nova.cells.weights.all_weighers\" maps to all cell weighers included with nova."
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:148(th)
msgid "[metrics]"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:151(td)
msgid "required = True"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:152(td)
msgid "(BoolOpt) How to treat the unavailable metrics. When a metric is NOT available for a host, if it is set to be True, it would raise an exception, so it is recommended to use the scheduler filter MetricFilter to filter out those hosts. If it is set to be False, the unavailable metric would be treated as a negative factor in weighing process, the returned value would be set by the option weight_of_unavailable."
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:155(td)
msgid "weight_multiplier = 1.0"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:156(td)
msgid "(FloatOpt) Multiplier used for weighing metrics."
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:159(td)
msgid "weight_of_unavailable = -10000.0"
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:160(td)
msgid "(FloatOpt) The final weight value to be returned if required is set to False and any one of the metrics set by weight_setting is unavailable."
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:163(td)
msgid "weight_setting ="
msgstr ""
#: ./doc/common/tables/nova-scheduler.xml:164(td)
msgid "(ListOpt) How the metrics are going to be weighed. This should be in the form of \"&lt;name1&gt;=&lt;ratio1&gt;, &lt;name2&gt;=&lt;ratio2&gt;, ...\", where &lt;nameX&gt; is one of the metrics to be weighed, and &lt;ratioX&gt; is the corresponding ratio. So for \"name1=1.0, name2=-1.0\" The final weight would be name1.value * 1.0 + name2.value * -1.0."
msgstr ""
#: ./doc/common/tables/cinder-backups_ceph.xml:7(caption)
msgid "Description of Ceph backup driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-backups_ceph.xml:21(td)
msgid "backup_ceph_chunk_size = 134217728"
msgstr ""
#: ./doc/common/tables/cinder-backups_ceph.xml:22(td)
msgid "(IntOpt) The chunk size, in bytes, that a backup is broken into before transfer to the Ceph object store."
msgstr ""
#: ./doc/common/tables/cinder-backups_ceph.xml:25(td)
msgid "backup_ceph_conf = /etc/ceph/ceph.conf"
msgstr ""
#: ./doc/common/tables/cinder-backups_ceph.xml:26(td)
msgid "(StrOpt) Ceph configuration file to use."
msgstr ""
#: ./doc/common/tables/cinder-backups_ceph.xml:29(td)
msgid "backup_ceph_pool = backups"
msgstr ""
#: ./doc/common/tables/cinder-backups_ceph.xml:30(td)
msgid "(StrOpt) The Ceph pool where volume backups are stored."
msgstr ""
#: ./doc/common/tables/cinder-backups_ceph.xml:33(td)
msgid "backup_ceph_stripe_count = 0"
msgstr ""
#: ./doc/common/tables/cinder-backups_ceph.xml:34(td)
msgid "(IntOpt) RBD stripe count to use when creating a backup image."
msgstr ""
#: ./doc/common/tables/cinder-backups_ceph.xml:37(td)
msgid "backup_ceph_stripe_unit = 0"
msgstr ""
#: ./doc/common/tables/cinder-backups_ceph.xml:38(td)
msgid "(IntOpt) RBD stripe unit to use when creating a backup image."
msgstr ""
#: ./doc/common/tables/cinder-backups_ceph.xml:41(td)
msgid "backup_ceph_user = cinder"
msgstr ""
#: ./doc/common/tables/cinder-backups_ceph.xml:42(td)
msgid "(StrOpt) The Ceph user to connect with. Default here is to use the same user as for Cinder volumes. If not using cephx this should be set to None."
msgstr ""
#: ./doc/common/tables/cinder-backups_ceph.xml:45(td)
msgid "restore_discard_excess_bytes = True"
msgstr ""
#: ./doc/common/tables/cinder-backups_ceph.xml:46(td)
msgid "(BoolOpt) If True, always discard excess bytes when restoring volumes i.e. pad with zeroes."
msgstr ""
#. Warning: Do not edit this file. It is automatically generated and your changes will be overwritten. The tool to do so lives in the openstack-doc-tools repository.
#: ./doc/common/tables/heat-conf-changes.xml:4(title)
msgid "New, updated and deprecated options in Juno for Orchestration"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:6(caption) ./doc/common/tables/glance-conf-changes.xml:6(caption) ./doc/common/tables/neutron-conf-changes.xml:6(caption) ./doc/common/tables/keystone-conf-changes.xml:6(caption) ./doc/common/tables/ceilometer-conf-changes.xml:6(caption) ./doc/common/tables/trove-conf-changes.xml:6(caption) ./doc/common/tables/nova-conf-changes.xml:6(caption) ./doc/common/tables/swift-conf-changes.xml:6(caption) ./doc/common/tables/cinder-conf-changes.xml:6(caption)
msgid "New options"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:11(td) ./doc/common/tables/glance-conf-changes.xml:11(td) ./doc/common/tables/neutron-conf-changes.xml:11(td) ./doc/common/tables/keystone-conf-changes.xml:11(td) ./doc/common/tables/ceilometer-conf-changes.xml:11(td) ./doc/common/tables/trove-conf-changes.xml:11(td) ./doc/common/tables/nova-conf-changes.xml:11(td) ./doc/common/tables/swift-conf-changes.xml:11(td) ./doc/common/tables/cinder-conf-changes.xml:11(td)
msgid "Option = default value"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:12(td) ./doc/common/tables/glance-conf-changes.xml:12(td) ./doc/common/tables/neutron-conf-changes.xml:12(td) ./doc/common/tables/keystone-conf-changes.xml:12(td) ./doc/common/tables/ceilometer-conf-changes.xml:12(td) ./doc/common/tables/trove-conf-changes.xml:12(td) ./doc/common/tables/nova-conf-changes.xml:12(td) ./doc/common/tables/swift-conf-changes.xml:12(td) ./doc/common/tables/cinder-conf-changes.xml:12(td)
msgid "(Type) Help string"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:16(td)
msgid "[DEFAULT] action_retry_limit = 5"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:17(td) ./doc/common/tables/heat-api.xml:22(td)
msgid "(IntOpt) Number of times to retry to bring a resource to a non-error state. Set to 0 to disable retries."
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:20(td) ./doc/common/tables/neutron-conf-changes.xml:52(td)
msgid "[DEFAULT] kombu_reconnect_delay = 1.0"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:21(td) ./doc/common/tables/neutron-conf-changes.xml:53(td) ./doc/common/tables/glance-rabbitmq.xml:30(td) ./doc/common/tables/heat-rabbitmq.xml:22(td) ./doc/common/tables/keystone-rabbitmq.xml:26(td) ./doc/common/tables/nova-kombu.xml:22(td) ./doc/common/tables/sahara-rpc.xml:22(td) ./doc/common/tables/cinder-rpc.xml:42(td) ./doc/common/tables/nova-rpc_all.xml:34(td) ./doc/common/tables/neutron-rabbitmq.xml:22(td) ./doc/common/tables/ceilometer-rabbitmq.xml:26(td)
msgid "(FloatOpt) How long to wait before reconnecting in response to an AMQP consumer cancel notification."
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:24(td)
msgid "[DEFAULT] num_engine_workers = 1"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:25(td) ./doc/common/tables/heat-api.xml:46(td)
msgid "(IntOpt) Number of heat-engine processes to fork and run."
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:28(td) ./doc/common/tables/neutron-conf-changes.xml:84(td) ./doc/common/tables/ceilometer-conf-changes.xml:36(td)
msgid "[DEFAULT] rabbit_login_method = AMQPLAIN"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:32(td)
msgid "[DEFAULT] stack_user_domain_id = None"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:33(td) ./doc/common/tables/heat-api.xml:74(td)
msgid "(StrOpt) Keystone domain ID which contains heat template-defined users. If this option is set, stack_user_domain_name option will be ignored."
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:36(td)
msgid "[DEFAULT] stack_user_domain_name = None"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:37(td) ./doc/common/tables/heat-api.xml:78(td)
msgid "(StrOpt) Keystone domain name which contains heat template-defined users. If `stack_user_domain_id` option is set, this option is ignored."
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:40(td) ./doc/common/tables/neutron-conf-changes.xml:100(td) ./doc/common/tables/ceilometer-conf-changes.xml:44(td)
msgid "[DEFAULT] transport_url = None"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:44(td) ./doc/common/tables/neutron-conf-changes.xml:104(td) ./doc/common/tables/trove-conf-changes.xml:96(td)
msgid "[DEFAULT] use_syslog_rfc_format = False"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:48(td)
msgid "[clients_cinder] http_log_debug = False"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:52(td)
msgid "[clients_glance] ca_file = None"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:56(td)
msgid "[clients_glance] cert_file = None"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:60(td)
msgid "[clients_glance] endpoint_type = publicURL"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:64(td)
msgid "[clients_glance] insecure = False"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:68(td)
msgid "[clients_glance] key_file = None"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:72(td)
msgid "[clients_nova] http_log_debug = False"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:76(td) ./doc/common/tables/ceilometer-conf-changes.xml:92(td) ./doc/common/tables/cinder-conf-changes.xml:416(td)
msgid "[database] db_inc_retry_interval = True"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:80(td) ./doc/common/tables/ceilometer-conf-changes.xml:96(td) ./doc/common/tables/cinder-conf-changes.xml:420(td)
msgid "[database] db_max_retries = 20"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:84(td) ./doc/common/tables/ceilometer-conf-changes.xml:100(td) ./doc/common/tables/cinder-conf-changes.xml:424(td)
msgid "[database] db_max_retry_interval = 10"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:88(td) ./doc/common/tables/ceilometer-conf-changes.xml:104(td) ./doc/common/tables/cinder-conf-changes.xml:428(td)
msgid "[database] db_retry_interval = 1"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:92(td) ./doc/common/tables/neutron-conf-changes.xml:176(td) ./doc/common/tables/ceilometer-conf-changes.xml:112(td) ./doc/common/tables/cinder-conf-changes.xml:432(td)
msgid "[database] mysql_sql_mode = TRADITIONAL"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:96(td) ./doc/common/tables/neutron-conf-changes.xml:180(td) ./doc/common/tables/ceilometer-conf-changes.xml:116(td) ./doc/common/tables/cinder-conf-changes.xml:444(td)
msgid "[database] sqlite_db = oslo.sqlite"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:100(td) ./doc/common/tables/neutron-conf-changes.xml:184(td) ./doc/common/tables/ceilometer-conf-changes.xml:120(td) ./doc/common/tables/cinder-conf-changes.xml:448(td)
msgid "[database] sqlite_synchronous = True"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:104(td) ./doc/common/tables/ceilometer-conf-changes.xml:124(td) ./doc/common/tables/cinder-conf-changes.xml:452(td)
msgid "[database] use_db_reconnect = False"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:108(td) ./doc/common/tables/glance-conf-changes.xml:52(td) ./doc/common/tables/neutron-conf-changes.xml:260(td) ./doc/common/tables/keystone-conf-changes.xml:56(td) ./doc/common/tables/ceilometer-conf-changes.xml:140(td) ./doc/common/tables/trove-conf-changes.xml:136(td) ./doc/common/tables/nova-conf-changes.xml:164(td) ./doc/common/tables/cinder-conf-changes.xml:468(td)
msgid "[keystone_authtoken] check_revocations_for_cached = False"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:112(td) ./doc/common/tables/glance-conf-changes.xml:56(td) ./doc/common/tables/neutron-conf-changes.xml:264(td) ./doc/common/tables/keystone-conf-changes.xml:60(td) ./doc/common/tables/ceilometer-conf-changes.xml:144(td) ./doc/common/tables/trove-conf-changes.xml:140(td) ./doc/common/tables/nova-conf-changes.xml:168(td) ./doc/common/tables/cinder-conf-changes.xml:472(td)
msgid "[keystone_authtoken] hash_algorithms = ['md5']"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:116(td) ./doc/common/tables/glance-conf-changes.xml:60(td) ./doc/common/tables/neutron-conf-changes.xml:268(td) ./doc/common/tables/keystone-conf-changes.xml:64(td) ./doc/common/tables/ceilometer-conf-changes.xml:148(td) ./doc/common/tables/trove-conf-changes.xml:144(td) ./doc/common/tables/nova-conf-changes.xml:172(td) ./doc/common/tables/cinder-conf-changes.xml:476(td)
msgid "[keystone_authtoken] identity_uri = None"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:121(caption) ./doc/common/tables/glance-conf-changes.xml:81(caption) ./doc/common/tables/neutron-conf-changes.xml:461(caption) ./doc/common/tables/keystone-conf-changes.xml:269(caption) ./doc/common/tables/ceilometer-conf-changes.xml:185(caption) ./doc/common/tables/trove-conf-changes.xml:313(caption) ./doc/common/tables/nova-conf-changes.xml:289(caption) ./doc/common/tables/swift-conf-changes.xml:372(caption) ./doc/common/tables/cinder-conf-changes.xml:489(caption)
msgid "New default values"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:127(td) ./doc/common/tables/glance-conf-changes.xml:87(td) ./doc/common/tables/neutron-conf-changes.xml:467(td) ./doc/common/tables/keystone-conf-changes.xml:275(td) ./doc/common/tables/ceilometer-conf-changes.xml:191(td) ./doc/common/tables/trove-conf-changes.xml:319(td) ./doc/common/tables/nova-conf-changes.xml:295(td) ./doc/common/tables/swift-conf-changes.xml:378(td) ./doc/common/tables/cinder-conf-changes.xml:495(td)
msgid "Option"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:128(td) ./doc/common/tables/glance-conf-changes.xml:88(td) ./doc/common/tables/neutron-conf-changes.xml:468(td) ./doc/common/tables/keystone-conf-changes.xml:276(td) ./doc/common/tables/ceilometer-conf-changes.xml:192(td) ./doc/common/tables/trove-conf-changes.xml:320(td) ./doc/common/tables/nova-conf-changes.xml:296(td) ./doc/common/tables/swift-conf-changes.xml:379(td) ./doc/common/tables/cinder-conf-changes.xml:496(td)
msgid "Previous default value"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:129(td) ./doc/common/tables/glance-conf-changes.xml:89(td) ./doc/common/tables/neutron-conf-changes.xml:469(td) ./doc/common/tables/keystone-conf-changes.xml:277(td) ./doc/common/tables/ceilometer-conf-changes.xml:193(td) ./doc/common/tables/trove-conf-changes.xml:321(td) ./doc/common/tables/nova-conf-changes.xml:297(td) ./doc/common/tables/swift-conf-changes.xml:380(td) ./doc/common/tables/cinder-conf-changes.xml:497(td)
msgid "New default value"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:133(td) ./doc/common/tables/neutron-conf-changes.xml:473(td) ./doc/common/tables/keystone-conf-changes.xml:281(td)
msgid "[DEFAULT] control_exchange"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:134(td)
msgid "heat"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:135(td) ./doc/common/tables/neutron-conf-changes.xml:475(td) ./doc/common/tables/keystone-conf-changes.xml:282(td)
msgid "openstack"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:138(td) ./doc/common/tables/glance-conf-changes.xml:93(td) ./doc/common/tables/neutron-conf-changes.xml:478(td) ./doc/common/tables/keystone-conf-changes.xml:286(td) ./doc/common/tables/ceilometer-conf-changes.xml:197(td) ./doc/common/tables/trove-conf-changes.xml:335(td) ./doc/common/tables/nova-conf-changes.xml:306(td) ./doc/common/tables/cinder-conf-changes.xml:506(td)
msgid "[DEFAULT] default_log_levels"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:139(td) ./doc/common/tables/neutron-conf-changes.xml:479(td) ./doc/common/tables/trove-conf-changes.xml:336(td)
msgid "amqp=WARN, amqplib=WARN, boto=WARN, qpid=WARN, sqlalchemy=WARN, suds=INFO, iso8601=WARN"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:140(td) ./doc/common/tables/glance-conf-changes.xml:95(td) ./doc/common/tables/neutron-conf-changes.xml:480(td) ./doc/common/tables/cinder-conf-changes.xml:507(td)
msgid "amqp=WARN, amqplib=WARN, boto=WARN, qpid=WARN, sqlalchemy=WARN, suds=INFO, oslo.messaging=INFO, iso8601=WARN, requests.packages.urllib3.connectionpool=WARN"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:143(td)
msgid "[DEFAULT] list_notifier_drivers"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:144(td)
msgid "heat.openstack.common.notifier.no_op_notifier"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:145(td) ./doc/common/tables/heat-conf-changes.xml:155(td) ./doc/common/tables/heat-conf-changes.xml:160(td) ./doc/common/tables/neutron-conf-changes.xml:535(td) ./doc/common/tables/neutron-conf-changes.xml:540(td) ./doc/common/tables/neutron-conf-changes.xml:545(td) ./doc/common/tables/neutron-conf-changes.xml:550(td) ./doc/common/tables/neutron-conf-changes.xml:555(td) ./doc/common/tables/ceilometer-conf-changes.xml:209(td) ./doc/common/tables/ceilometer-conf-changes.xml:214(td) ./doc/common/tables/trove-conf-changes.xml:332(td) ./doc/common/tables/trove-conf-changes.xml:342(td) ./doc/common/tables/trove-conf-changes.xml:347(td) ./doc/common/tables/trove-conf-changes.xml:352(td) ./doc/common/tables/trove-conf-changes.xml:357(td) ./doc/common/tables/trove-conf-changes.xml:366(td) ./doc/common/tables/nova-conf-changes.xml:322(td) ./doc/common/tables/cinder-conf-changes.xml:503(td) ./doc/common/tables/cinder-conf-changes.xml:528(td) ./doc/common/tables/cinder-conf-changes.xml:533(td)
msgid "None"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:148(td) ./doc/common/tables/neutron-conf-changes.xml:503(td) ./doc/common/tables/ceilometer-conf-changes.xml:202(td)
msgid "[DEFAULT] rpc_zmq_matchmaker"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:149(td)
msgid "heat.openstack.common.rpc.matchmaker.MatchMakerLocalhost"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:150(td) ./doc/common/tables/neutron-conf-changes.xml:505(td) ./doc/common/tables/ceilometer-conf-changes.xml:204(td)
msgid "oslo.messaging._drivers.matchmaker.MatchMakerLocalhost"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:153(td) ./doc/common/tables/neutron-conf-changes.xml:533(td) ./doc/common/tables/ceilometer-conf-changes.xml:207(td) ./doc/common/tables/cinder-conf-changes.xml:526(td)
msgid "[database] connection"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:154(td)
msgid "sqlite:////home/gpocentek/Workspace/OpenStack/openstack-doc-tools/autogenerate_config_docs/sources/heat/heat/openstack/common/db/$sqlite_db"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:158(td) ./doc/common/tables/neutron-conf-changes.xml:553(td) ./doc/common/tables/ceilometer-conf-changes.xml:212(td)
msgid "[database] slave_connection"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:163(td) ./doc/common/tables/glance-conf-changes.xml:113(td) ./doc/common/tables/neutron-conf-changes.xml:558(td) ./doc/common/tables/keystone-conf-changes.xml:296(td) ./doc/common/tables/ceilometer-conf-changes.xml:217(td) ./doc/common/tables/trove-conf-changes.xml:370(td) ./doc/common/tables/nova-conf-changes.xml:331(td) ./doc/common/tables/cinder-conf-changes.xml:536(td)
msgid "[keystone_authtoken] revocation_cache_time"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:164(td) ./doc/common/tables/glance-conf-changes.xml:114(td) ./doc/common/tables/neutron-conf-changes.xml:559(td) ./doc/common/tables/keystone-conf-changes.xml:297(td) ./doc/common/tables/ceilometer-conf-changes.xml:218(td) ./doc/common/tables/trove-conf-changes.xml:371(td) ./doc/common/tables/nova-conf-changes.xml:332(td) ./doc/common/tables/cinder-conf-changes.xml:537(td)
msgid "300"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:165(td) ./doc/common/tables/glance-conf-changes.xml:115(td) ./doc/common/tables/neutron-conf-changes.xml:489(td) ./doc/common/tables/neutron-conf-changes.xml:514(td) ./doc/common/tables/neutron-conf-changes.xml:544(td) ./doc/common/tables/neutron-conf-changes.xml:549(td) ./doc/common/tables/neutron-conf-changes.xml:560(td) ./doc/common/tables/keystone-conf-changes.xml:298(td) ./doc/common/tables/ceilometer-conf-changes.xml:219(td) ./doc/common/tables/trove-conf-changes.xml:372(td) ./doc/common/tables/nova-conf-changes.xml:333(td) ./doc/common/tables/cinder-conf-changes.xml:538(td)
msgid "10"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:169(caption) ./doc/common/tables/glance-conf-changes.xml:119(caption) ./doc/common/tables/neutron-conf-changes.xml:569(caption) ./doc/common/tables/keystone-conf-changes.xml:312(caption) ./doc/common/tables/ceilometer-conf-changes.xml:223(caption) ./doc/common/tables/trove-conf-changes.xml:376(caption) ./doc/common/tables/nova-conf-changes.xml:347(caption) ./doc/common/tables/cinder-conf-changes.xml:542(caption)
msgid "Deprecated options"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:174(td) ./doc/common/tables/glance-conf-changes.xml:124(td) ./doc/common/tables/neutron-conf-changes.xml:574(td) ./doc/common/tables/keystone-conf-changes.xml:317(td) ./doc/common/tables/ceilometer-conf-changes.xml:228(td) ./doc/common/tables/trove-conf-changes.xml:381(td) ./doc/common/tables/nova-conf-changes.xml:352(td) ./doc/common/tables/cinder-conf-changes.xml:547(td)
msgid "Deprecated option"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:175(td) ./doc/common/tables/glance-conf-changes.xml:125(td) ./doc/common/tables/neutron-conf-changes.xml:575(td) ./doc/common/tables/keystone-conf-changes.xml:318(td) ./doc/common/tables/ceilometer-conf-changes.xml:229(td) ./doc/common/tables/trove-conf-changes.xml:382(td) ./doc/common/tables/nova-conf-changes.xml:353(td) ./doc/common/tables/cinder-conf-changes.xml:548(td)
msgid "New Option"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:179(td) ./doc/common/tables/cinder-conf-changes.xml:552(td)
msgid "[DEFAULT] db_backend"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:180(td) ./doc/common/tables/cinder-conf-changes.xml:553(td)
msgid "[database] backend"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:183(td)
msgid "[DEFAULT] stack_user_domain"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:184(td)
msgid "[DEFAULT] stack_user_domain_id"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:187(td) ./doc/common/tables/neutron-conf-changes.xml:579(td) ./doc/common/tables/ceilometer-conf-changes.xml:233(td)
msgid "[rpc_notifier2] topics"
msgstr ""
#: ./doc/common/tables/heat-conf-changes.xml:188(td) ./doc/common/tables/neutron-conf-changes.xml:580(td) ./doc/common/tables/ceilometer-conf-changes.xml:234(td)
msgid "[DEFAULT] notification_topics"
msgstr ""
#: ./doc/common/tables/nova-vmware.xml:22(td)
msgid "(IntOpt) The number of times we retry on failures, e.g., socket error, etc."
msgstr ""
#: ./doc/common/tables/nova-vmware.xml:25(td)
msgid "cluster_name = None"
msgstr ""
#: ./doc/common/tables/nova-vmware.xml:26(td)
msgid "(MultiStrOpt) Name of a VMware Cluster ComputeResource."
msgstr ""
#: ./doc/common/tables/nova-vmware.xml:29(td)
msgid "datastore_regex = None"
msgstr ""
#: ./doc/common/tables/nova-vmware.xml:30(td)
msgid "(StrOpt) Regex to match the name of a datastore."
msgstr ""
#: ./doc/common/tables/nova-vmware.xml:33(td)
msgid "host_ip = None"
msgstr ""
#: ./doc/common/tables/nova-vmware.xml:34(td)
msgid "(StrOpt) Hostname or IP address for connection to VMware VC host."
msgstr ""
#: ./doc/common/tables/nova-vmware.xml:37(td)
msgid "host_password = None"
msgstr ""
#: ./doc/common/tables/nova-vmware.xml:38(td)
msgid "(StrOpt) Password for connection to VMware VC host."
msgstr ""
#: ./doc/common/tables/nova-vmware.xml:41(td)
msgid "host_port = 443"
msgstr ""
#: ./doc/common/tables/nova-vmware.xml:42(td) ./doc/common/tables/nova-conf-changes.xml:285(td)
msgid "(IntOpt) Port for connection to VMware VC host."
msgstr ""
#: ./doc/common/tables/nova-vmware.xml:45(td)
msgid "host_username = None"
msgstr ""
#: ./doc/common/tables/nova-vmware.xml:46(td)
msgid "(StrOpt) Username for connection to VMware VC host."
msgstr ""
#: ./doc/common/tables/nova-vmware.xml:50(td)
msgid "(StrOpt) Name of Integration Bridge"
msgstr ""
#: ./doc/common/tables/nova-vmware.xml:53(td)
msgid "maximum_objects = 100"
msgstr ""
#: ./doc/common/tables/nova-vmware.xml:54(td)
msgid "(IntOpt) The maximum number of ObjectContent data objects that should be returned in a single result. A positive value will cause the operation to suspend the retrieval when the count of objects reaches the specified maximum. The server may still limit the count to something less than the configured value. Any remaining objects may be retrieved with additional requests."
msgstr ""
#: ./doc/common/tables/nova-vmware.xml:58(td)
msgid "(FloatOpt) The interval used for polling of remote tasks."
msgstr ""
#: ./doc/common/tables/nova-vmware.xml:61(td)
msgid "use_linked_clone = True"
msgstr ""
#: ./doc/common/tables/nova-vmware.xml:62(td)
msgid "(BoolOpt) Whether to use linked clone"
msgstr ""
#: ./doc/common/tables/nova-vmware.xml:66(td)
msgid "(StrOpt) Optional VIM Service WSDL Location e.g http://&lt;server&gt;/vimService.wsdl. Optional over-ride to default location for bug work-arounds"
msgstr ""
#. Warning: Do not edit this file. It is automatically generated and your changes will be overwritten. The tool to do so lives in the openstack-doc-tools repository.
#: ./doc/common/tables/glance-conf-changes.xml:4(title)
msgid "New, updated and deprecated options in Juno for OpenStack Image Service"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:16(td)
msgid "[DEFAULT] default_swift_reference = ref1"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:17(td) ./doc/common/tables/glance-conf-changes.xml:33(td) ./doc/common/tables/glance-swift.xml:22(td) ./doc/common/tables/glance-swift.xml:45(td)
msgid "(StrOpt) The reference to the default swift account/backing store parameters to use for adding new images."
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:20(td)
msgid "[DEFAULT] metadata_source_path = /etc/glance/metadefs/"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:21(td) ./doc/common/tables/glance-common.xml:78(td)
msgid "(StrOpt) Path to the directory where json metadata files are stored"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:24(td)
msgid "[DEFAULT] swift_store_config_file = None"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:25(td) ./doc/common/tables/glance-conf-changes.xml:41(td) ./doc/common/tables/glance-swift.xml:30(td) ./doc/common/tables/glance-swift.xml:69(td)
msgid "(StrOpt) The config file that has the swift account(s)configs."
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:28(td) ./doc/common/tables/keystone-conf-changes.xml:36(td) ./doc/common/tables/cinder-conf-changes.xml:440(td)
msgid "[database] slave_connection = None"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:32(td)
msgid "[glance_store] default_swift_reference = ref1"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:36(td)
msgid "[glance_store] swift_store_auth_address = None"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:37(td) ./doc/common/tables/glance-swift.xml:26(td) ./doc/common/tables/glance-swift.xml:57(td)
msgid "(StrOpt) The address where the Swift authentication service is listening.(deprecated)"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:40(td)
msgid "[glance_store] swift_store_config_file = None"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:44(td)
msgid "[glance_store] swift_store_key = None"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:45(td) ./doc/common/tables/glance-swift.xml:34(td) ./doc/common/tables/glance-swift.xml:85(td)
msgid "(StrOpt) Auth key for the user authenticating against the Swift authentication service. (deprecated)"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:48(td)
msgid "[glance_store] swift_store_user = None"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:49(td) ./doc/common/tables/glance-swift.xml:38(td) ./doc/common/tables/glance-swift.xml:117(td)
msgid "(StrOpt) The user to authenticate against the Swift authentication service (deprecated)"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:64(td)
msgid "[profiler] enabled = True"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:65(td) ./doc/common/tables/cinder-profiler.xml:22(td) ./doc/common/tables/glance-profiler.xml:22(td) ./doc/common/tables/cinder-conf-changes.xml:481(td)
msgid "(BoolOpt) If False fully disable profiling feature."
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:68(td)
msgid "[profiler] trace_sqlalchemy = True"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:69(td) ./doc/common/tables/cinder-profiler.xml:26(td) ./doc/common/tables/glance-profiler.xml:26(td) ./doc/common/tables/cinder-conf-changes.xml:485(td)
msgid "(BoolOpt) If False doesn't trace SQL requests."
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:72(td)
msgid "[task] eventlet_executor_pool_size = 1000"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:73(td) ./doc/common/tables/glance-common.xml:123(td)
msgid "(IntOpt) Specifies the maximum number of eventlet threads which can be spun up by the eventlet based task executor to perform execution of Glance tasks."
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:76(td)
msgid "[task] task_executor = eventlet"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:77(td) ./doc/common/tables/glance-common.xml:127(td)
msgid "(StrOpt) Specifies which task executor to be used to run the task scripts."
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:94(td) ./doc/common/tables/keystone-conf-changes.xml:287(td) ./doc/common/tables/ceilometer-conf-changes.xml:198(td)
msgid "amqp=WARN, amqplib=WARN, boto=WARN, qpid=WARN, sqlalchemy=WARN, suds=INFO, iso8601=WARN, requests.packages.urllib3.connectionpool=WARN"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:98(td)
msgid "[DEFAULT] user_storage_quota"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:99(td) ./doc/common/tables/glance-conf-changes.xml:100(td) ./doc/common/tables/neutron-conf-changes.xml:499(td) ./doc/common/tables/neutron-conf-changes.xml:509(td)
msgid "0"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:103(td)
msgid "[DEFAULT] workers"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:104(td) ./doc/common/tables/trove-conf-changes.xml:356(td)
msgid "1"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:108(td) ./doc/common/tables/keystone-conf-changes.xml:291(td) ./doc/common/tables/nova-conf-changes.xml:326(td)
msgid "[database] sqlite_db"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:109(td)
msgid "glance.sqlite"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:110(td) ./doc/common/tables/keystone-conf-changes.xml:293(td) ./doc/common/tables/nova-conf-changes.xml:328(td)
msgid "oslo.sqlite"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:129(td)
msgid "[DEFAULT] swift_store_auth_address"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:130(td)
msgid "[glance_store] swift_store_auth_address"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:133(td)
msgid "[DEFAULT] swift_store_key"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:134(td)
msgid "[glance_store] swift_store_key"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:137(td)
msgid "[DEFAULT] swift_store_user"
msgstr ""
#: ./doc/common/tables/glance-conf-changes.xml:138(td)
msgid "[glance_store] swift_store_user"
msgstr ""
#: ./doc/common/tables/heat-cfn_api.xml:7(caption)
msgid "Description of Cloudformation-compatible API configuration options"
msgstr ""
#: ./doc/common/tables/heat-cfn_api.xml:21(td)
msgid "instance_connection_https_validate_certificates = 1"
msgstr ""
#: ./doc/common/tables/heat-cfn_api.xml:22(td)
msgid "(StrOpt) Instance connection to CFN/CW API validate certs if SSL is used."
msgstr ""
#: ./doc/common/tables/heat-cfn_api.xml:25(td)
msgid "instance_connection_is_secure = 0"
msgstr ""
#: ./doc/common/tables/heat-cfn_api.xml:26(td)
msgid "(StrOpt) Instance connection to CFN/CW API via https."
msgstr ""
#: ./doc/common/tables/heat-cfn_api.xml:29(th)
msgid "[heat_api_cfn]"
msgstr ""
#: ./doc/common/tables/heat-cfn_api.xml:33(td) ./doc/common/tables/heat-api.xml:115(td) ./doc/common/tables/heat-cloudwatch_api.xml:29(td)
msgid "(IntOpt) Number of backlog requests to configure the socket with."
msgstr ""
#: ./doc/common/tables/heat-cfn_api.xml:36(td) ./doc/common/tables/trove-api.xml:29(td) ./doc/common/tables/heat-api.xml:118(td) ./doc/common/tables/heat-cloudwatch_api.xml:32(td) ./doc/common/tables/glance-common.xml:33(td) ./doc/common/tables/neutron-common.xml:65(td)
msgid "bind_host = 0.0.0.0"
msgstr ""
#: ./doc/common/tables/heat-cfn_api.xml:37(td) ./doc/common/tables/heat-api.xml:119(td) ./doc/common/tables/heat-cloudwatch_api.xml:33(td) ./doc/common/tables/glance-common.xml:34(td)
msgid "(StrOpt) Address to bind the server. Useful when selecting a particular network interface."
msgstr ""
#: ./doc/common/tables/heat-cfn_api.xml:40(td)
msgid "bind_port = 8000"
msgstr ""
#: ./doc/common/tables/heat-cfn_api.xml:41(td) ./doc/common/tables/heat-api.xml:123(td) ./doc/common/tables/heat-cloudwatch_api.xml:37(td) ./doc/common/tables/glance-common.xml:38(td)
msgid "(IntOpt) The port on which the server will listen."
msgstr ""
#: ./doc/common/tables/heat-cfn_api.xml:45(td) ./doc/common/tables/heat-api.xml:127(td) ./doc/common/tables/heat-cloudwatch_api.xml:41(td)
msgid "(StrOpt) Location of the SSL certificate file to use for SSL mode."
msgstr ""
#: ./doc/common/tables/heat-cfn_api.xml:49(td) ./doc/common/tables/heat-api.xml:131(td) ./doc/common/tables/heat-cloudwatch_api.xml:45(td)
msgid "(StrOpt) Location of the SSL key file to use for enabling SSL mode."
msgstr ""
#: ./doc/common/tables/heat-cfn_api.xml:52(td) ./doc/common/tables/trove-api.xml:73(td) ./doc/common/tables/heat-api.xml:134(td) ./doc/common/tables/cinder-api.xml:49(td) ./doc/common/tables/heat-cloudwatch_api.xml:48(td) ./doc/common/tables/glance-wsgi.xml:25(td) ./doc/common/tables/nova-api.xml:41(td) ./doc/common/tables/neutron-api.xml:41(td)
msgid "max_header_line = 16384"
msgstr ""
#: ./doc/common/tables/heat-cfn_api.xml:53(td) ./doc/common/tables/trove-api.xml:74(td) ./doc/common/tables/heat-api.xml:135(td) ./doc/common/tables/cinder-api.xml:50(td) ./doc/common/tables/nova-api.xml:42(td)
msgid "(IntOpt) Maximum line size of message headers to be accepted. max_header_line may need to be increased when using large tokens (typically those generated by the Keystone v3 API with big service catalogs)."
msgstr ""
#: ./doc/common/tables/heat-cfn_api.xml:56(td) ./doc/common/tables/heat-api.xml:138(td) ./doc/common/tables/heat-cloudwatch_api.xml:52(td)
msgid "workers = 0"
msgstr ""
#: ./doc/common/tables/heat-cfn_api.xml:57(td) ./doc/common/tables/heat-api.xml:139(td) ./doc/common/tables/heat-cloudwatch_api.xml:53(td)
msgid "(IntOpt) Number of workers for Heat service."
msgstr ""
#: ./doc/common/tables/heat-cfn_api.xml:60(th) ./doc/common/tables/trove-ca.xml:18(th) ./doc/common/tables/heat-api.xml:153(th) ./doc/common/tables/keystone-ssl.xml:53(th) ./doc/common/tables/nova-ca.xml:61(th) ./doc/common/tables/neutron-ca.xml:33(th) ./doc/common/tables/cinder-ca.xml:33(th) ./doc/common/tables/heat-cloudwatch_api.xml:56(th)
msgid "[ssl]"
msgstr ""
#: ./doc/common/tables/heat-cfn_api.xml:68(td) ./doc/common/tables/heat-api.xml:161(td) ./doc/common/tables/nova-ca.xml:69(td) ./doc/common/tables/heat-cloudwatch_api.xml:64(td)
msgid "(StrOpt) Certificate file to use when starting the server securely."
msgstr ""
#: ./doc/common/tables/heat-cfn_api.xml:72(td) ./doc/common/tables/heat-api.xml:165(td) ./doc/common/tables/nova-ca.xml:73(td) ./doc/common/tables/heat-cloudwatch_api.xml:68(td)
msgid "(StrOpt) Private key file to use when starting the server securely."
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:21(td)
msgid "default_interface_name = breth0"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:22(td)
msgid "(StrOpt) Name of the interface on a L2 Gateway transport nodewhich should be used by default when setting up a network connection"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:25(td)
msgid "default_l2_gw_service_uuid = None"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:26(td)
msgid "(StrOpt) Unique identifier of the NSX L2 Gateway service which will be used by default for network gateways"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:29(td)
msgid "default_l3_gw_service_uuid = None"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:30(td)
msgid "(StrOpt) Unique identifier of the NSX L3 Gateway service which will be used for implementing routers and floating IPs"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:33(td)
msgid "default_service_cluster_uuid = None"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:34(td)
msgid "(StrOpt) Unique identifier of the Service Cluster which will be used by logical services like dhcp and metadata"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:37(td)
msgid "default_tz_uuid = None"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:38(td)
msgid "(StrOpt) This is uuid of the default NSX Transport zone that will be used for creating tunneled isolated \"Neutron\" networks. It needs to be created in NSX before starting Neutron with the nsx plugin."
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:41(td)
msgid "http_timeout = 75"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:42(td)
msgid "(IntOpt) Time before aborting a request"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:45(td)
msgid "nsx_controllers = None"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:46(td)
msgid "(ListOpt) Lists the NSX controllers in this cluster"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:49(td)
msgid "nsx_password = admin"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:50(td)
msgid "(StrOpt) Password for NSX controllers in this cluster"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:53(td)
msgid "nsx_user = admin"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:54(td)
msgid "(StrOpt) User name for NSX controllers in this cluster"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:57(td)
msgid "redirects = 2"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:58(td)
msgid "(IntOpt) Number of times a redirect should be followed"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:61(td)
msgid "retries = 2"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:62(td)
msgid "(IntOpt) Number of time a request should be retried"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:65(th) ./doc/common/tables/neutron-ml2_mlnx.xml:18(th) ./doc/common/tables/neutron-mlnx.xml:18(th)
msgid "[ESWITCH]"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:68(td)
msgid "retries = 3"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:69(td)
msgid "(IntOpt) The number of retries the agent will send request to daemon before giving up"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:72(th)
msgid "[NSX]"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:75(td)
msgid "agent_mode = agent"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:76(td)
msgid "(StrOpt) The mode used to implement DHCP/metadata services."
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:79(td)
msgid "concurrent_connections = 10"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:80(td)
msgid "(IntOpt) Maximum concurrent connections to each NSX controller."
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:83(td)
msgid "default_transport_type = stt"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:84(td)
msgid "(StrOpt) The default network tranport type to use (stt, gre, bridge, ipsec_gre, or ipsec_stt)"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:87(td)
msgid "max_lp_per_bridged_ls = 5000"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:88(td)
msgid "(IntOpt) Maximum number of ports of a logical switch on a bridged transport zone (default 5000)"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:91(td)
msgid "max_lp_per_overlay_ls = 256"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:92(td)
msgid "(IntOpt) Maximum number of ports of a logical switch on an overlay transport zone (default 256)"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:95(td)
msgid "metadata_mode = access_network"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:96(td)
msgid "(StrOpt) If set to access_network this enables a dedicated connection to the metadata proxy for metadata server access via Neutron router. If set to dhcp_host_route this enables host route injection via the dhcp agent. This option is only useful if running on a host that does not support namespaces otherwise access_network should be used."
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:99(td)
msgid "nsx_gen_timeout = -1"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:100(td)
msgid "(IntOpt) Number of seconds a generation id should be valid for (default -1 meaning do not time out)"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:103(td)
msgid "replication_mode = service"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:104(td)
msgid "(StrOpt) The default option leverages service nodes to perform packet replication though one could set to this to 'source' to perform replication locally. This is useful if one does not want to deploy a service node(s). It must be set to 'service' for leveraging distributed routers."
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:107(th)
msgid "[NSX_DHCP]"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:110(td)
msgid "default_lease_time = 43200"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:111(td)
msgid "(IntOpt) Default DHCP lease time"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:114(td)
msgid "domain_name = openstacklocal"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:115(td) ./doc/common/tables/nova-network.xml:50(td) ./doc/common/tables/neutron-common.xml:118(td)
msgid "(StrOpt) Domain to use for building the hostnames"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:118(td)
msgid "extra_domain_name_servers ="
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:119(td)
msgid "(ListOpt) Comma separated list of additional domain name servers"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:122(th)
msgid "[NSX_LSN]"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:125(td)
msgid "sync_on_missing_data = False"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:126(td)
msgid "(BoolOpt) Pull LSN information from NSX in case it is missing from the local data store. This is useful to rebuild the local store in case of server recovery."
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:129(th)
msgid "[NSX_METADATA]"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:132(td)
msgid "metadata_server_address = 127.0.0.1"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:133(td)
msgid "(StrOpt) IP address used by Metadata server."
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:136(td)
msgid "metadata_server_port = 8775"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:137(td)
msgid "(IntOpt) TCP Port used by Metadata server."
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:140(td)
msgid "metadata_shared_secret ="
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:141(td) ./doc/common/tables/neutron-metadata.xml:34(td)
msgid "(StrOpt) Shared secret to sign instance-id request"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:144(th)
msgid "[NSX_SYNC]"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:147(td)
msgid "always_read_status = False"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:148(td)
msgid "(BoolOpt) Always read operational status from backend on show operations. Enabling this option might slow down the system."
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:151(td)
msgid "max_random_sync_delay = 0"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:152(td)
msgid "(IntOpt) Maximum value for the additional random delay in seconds between runs of the state synchronization task"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:155(td)
msgid "min_chunk_size = 500"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:156(td)
msgid "(IntOpt) Minimum number of resources to be retrieved from NSX during state synchronization"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:159(td)
msgid "min_sync_req_delay = 1"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:160(td)
msgid "(IntOpt) Minimum delay, in seconds, between two state synchronization queries to NSX. It must not exceed state_sync_interval"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:163(td)
msgid "state_sync_interval = 10"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:164(td)
msgid "(IntOpt) Interval in seconds between runs of the state synchronization task. Set it to 0 to disable it"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:167(th)
msgid "[vcns]"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:170(td)
msgid "datacenter_moid = None"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:171(td)
msgid "(StrOpt) Optional parameter identifying the ID of datacenter to deploy NSX Edges"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:174(td)
msgid "datastore_id = None"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:175(td) ./doc/common/tables/neutron-vmware.xml:179(td)
msgid "(StrOpt) Optional parameter identifying the ID of datastore to deploy NSX Edges"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:178(td)
msgid "deployment_container_id = None"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:182(td)
msgid "external_network = None"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:183(td)
msgid "(StrOpt) Network ID for physical network connectivity"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:186(td)
msgid "manager_uri = None"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:187(td)
msgid "(StrOpt) uri for vsm"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:190(td)
msgid "password = default"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:191(td)
msgid "(StrOpt) Password for vsm"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:194(td) ./doc/common/tables/neutron-embrane_lb.xml:61(td)
msgid "resource_pool_id = None"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:195(td)
msgid "(StrOpt) Optional parameter identifying the ID of resource to deploy NSX Edges"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:198(td)
msgid "task_status_check_interval = 2000"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:199(td)
msgid "(IntOpt) Task status check interval"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:202(td)
msgid "user = admin"
msgstr ""
#: ./doc/common/tables/neutron-vmware.xml:203(td)
msgid "(StrOpt) User name for vsm"
msgstr ""
#: ./doc/common/tables/nova-rdp.xml:7(caption)
msgid "Description of RDP configuration options"
msgstr ""
#: ./doc/common/tables/nova-rdp.xml:18(th)
msgid "[rdp]"
msgstr ""
#: ./doc/common/tables/nova-rdp.xml:22(td)
msgid "(BoolOpt) Enable RDP related features"
msgstr ""
#: ./doc/common/tables/nova-rdp.xml:25(td)
msgid "html5_proxy_base_url = http://127.0.0.1:6083/"
msgstr ""
#: ./doc/common/tables/nova-rdp.xml:26(td)
msgid "(StrOpt) Location of RDP html5 console proxy, in the form \"http://127.0.0.1:6083/\""
msgstr ""
#: ./doc/common/tables/trove-ca.xml:22(td) ./doc/common/tables/neutron-ca.xml:22(td) ./doc/common/tables/neutron-ca.xml:37(td) ./doc/common/tables/cinder-ca.xml:22(td) ./doc/common/tables/cinder-ca.xml:37(td) ./doc/common/tables/nova-wsgi.xml:26(td)
msgid "(StrOpt) CA certificate file to use to verify connecting clients"
msgstr ""
#: ./doc/common/tables/trove-ca.xml:26(td) ./doc/common/tables/neutron-ca.xml:26(td) ./doc/common/tables/neutron-ca.xml:41(td) ./doc/common/tables/cinder-ca.xml:26(td) ./doc/common/tables/cinder-ca.xml:41(td)
msgid "(StrOpt) Certificate file to use when starting the server securely"
msgstr ""
#: ./doc/common/tables/trove-ca.xml:30(td) ./doc/common/tables/neutron-ca.xml:30(td) ./doc/common/tables/neutron-ca.xml:45(td) ./doc/common/tables/cinder-ca.xml:30(td) ./doc/common/tables/cinder-ca.xml:45(td)
msgid "(StrOpt) Private key file to use when starting the server securely"
msgstr ""
#: ./doc/common/tables/keystone-assignment.xml:7(caption)
msgid "Description of assignment configuration options"
msgstr ""
#: ./doc/common/tables/keystone-assignment.xml:18(th)
msgid "[assignment]"
msgstr ""
#: ./doc/common/tables/keystone-assignment.xml:22(td)
msgid "(IntOpt) TTL (in seconds) to cache assignment data. This has no effect unless global caching is enabled."
msgstr ""
#: ./doc/common/tables/keystone-assignment.xml:26(td)
msgid "(BoolOpt) Toggle for assignment caching. This has no effect unless global caching is enabled."
msgstr ""
#: ./doc/common/tables/keystone-assignment.xml:29(td)
msgid "driver = None"
msgstr ""
#: ./doc/common/tables/keystone-assignment.xml:30(td)
msgid "(StrOpt) Assignment backend driver."
msgstr ""
#: ./doc/common/tables/keystone-assignment.xml:34(td)
msgid "(IntOpt) Maximum number of entities that will be returned in an assignment collection."
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:7(caption)
msgid "Description of ZFS Storage Appliance iSCSI driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:21(td)
msgid "zfssa_initiator ="
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:22(td) ./doc/common/tables/cinder-conf-changes.xml:325(td)
msgid "(StrOpt) iSCSI initiator IQNs. (comma separated)"
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:25(td)
msgid "zfssa_initiator_group ="
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:26(td) ./doc/common/tables/cinder-conf-changes.xml:329(td)
msgid "(StrOpt) iSCSI initiator group."
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:29(td)
msgid "zfssa_initiator_password ="
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:30(td) ./doc/common/tables/cinder-conf-changes.xml:333(td)
msgid "(StrOpt) iSCSI initiator CHAP password."
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:33(td)
msgid "zfssa_initiator_user ="
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:34(td) ./doc/common/tables/cinder-conf-changes.xml:337(td)
msgid "(StrOpt) iSCSI initiator CHAP user."
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:37(td)
msgid "zfssa_lun_compression ="
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:38(td) ./doc/common/tables/cinder-conf-changes.xml:341(td)
msgid "(StrOpt) Data compression-off, lzjb, gzip-2, gzip, gzip-9."
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:41(td)
msgid "zfssa_lun_logbias ="
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:42(td) ./doc/common/tables/cinder-conf-changes.xml:345(td)
msgid "(StrOpt) Synchronous write bias-latency, throughput."
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:45(td)
msgid "zfssa_lun_sparse = False"
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:46(td) ./doc/common/tables/cinder-conf-changes.xml:349(td)
msgid "(BoolOpt) Flag to enable sparse (thin-provisioned): True, False."
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:49(td)
msgid "zfssa_lun_volblocksize = 8k"
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:50(td) ./doc/common/tables/cinder-conf-changes.xml:353(td)
msgid "(StrOpt) Block size: 512, 1k, 2k, 4k, 8k, 16k, 32k, 64k, 128k."
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:53(td)
msgid "zfssa_pool = None"
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:54(td) ./doc/common/tables/cinder-emc.xml:50(td) ./doc/common/tables/cinder-conf-changes.xml:357(td)
msgid "(StrOpt) Storage pool name."
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:57(td)
msgid "zfssa_project = None"
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:58(td) ./doc/common/tables/cinder-conf-changes.xml:361(td)
msgid "(StrOpt) Project name."
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:61(td)
msgid "zfssa_target_group = tgt-grp"
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:62(td) ./doc/common/tables/cinder-conf-changes.xml:365(td)
msgid "(StrOpt) iSCSI target group name."
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:65(td)
msgid "zfssa_target_interfaces = None"
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:66(td) ./doc/common/tables/cinder-conf-changes.xml:369(td)
msgid "(StrOpt) Network interfaces of iSCSI targets. (comma separated)"
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:69(td)
msgid "zfssa_target_password ="
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:70(td) ./doc/common/tables/cinder-conf-changes.xml:373(td)
msgid "(StrOpt) iSCSI target CHAP password."
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:73(td)
msgid "zfssa_target_portal = None"
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:74(td) ./doc/common/tables/cinder-conf-changes.xml:377(td)
msgid "(StrOpt) iSCSI target portal (Data-IP:Port, w.x.y.z:3260)."
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:77(td)
msgid "zfssa_target_user ="
msgstr ""
#: ./doc/common/tables/cinder-zfssa.xml:78(td) ./doc/common/tables/cinder-conf-changes.xml:381(td)
msgid "(StrOpt) iSCSI target CHAP user."
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:7(caption)
msgid "Description of storage configuration options"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:21(td)
msgid "allocated_capacity_weight_multiplier = -1.0"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:22(td) ./doc/common/tables/cinder-storage.xml:26(td)
msgid "(FloatOpt) Multiplier used for weighing volume capacity. Negative numbers mean to stack vs spread."
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:25(td)
msgid "capacity_weight_multiplier = 1.0"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:29(td)
msgid "enabled_backends = None"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:30(td)
msgid "(ListOpt) A list of backend names to use. These backend names should be backed by a unique [CONFIG] group with its options"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:33(td)
msgid "iscsi_helper = tgtadm"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:34(td)
msgid "(StrOpt) iSCSI target user-land tool to use. tgtadm is default, use lioadm for LIO iSCSI support, iseradm for the ISER protocol, or fake for testing."
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:37(td)
msgid "iscsi_iotype = fileio"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:38(td)
msgid "(StrOpt) Sets the behavior of the iSCSI target to either perform blockio or fileio optionally, auto can be set and Cinder will autodetect type of backing device"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:41(td)
msgid "iscsi_ip_address = $my_ip"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:42(td)
msgid "(StrOpt) The IP address that the iSCSI daemon is listening on"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:45(td)
msgid "iscsi_num_targets = 100"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:46(td)
msgid "(IntOpt) The maximum number of iSCSI target IDs per host"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:49(td) ./doc/common/tables/cinder-prophetstor_dpl.xml:45(td)
msgid "iscsi_port = 3260"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:50(td) ./doc/common/tables/cinder-prophetstor_dpl.xml:46(td)
msgid "(IntOpt) The port that the iSCSI daemon is listening on"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:53(td)
msgid "iscsi_target_prefix = iqn.2010-10.org.openstack:"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:54(td)
msgid "(StrOpt) Prefix for iSCSI volumes"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:57(td)
msgid "iscsi_write_cache = on"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:58(td) ./doc/common/tables/cinder-conf-changes.xml:197(td)
msgid "(StrOpt) Sets the behavior of the iSCSI target to either perform write-back(on) or write-through(off). This parameter is valid if iscsi_helper is set to tgtadm or iseradm."
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:61(td)
msgid "iser_helper = tgtadm"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:62(td)
msgid "(StrOpt) The name of the iSER target user-land tool to use"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:65(td)
msgid "iser_ip_address = $my_ip"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:66(td)
msgid "(StrOpt) The IP address that the iSER daemon is listening on"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:69(td)
msgid "iser_num_targets = 100"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:70(td)
msgid "(IntOpt) The maximum number of iSER target IDs per host"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:73(td)
msgid "iser_port = 3260"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:74(td)
msgid "(IntOpt) The port that the iSER daemon is listening on"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:77(td)
msgid "iser_target_prefix = iqn.2010-10.org.iser.openstack:"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:78(td)
msgid "(StrOpt) Prefix for iSER volumes"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:81(td)
msgid "max_gigabytes = 10000"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:82(td)
msgid "(IntOpt) This configure option has been deprecated along with the SimpleScheduler. New scheduler is able to gather capacity information for each host, thus setting the maximum number of volume gigabytes for host is no longer needed. It's safe to remove this configure from cinder.conf."
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:85(td)
msgid "migration_create_volume_timeout_secs = 300"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:86(td)
msgid "(IntOpt) Timeout for creating the volume to migrate to when performing volume migration (seconds)"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:89(td)
msgid "num_iser_scan_tries = 3"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:90(td)
msgid "(IntOpt) The maximum number of times to rescan iSER targetto find volume"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:93(td)
msgid "num_volume_device_scan_tries = 3"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:94(td)
msgid "(IntOpt) The maximum number of times to rescan targets to find volume"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:97(td)
msgid "volume_backend_name = None"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:98(td)
msgid "(StrOpt) The backend name for a given driver implementation"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:101(td) ./doc/common/tables/nova-libvirt.xml:176(td)
msgid "volume_clear = zero"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:102(td) ./doc/common/tables/nova-libvirt.xml:177(td)
msgid "(StrOpt) Method used to wipe old volumes (valid options are: none, zero, shred)"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:105(td)
msgid "volume_clear_ionice = None"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:106(td)
msgid "(StrOpt) The flag to pass to ionice to alter the i/o priority of the process used to zero a volume after deletion, for example \"-c3\" for idle only priority."
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:109(td) ./doc/common/tables/nova-libvirt.xml:180(td)
msgid "volume_clear_size = 0"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:110(td) ./doc/common/tables/nova-libvirt.xml:181(td)
msgid "(IntOpt) Size in MiB to wipe at start of old volumes. 0 =&gt; all"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:113(td)
msgid "volume_copy_blkio_cgroup_name = cinder-volume-copy"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:114(td) ./doc/common/tables/cinder-conf-changes.xml:313(td)
msgid "(StrOpt) The blkio cgroup name to be used to limit bandwidth of volume copy"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:117(td)
msgid "volume_copy_bps_limit = 0"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:118(td) ./doc/common/tables/cinder-conf-changes.xml:317(td)
msgid "(IntOpt) The upper limit of bandwidth of volume copy. 0 =&gt; unlimited"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:121(td)
msgid "volume_dd_blocksize = 1M"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:122(td)
msgid "(StrOpt) The default block size used when copying/clearing volumes"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:125(td)
msgid "volume_driver = cinder.volume.drivers.lvm.LVMISCSIDriver"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:126(td)
msgid "(StrOpt) Driver to use for volume creation"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:129(td)
msgid "volume_manager = cinder.volume.manager.VolumeManager"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:130(td)
msgid "(StrOpt) Full class name for the Manager for volume"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:133(td)
msgid "volume_service_inithost_offload = False"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:134(td)
msgid "(BoolOpt) Offload pending volume delete during volume service startup"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:137(td)
msgid "volume_usage_audit_period = month"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:138(td)
msgid "(StrOpt) Time period for which to generate volume usages. The options are hour, day, month, or year."
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:141(td)
msgid "volumes_dir = $state_path/volumes"
msgstr ""
#: ./doc/common/tables/cinder-storage.xml:142(td)
msgid "(StrOpt) Volume configuration file storage directory"
msgstr ""
#: ./doc/common/tables/glance-registry.xml:7(caption)
msgid "Description of registry configuration options"
msgstr ""
#: ./doc/common/tables/glance-registry.xml:22(td)
msgid "(StrOpt) The administrators password."
msgstr ""
#: ./doc/common/tables/glance-registry.xml:26(td)
msgid "(StrOpt) The tenant name of the administrative user."
msgstr ""
#: ./doc/common/tables/glance-registry.xml:30(td)
msgid "(StrOpt) The administrators user name."
msgstr ""
#: ./doc/common/tables/glance-registry.xml:33(td) ./doc/common/tables/neutron-common.xml:49(td) ./doc/common/tables/neutron-common.xml:219(td)
msgid "auth_region = None"
msgstr ""
#: ./doc/common/tables/glance-registry.xml:34(td)
msgid "(StrOpt) The region for the authentication service."
msgstr ""
#: ./doc/common/tables/glance-registry.xml:38(td)
msgid "(StrOpt) The strategy to use for authentication."
msgstr ""
#: ./doc/common/tables/glance-registry.xml:41(td) ./doc/common/tables/neutron-common.xml:57(td) ./doc/common/tables/neutron-common.xml:227(td)
msgid "auth_url = None"
msgstr ""
#: ./doc/common/tables/glance-registry.xml:42(td)
msgid "(StrOpt) The URL to the keystone service."
msgstr ""
#: ./doc/common/tables/glance-registry.xml:45(td)
msgid "registry_client_ca_file = None"
msgstr ""
#: ./doc/common/tables/glance-registry.xml:46(td)
msgid "(StrOpt) The path to the certifying authority cert file to use in SSL connections to the registry server."
msgstr ""
#: ./doc/common/tables/glance-registry.xml:49(td)
msgid "registry_client_cert_file = None"
msgstr ""
#: ./doc/common/tables/glance-registry.xml:50(td)
msgid "(StrOpt) The path to the cert file to use in SSL connections to the registry server."
msgstr ""
#: ./doc/common/tables/glance-registry.xml:53(td)
msgid "registry_client_insecure = False"
msgstr ""
#: ./doc/common/tables/glance-registry.xml:54(td)
msgid "(BoolOpt) When using SSL in connections to the registry server, do not require validation via a certifying authority."
msgstr ""
#: ./doc/common/tables/glance-registry.xml:57(td)
msgid "registry_client_key_file = None"
msgstr ""
#: ./doc/common/tables/glance-registry.xml:58(td)
msgid "(StrOpt) The path to the key file to use in SSL connections to the registry server."
msgstr ""
#: ./doc/common/tables/glance-registry.xml:61(td)
msgid "registry_client_protocol = http"
msgstr ""
#: ./doc/common/tables/glance-registry.xml:62(td)
msgid "(StrOpt) The protocol to use for communication with the registry server. Either http or https."
msgstr ""
#: ./doc/common/tables/glance-registry.xml:65(td)
msgid "registry_client_timeout = 600"
msgstr ""
#: ./doc/common/tables/glance-registry.xml:66(td)
msgid "(IntOpt) The period of time, in seconds, that the API server will wait for a registry request to complete. A value of 0 implies no timeout."
msgstr ""
#: ./doc/common/tables/glance-registry.xml:69(td)
msgid "registry_host = 0.0.0.0"
msgstr ""
#: ./doc/common/tables/glance-registry.xml:70(td)
msgid "(StrOpt) Address to find the registry server."
msgstr ""
#: ./doc/common/tables/glance-registry.xml:73(td)
msgid "registry_port = 9191"
msgstr ""
#: ./doc/common/tables/glance-registry.xml:74(td)
msgid "(IntOpt) Port the registry server is listening on."
msgstr ""
#: ./doc/common/tables/swift-swift-storage-policy-1.xml:8(literal)
msgid "[storage-policy-1]"
msgstr ""
#: ./doc/common/tables/swift-swift-storage-policy-1.xml:20(td)
msgid "name = silver"
msgstr ""
#: ./doc/common/tables/neutron-embrane.xml:7(caption)
msgid "Description of Embrane configuration options"
msgstr ""
#: ./doc/common/tables/neutron-embrane.xml:18(th) ./doc/common/tables/neutron-common.xml:231(th)
msgid "[heleos]"
msgstr ""
#: ./doc/common/tables/neutron-embrane.xml:21(td)
msgid "admin_username = admin"
msgstr ""
#: ./doc/common/tables/neutron-embrane.xml:22(td) ./doc/common/tables/neutron-embrane_lb.xml:26(td)
msgid "(StrOpt) ESM admin username."
msgstr ""
#: ./doc/common/tables/neutron-embrane.xml:25(td)
msgid "async_requests = True"
msgstr ""
#: ./doc/common/tables/neutron-embrane.xml:26(td) ./doc/common/tables/neutron-embrane_lb.xml:30(td)
msgid "(BoolOpt) Define if the requests have run asynchronously or not"
msgstr ""
#: ./doc/common/tables/neutron-embrane.xml:29(td) ./doc/common/tables/neutron-embrane_lb.xml:33(td)
msgid "dummy_utif_id = None"
msgstr ""
#: ./doc/common/tables/neutron-embrane.xml:30(td)
msgid "(StrOpt) Dummy user traffic Security Zone id"
msgstr ""
#: ./doc/common/tables/neutron-embrane.xml:33(td) ./doc/common/tables/neutron-embrane_lb.xml:37(td)
msgid "esm_mgmt = None"
msgstr ""
#: ./doc/common/tables/neutron-embrane.xml:34(td) ./doc/common/tables/neutron-embrane_lb.xml:38(td)
msgid "(StrOpt) ESM management root address"
msgstr ""
#: ./doc/common/tables/neutron-embrane.xml:37(td) ./doc/common/tables/neutron-embrane_lb.xml:41(td)
msgid "inband_id = None"
msgstr ""
#: ./doc/common/tables/neutron-embrane.xml:38(td)
msgid "(StrOpt) In band Security Zone id"
msgstr ""
#: ./doc/common/tables/neutron-embrane.xml:41(td) ./doc/common/tables/neutron-embrane_lb.xml:53(td)
msgid "mgmt_id = None"
msgstr ""
#: ./doc/common/tables/neutron-embrane.xml:42(td)
msgid "(StrOpt) Management Security Zone id"
msgstr ""
#: ./doc/common/tables/neutron-embrane.xml:45(td) ./doc/common/tables/neutron-embrane_lb.xml:57(td)
msgid "oob_id = None"
msgstr ""
#: ./doc/common/tables/neutron-embrane.xml:46(td)
msgid "(StrOpt) Out of band Security Zone id"
msgstr ""
#: ./doc/common/tables/neutron-embrane.xml:49(td)
msgid "resource_pool_id = default"
msgstr ""
#: ./doc/common/tables/neutron-embrane.xml:50(td) ./doc/common/tables/neutron-embrane_lb.xml:62(td)
msgid "(StrOpt) Shared resource pool id"
msgstr ""
#: ./doc/common/tables/neutron-embrane.xml:53(td)
msgid "router_image = None"
msgstr ""
#: ./doc/common/tables/neutron-embrane.xml:54(td)
msgid "(StrOpt) Router image id (Embrane FW/VPN)"
msgstr ""
#: ./doc/common/tables/heat-quota.xml:21(td)
msgid "max_events_per_stack = 1000"
msgstr ""
#: ./doc/common/tables/heat-quota.xml:22(td)
msgid "(IntOpt) Maximum events that will be available per stack. Older events will be deleted when this is reached. Set to 0 for unlimited events per stack."
msgstr ""
#: ./doc/common/tables/heat-quota.xml:25(td)
msgid "max_nested_stack_depth = 3"
msgstr ""
#: ./doc/common/tables/heat-quota.xml:26(td)
msgid "(IntOpt) Maximum depth allowed when using nested stacks."
msgstr ""
#: ./doc/common/tables/heat-quota.xml:29(td)
msgid "max_resources_per_stack = 1000"
msgstr ""
#: ./doc/common/tables/heat-quota.xml:30(td)
msgid "(IntOpt) Maximum resources allowed per top-level stack."
msgstr ""
#: ./doc/common/tables/heat-quota.xml:33(td)
msgid "max_stacks_per_tenant = 100"
msgstr ""
#: ./doc/common/tables/heat-quota.xml:34(td)
msgid "(IntOpt) Maximum number of stacks any one tenant may have active at one time."
msgstr ""
#: ./doc/common/tables/heat-quota.xml:37(td)
msgid "max_template_size = 524288"
msgstr ""
#: ./doc/common/tables/heat-quota.xml:38(td)
msgid "(IntOpt) Maximum raw byte size of any template."
msgstr ""
#: ./doc/common/tables/trove-network.xml:7(caption) ./doc/common/tables/nova-network.xml:7(caption)
msgid "Description of network configuration options"
msgstr ""
#: ./doc/common/tables/trove-network.xml:21(td)
msgid "network_driver = trove.network.nova.NovaNetwork"
msgstr ""
#: ./doc/common/tables/trove-network.xml:22(td) ./doc/common/tables/trove-conf-changes.xml:61(td)
msgid "(StrOpt) Describes the actual network manager used for the management of network attributes (security groups, floating IPs, etc.)"
msgstr ""
#: ./doc/common/tables/trove-network.xml:25(td)
msgid "neutron_service_type = network"
msgstr ""
#: ./doc/common/tables/trove-network.xml:26(td) ./doc/common/tables/trove-volume.xml:26(td) ./doc/common/tables/trove-conf-changes.xml:25(td) ./doc/common/tables/trove-conf-changes.xml:49(td) ./doc/common/tables/trove-conf-changes.xml:65(td) ./doc/common/tables/trove-conf-changes.xml:73(td) ./doc/common/tables/trove-conf-changes.xml:85(td) ./doc/common/tables/trove-heat.xml:22(td) ./doc/common/tables/trove-compute.xml:26(td) ./doc/common/tables/trove-swift.xml:22(td)
msgid "(StrOpt) Service type to use when searching catalog."
msgstr ""
#: ./doc/common/tables/trove-network.xml:29(td)
msgid "neutron_url = None"
msgstr ""
#: ./doc/common/tables/trove-network.xml:30(td) ./doc/common/tables/trove-volume.xml:30(td) ./doc/common/tables/trove-conf-changes.xml:69(td) ./doc/common/tables/trove-heat.xml:30(td) ./doc/common/tables/trove-compute.xml:30(td)
msgid "(StrOpt) URL without the tenant segment."
msgstr ""
#. Warning: Do not edit this file. It is automatically generated and your changes will be overwritten. The tool to do so lives in the openstack-doc-tools repository.
#: ./doc/common/tables/neutron-conf-changes.xml:4(title)
msgid "New, updated and deprecated options in Juno for OpenStack Networking"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:16(td)
msgid "[DEFAULT] agent_mode = legacy"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:17(td) ./doc/common/tables/neutron-l3_agent.xml:22(td)
msgid "(StrOpt) The working mode for the agent. Allowed modes are: 'legacy' - this preserves the existing behavior where the L3 agent is deployed on a centralized networking node to provide L3 services like DNAT, and SNAT. Use this mode if you do not want to adopt DVR. 'dvr' - this mode enables DVR functionality and must be used for an L3 agent that runs on a compute host. 'dvr_snat' - this enables centralized SNAT support in conjunction with DVR. This mode must be used for an L3 agent running on a centralized node (or in single-host deployments, e.g. devstack)"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:20(td)
msgid "[DEFAULT] allow_automatic_l3agent_failover = False"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:21(td) ./doc/common/tables/neutron-l3_agent.xml:26(td)
msgid "(BoolOpt) Automatically reschedule routers from offline L3 agents to online L3 agents."
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:24(td)
msgid "[DEFAULT] apic_system_id = openstack"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:28(td)
msgid "[DEFAULT] check_child_processes = False"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:29(td) ./doc/common/tables/neutron-common.xml:78(td)
msgid "(BoolOpt) Periodically check child processes"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:32(td)
msgid "[DEFAULT] check_child_processes_action = respawn"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:33(td) ./doc/common/tables/neutron-common.xml:82(td)
msgid "(StrOpt) Action to be executed when a child process dies"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:36(td)
msgid "[DEFAULT] check_child_processes_interval = 60"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:37(td) ./doc/common/tables/neutron-common.xml:86(td)
msgid "(IntOpt) Interval between checks of child process liveness (seconds)"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:40(td)
msgid "[DEFAULT] device_connection_timeout = 30"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:41(td) ./doc/common/tables/neutron-cfg_agent.xml:22(td)
msgid "(IntOpt) Time in seconds for connecting to a hosting device"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:44(td)
msgid "[DEFAULT] dvr_base_mac = fa:16:3f:00:00:00"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:45(td) ./doc/common/tables/neutron-dvr.xml:22(td)
msgid "(StrOpt) The base mac address used for unique DVR instances by Neutron"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:48(td)
msgid "[DEFAULT] hosting_device_dead_timeout = 300"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:49(td) ./doc/common/tables/neutron-cfg_agent.xml:26(td)
msgid "(IntOpt) The time in seconds until a backlogged hosting device is presumed dead. This value should be set up high enough to recover from a period of connectivity loss or high load when the device may not be responding."
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:56(td)
msgid "[DEFAULT] nova_api_insecure = False"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:57(td) ./doc/common/tables/neutron-compute.xml:46(td)
msgid "(BoolOpt) If True, ignore any SSL validation issues"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:60(td)
msgid "[DEFAULT] nova_ca_certificates_file = None"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:61(td) ./doc/common/tables/neutron-compute.xml:50(td)
msgid "(StrOpt) CA file for novaclient to verify server certificates"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:64(td)
msgid "[DEFAULT] nova_client_cert ="
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:65(td) ./doc/common/tables/neutron-compute.xml:54(td)
msgid "(StrOpt) Client certificate for nova metadata api server."
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:68(td)
msgid "[DEFAULT] nova_client_priv_key ="
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:69(td) ./doc/common/tables/neutron-compute.xml:58(td)
msgid "(StrOpt) Private key of client certificate."
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:72(td)
msgid "[DEFAULT] nova_metadata_insecure = False"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:73(td) ./doc/common/tables/neutron-metadata.xml:46(td)
msgid "(BoolOpt) Allow to perform insecure SSL (https) requests to nova metadata"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:76(td)
msgid "[DEFAULT] nova_metadata_protocol = http"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:77(td) ./doc/common/tables/neutron-metadata.xml:58(td)
msgid "(StrOpt) Protocol to access nova metadata, http or https"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:80(td)
msgid "[DEFAULT] ra_confs = $state_path/ra"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:81(td) ./doc/common/tables/neutron-ipv6_ra.xml:22(td)
msgid "(StrOpt) Location to store IPv6 RA config files"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:88(td)
msgid "[DEFAULT] router_distributed = False"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:89(td) ./doc/common/tables/neutron-dvr.xml:26(td)
msgid "(BoolOpt) System-wide flag to determine the type of router that tenants can create. Only admin can override."
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:92(td)
msgid "[DEFAULT] routing_svc_helper_class = neutron.plugins.cisco.cfg_agent.service_helpers.routing_svc_helper.RoutingServiceHelper"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:93(td) ./doc/common/tables/neutron-cfg_agent.xml:30(td)
msgid "(StrOpt) Path of the routing service helper class."
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:96(td)
msgid "[DEFAULT] rpc_loop_interval = 10"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:97(td) ./doc/common/tables/neutron-cfg_agent.xml:34(td)
msgid "(IntOpt) Interval when the process_services() loop executes in seconds. This is when the config agent lets each service helper to process its neutron resources."
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:108(td)
msgid "[AGENT] arp_responder = False"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:112(td)
msgid "[AGENT] dont_fragment = True"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:116(td)
msgid "[AGENT] enable_distributed_routing = False"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:120(td)
msgid "[AGENT] physical_interface_mappings = []"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:121(td) ./doc/common/tables/neutron-linuxbridge_agent.xml:22(td) ./doc/common/tables/neutron-ml2_ofa.xml:45(td) ./doc/common/tables/neutron-mlnx.xml:30(td)
msgid "(ListOpt) List of &lt;physical_network&gt;:&lt;physical_interface&gt;"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:124(td)
msgid "[CISCO_N1K] http_pool_size = 4"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:128(td)
msgid "[CISCO_N1K] restrict_policy_profiles = False"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:132(td)
msgid "[CONTRAIL] api_server_ip = 127.0.0.1"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:133(td) ./doc/common/tables/neutron-opencontrail.xml:22(td)
msgid "(StrOpt) IP address to connect to opencontrail controller"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:136(td)
msgid "[CONTRAIL] api_server_port = 8082"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:137(td) ./doc/common/tables/neutron-opencontrail.xml:26(td)
msgid "(IntOpt) Port to connect to opencontrail controller"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:140(td)
msgid "[NOVA] node_override_vif_distributed = []"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:141(td) ./doc/common/tables/neutron-ml2_bigswitch.xml:38(td) ./doc/common/tables/neutron-bigswitch.xml:38(td)
msgid "(ListOpt) Nova compute nodes to manually set VIF type to distributed"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:144(td)
msgid "[NOVA] node_override_vif_dvs = []"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:145(td) ./doc/common/tables/neutron-ml2_bigswitch.xml:42(td) ./doc/common/tables/neutron-bigswitch.xml:42(td)
msgid "(ListOpt) Nova compute nodes to manually set VIF type to dvs"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:148(td)
msgid "[NOVA] node_override_vif_hw_veb = []"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:149(td) ./doc/common/tables/neutron-ml2_bigswitch.xml:50(td) ./doc/common/tables/neutron-bigswitch.xml:50(td)
msgid "(ListOpt) Nova compute nodes to manually set VIF type to hw_veb"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:152(td)
msgid "[NOVA] node_override_vif_vrouter = []"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:153(td) ./doc/common/tables/neutron-ml2_bigswitch.xml:82(td) ./doc/common/tables/neutron-bigswitch.xml:82(td)
msgid "(ListOpt) Nova compute nodes to manually set VIF type to vrouter"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:156(td)
msgid "[OVS] use_veth_interconnection = False"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:160(td)
msgid "[SRIOV_NIC] exclude_devices = []"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:161(td) ./doc/common/tables/neutron-sriov.xml:22(td)
msgid "(ListOpt) List of &lt;network_device&gt;:&lt;excluded_devices&gt; mapping network_device to the agent's node-specific list of virtual functions that should not be used for virtual networking. excluded_devices is a semicolon separated list of virtual functions (BDF format).to exclude from network_device. The network_device in the mapping should appear in the physical_device_mappings list."
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:164(td)
msgid "[SRIOV_NIC] physical_device_mappings = []"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:165(td) ./doc/common/tables/neutron-sriov.xml:26(td)
msgid "(ListOpt) List of &lt;physical_network&gt;:&lt;network_device&gt; mapping physical network names to the agent's node-specific physical network device of SR-IOV physical function to be used for VLAN networks. All physical networks listed in network_vlan_ranges on the server should have mappings to appropriate interfaces on each agent"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:168(td)
msgid "[SYNCMANAGER] enable_sync = False"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:169(td)
msgid "(BoolOpt) Nuage plugin will sync resources between openstack and VSD"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:172(td)
msgid "[SYNCMANAGER] sync_interval = 0"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:173(td)
msgid "(IntOpt) Sync interval in seconds between openstack and VSD. It defines how often the synchronization is done. If not set, value of 0 is assumed and sync will be performed only once, at the Neutron startup time."
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:188(td)
msgid "[general] backlog_processing_interval = 10"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:192(td)
msgid "[general] cfg_agent_down_time = 60"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:196(td)
msgid "[general] default_security_group = mgmt_sec_grp"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:200(td)
msgid "[general] ensure_nova_running = True"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:204(td)
msgid "[general] l3_admin_tenant = L3AdminTenant"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:208(td)
msgid "[general] management_network = osn_mgmt_nw"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:212(td)
msgid "[general] service_vm_config_path = /opt/stack/data/neutron/cisco/config_drive"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:216(td)
msgid "[general] templates_path = /opt/stack/data/neutron/cisco/templates"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:220(td)
msgid "[haproxy] send_gratuitous_arp = 3"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:221(td) ./doc/common/tables/neutron-lbaas_haproxy.xml:26(td)
msgid "(IntOpt) When delete and re-add the same vip, send this many gratuitous ARPs to flush the ARP cache in the Router. Set it below or equal to 0 to disable this feature."
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:224(td)
msgid "[hosting_devices] csr1kv_booting_time = 420"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:228(td)
msgid "[hosting_devices] csr1kv_cfgagent_router_driver = neutron.plugins.cisco.cfg_agent.device_drivers.csr1kv.csr1kv_routing_driver.CSR1kvRoutingDriver"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:232(td)
msgid "[hosting_devices] csr1kv_configdrive_template = csr1kv_cfg_template"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:236(td)
msgid "[hosting_devices] csr1kv_device_driver = neutron.plugins.cisco.l3.hosting_device_drivers.csr1kv_hd_driver.CSR1kvHostingDeviceDriver"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:240(td)
msgid "[hosting_devices] csr1kv_flavor = 621"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:244(td)
msgid "[hosting_devices] csr1kv_image = csr1kv_openstack_img"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:248(td)
msgid "[hosting_devices] csr1kv_password = cisco"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:252(td)
msgid "[hosting_devices] csr1kv_plugging_driver = neutron.plugins.cisco.l3.plugging_drivers.n1kv_trunking_driver.N1kvTrunkingPlugDriver"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:256(td)
msgid "[hosting_devices] csr1kv_username = stack"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:272(td)
msgid "[l3_arista] l3_sync_interval = 180"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:273(td) ./doc/common/tables/neutron-l3_arista.xml:22(td)
msgid "(IntOpt) Sync interval in seconds between L3 Service plugin and EOS. This interval defines how often the synchronization is performed. This is an optional field. If not set, a value of 180 seconds is assumed"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:276(td)
msgid "[l3_arista] mlag_config = False"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:277(td) ./doc/common/tables/neutron-l3_arista.xml:26(td)
msgid "(BoolOpt) This flag is used indicate if Arista Switches are configured in MLAG mode. If yes, all L3 config is pushed to both the switches automatically. If this flag is set to True, ensure to specify IP addresses of both switches. This is optional. If not set, a value of \"False\" is assumed."
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:280(td)
msgid "[l3_arista] primary_l3_host ="
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:281(td) ./doc/common/tables/neutron-l3_arista.xml:30(td)
msgid "(StrOpt) Arista EOS IP address. This is required field. If not set, all communications to Arista EOS will fail"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:284(td)
msgid "[l3_arista] primary_l3_host_password ="
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:285(td) ./doc/common/tables/neutron-l3_arista.xml:34(td)
msgid "(StrOpt) Password for Arista EOS. This is required field. If not set, all communications to Arista EOS will fail"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:288(td)
msgid "[l3_arista] primary_l3_host_username ="
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:289(td) ./doc/common/tables/neutron-l3_arista.xml:38(td)
msgid "(StrOpt) Username for Arista EOS. This is required field. If not set, all communications to Arista EOS will fail"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:292(td)
msgid "[l3_arista] secondary_l3_host ="
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:293(td) ./doc/common/tables/neutron-l3_arista.xml:42(td)
msgid "(StrOpt) Arista EOS IP address for second Switch MLAGed with the first one. This an optional field, however, if mlag_config flag is set, then this is required. If not set, all communications to Arista EOS will fail"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:296(td)
msgid "[l3_arista] use_vrf = False"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:297(td) ./doc/common/tables/neutron-l3_arista.xml:46(td)
msgid "(BoolOpt) A \"True\" value for this flag indicates to create a router in VRF. If not set, all routers are created in default VRF.This is optional. If not set, a value of \"False\" is assumed."
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:300(td)
msgid "[ml2] extension_drivers = []"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:301(td) ./doc/common/tables/neutron-ml2.xml:22(td)
msgid "(ListOpt) An ordered list of extension driver entrypoints to be loaded from the neutron.ml2.extension_drivers namespace."
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:304(td)
msgid "[ml2_brocade] rbridge_id = 1"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:305(td)
msgid "(StrOpt) Rbridge id of provider edge router(s)"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:308(td)
msgid "[ml2_cisco_apic] apic_agent_poll_interval = 2"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:312(td)
msgid "[ml2_cisco_apic] apic_agent_report_interval = 30"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:316(td)
msgid "[ml2_cisco_apic] apic_app_profile_name = ${apic_system_id}_app"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:320(td)
msgid "[ml2_cisco_apic] apic_domain_name = ${apic_system_id}"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:324(td)
msgid "[ml2_cisco_apic] apic_entity_profile = ${apic_system_id}_entity_profile"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:328(td)
msgid "[ml2_cisco_apic] apic_function_profile = ${apic_system_id}_function_profile"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:332(td)
msgid "[ml2_cisco_apic] apic_host_uplink_ports = []"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:336(td)
msgid "[ml2_cisco_apic] apic_hosts = []"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:340(td)
msgid "[ml2_cisco_apic] apic_lacp_profile = ${apic_system_id}_lacp_profile"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:344(td)
msgid "[ml2_cisco_apic] apic_name_mapping = use_name"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:348(td)
msgid "[ml2_cisco_apic] apic_node_profile = ${apic_system_id}_node_profile"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:352(td)
msgid "[ml2_cisco_apic] apic_password = None"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:356(td)
msgid "[ml2_cisco_apic] apic_sync_interval = 0"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:360(td)
msgid "[ml2_cisco_apic] apic_use_ssl = True"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:364(td)
msgid "[ml2_cisco_apic] apic_username = None"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:368(td)
msgid "[ml2_cisco_apic] apic_vlan_ns_name = ${apic_system_id}_vlan_ns"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:372(td)
msgid "[ml2_cisco_apic] apic_vlan_range = 2:4093"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:376(td)
msgid "[ml2_cisco_apic] apic_vpc_pairs = []"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:380(td)
msgid "[ml2_cisco_apic] root_helper = sudo /usr/local/bin/neutron-rootwrap /etc/neutron/rootwrap.conf"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:384(td)
msgid "[ml2_fslsdn] crd_api_insecure = False"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:388(td)
msgid "[ml2_fslsdn] crd_auth_strategy = keystone"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:392(td)
msgid "[ml2_fslsdn] crd_auth_url = http://127.0.0.1:5000/v2.0/"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:396(td)
msgid "[ml2_fslsdn] crd_ca_certificates_file = None"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:400(td)
msgid "[ml2_fslsdn] crd_password = password"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:404(td)
msgid "[ml2_fslsdn] crd_region_name = RegionOne"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:408(td)
msgid "[ml2_fslsdn] crd_tenant_name = service"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:412(td)
msgid "[ml2_fslsdn] crd_url = http://127.0.0.1:9797"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:416(td)
msgid "[ml2_fslsdn] crd_url_timeout = 30"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:420(td)
msgid "[ml2_fslsdn] crd_user_name = crd"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:424(td)
msgid "[ml2_sriov] agent_required = False"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:425(td) ./doc/common/tables/neutron-ml2_sriov.xml:22(td)
msgid "(BoolOpt) SRIOV neutron agent is required for port binding"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:428(td)
msgid "[ml2_sriov] supported_pci_vendor_devs = ['15b3:1004', '8086:10c9']"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:429(td) ./doc/common/tables/neutron-ml2_sriov.xml:26(td)
msgid "(ListOpt) Supported PCI vendor devices, defined by vendor_id:product_id according to the PCI ID Repository. Default enables support for Intel and Mellanox SR-IOV capable NICs"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:432(td)
msgid "[n1kv] management_port_profile = osn_mgmt_pp"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:436(td)
msgid "[n1kv] t1_network_profile = osn_t1_np"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:440(td)
msgid "[n1kv] t1_port_profile = osn_t1_pp"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:444(td)
msgid "[n1kv] t2_network_profile = osn_t2_np"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:448(td)
msgid "[n1kv] t2_port_profile = osn_t2_pp"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:452(td)
msgid "[plumgriddirector] driver = neutron.plugins.plumgrid.drivers.plumlib.Plumlib"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:453(td) ./doc/common/tables/neutron-plumgrid.xml:30(td)
msgid "(StrOpt) PLUMgrid Driver"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:456(td)
msgid "[radware] ha_secondary_address = None"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:457(td) ./doc/common/tables/neutron-lbaas_radware.xml:26(td)
msgid "(StrOpt) IP address of secondary vDirect server."
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:474(td)
msgid "neutron"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:483(td)
msgid "[DEFAULT] force_gateway_on_subnet"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:484(td) ./doc/common/tables/trove-conf-changes.xml:361(td)
msgid "False"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:485(td) ./doc/common/tables/trove-conf-changes.xml:362(td)
msgid "True"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:488(td)
msgid "[DEFAULT] http_timeout"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:490(td)
msgid "75"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:493(td)
msgid "[DEFAULT] metadata_backlog"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:494(td)
msgid "128"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:495(td)
msgid "4096"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:498(td)
msgid "[DEFAULT] metadata_workers"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:500(td)
msgid "2"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:504(td)
msgid "neutron.openstack.common.rpc.matchmaker.MatchMakerLocalhost"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:508(td)
msgid "[DEFAULT] send_arp_for_ha"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:510(td)
msgid "3"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:513(td)
msgid "[CISCO_N1K] poll_duration"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:515(td) ./doc/common/tables/trove-conf-changes.xml:326(td)
msgid "60"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:518(td)
msgid "[NOVA] vif_types"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:519(td)
msgid "unbound, binding_failed, ovs, ivs, bridge, 802.1qbg, 802.1qbh, hyperv, midonet, mlnx_direct, hostdev, other"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:520(td)
msgid "unbound, binding_failed, ovs, ivs, bridge, 802.1qbg, 802.1qbh, hyperv, midonet, mlnx_direct, hostdev, hw_veb, dvs, other, distributed, vrouter"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:523(td)
msgid "[QUOTAS] quota_firewall_rule"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:524(td)
msgid "-1"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:525(td)
msgid "100"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:528(td)
msgid "[SDNVE] default_tenant_type"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:529(td)
msgid "OF"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:530(td)
msgid "OVERLAY"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:534(td)
msgid "sqlite://"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:538(td)
msgid "[database] max_overflow"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:539(td) ./doc/common/tables/cinder-conf-changes.xml:512(td)
msgid "20"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:543(td) ./doc/common/tables/cinder-conf-changes.xml:531(td)
msgid "[database] max_pool_size"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:548(td)
msgid "[database] pool_timeout"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:563(td)
msgid "[radware] l2_l3_ctor_params"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:564(td)
msgid "{'ha_ip_pool_name': 'default', 'allocate_ha_vrrp': True, 'ha_network_name': 'HA-Network', 'service': '_REPLACE_', 'allocate_ha_ips': True}"
msgstr ""
#: ./doc/common/tables/neutron-conf-changes.xml:565(td)
msgid "{'ha_network_name': 'HA-Network', 'service': '_REPLACE_', 'ha_ip_pool_name': 'default', 'twoleg_enabled': '_REPLACE_', 'allocate_ha_ips': True, 'allocate_ha_vrrp': True}"
msgstr ""
#. Warning: Do not edit this file. It is automatically generated and your changes will be overwritten. The tool to do so lives in the openstack-doc-tools repository.
#: ./doc/common/tables/keystone-conf-changes.xml:4(title)
msgid "New, updated and deprecated options in Juno for OpenStack Identity"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:16(td)
msgid "[DEFAULT] admin_workers = 1"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:20(td)
msgid "[DEFAULT] public_workers = 1"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:24(td)
msgid "[DEFAULT] strict_password_check = False"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:28(td)
msgid "[catalog] cache_time = None"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:32(td)
msgid "[catalog] caching = True"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:40(td)
msgid "[endpoint_policy] driver = keystone.contrib.endpoint_policy.backends.sql.EndpointPolicy"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:41(td)
msgid "(StrOpt) Endpoint policy backend driver"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:44(td)
msgid "[identity_mapping] backward_compatible_ids = True"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:45(td) ./doc/common/tables/keystone-mapping.xml:22(td)
msgid "(BoolOpt) The format of user and group IDs changed in Juno for backends that do not generate UUIDs (e.g. LDAP), with keystone providing a hash mapping to the underlying attribute in LDAP. By default this mapping is disabled, which ensures that existing IDs will not change. Even when the mapping is enabled by using domain specific drivers, any users and groups from the default domain being handled by LDAP will still not be mapped to ensure their IDs remain backward compatible. Setting this value to False will enable the mapping for even the default LDAP driver. It is only safe to do this if you do not already have assignments for users and groups from the default LDAP domain, and it is acceptable for Keystone to provide the different IDs to clients than it did previously. Typically this means that the only time you can set this value to False is when configuring a fresh installation."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:48(td)
msgid "[identity_mapping] driver = keystone.identity.mapping_backends.sql.Mapping"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:49(td) ./doc/common/tables/keystone-mapping.xml:26(td)
msgid "(StrOpt) Keystone Identity Mapping backend driver."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:52(td)
msgid "[identity_mapping] generator = keystone.identity.id_generators.sha256.Generator"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:53(td) ./doc/common/tables/keystone-mapping.xml:30(td)
msgid "(StrOpt) Public ID generator for user and group entities. The Keystone identity mapper only supports generators that produce no more than 64 characters."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:68(td)
msgid "[keystone_ec2_token] cafile = None"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:69(td) ./doc/common/tables/keystone-ec2.xml:29(td)
msgid "(StrOpt) A PEM encoded certificate authority to use when verifying HTTPS connections. Defaults to the system CAs."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:72(td)
msgid "[keystone_ec2_token] certfile = None"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:73(td) ./doc/common/tables/keystone-ec2.xml:33(td)
msgid "(StrOpt) Client certificate key filename. Required if EC2 server requires client certificate."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:76(td)
msgid "[keystone_ec2_token] insecure = False"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:77(td) ./doc/common/tables/neutron-nec.xml:42(td) ./doc/common/tables/keystone-ec2.xml:37(td)
msgid "(BoolOpt) Disable SSL certificate verification."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:80(td)
msgid "[keystone_ec2_token] keyfile = None"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:81(td) ./doc/common/tables/keystone-ec2.xml:41(td)
msgid "(StrOpt) Required if EC2 server requires client certificate."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:84(td)
msgid "[keystone_ec2_token] url = http://localhost:5000/v2.0/ec2tokens"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:85(td) ./doc/common/tables/nova-ec2.xml:66(td) ./doc/common/tables/keystone-ec2.xml:45(td)
msgid "(StrOpt) URL to get token from ec2 request."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:88(td)
msgid "[ldap] auth_pool_connection_lifetime = 60"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:89(td) ./doc/common/tables/keystone-ldap.xml:30(td)
msgid "(IntOpt) End user auth connection lifetime in seconds."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:92(td)
msgid "[ldap] auth_pool_size = 100"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:93(td) ./doc/common/tables/keystone-ldap.xml:34(td)
msgid "(IntOpt) End user auth connection pool size."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:96(td)
msgid "[ldap] debug_level = None"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:97(td) ./doc/common/tables/keystone-ldap.xml:42(td)
msgid "(IntOpt) Sets the LDAP debugging level for LDAP calls. A value of 0 means that debugging is not enabled. This value is a bitmask, consult your LDAP documentation for possible values."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:100(td)
msgid "[ldap] pool_connection_lifetime = 600"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:101(td) ./doc/common/tables/keystone-ldap.xml:106(td)
msgid "(IntOpt) Connection lifetime in seconds."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:104(td)
msgid "[ldap] pool_connection_timeout = -1"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:105(td) ./doc/common/tables/keystone-ldap.xml:110(td)
msgid "(IntOpt) Connector timeout in seconds. Value -1 indicates indefinite wait for response."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:108(td)
msgid "[ldap] pool_retry_delay = 0.1"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:109(td) ./doc/common/tables/keystone-ldap.xml:114(td)
msgid "(FloatOpt) Time span in seconds to wait between two reconnect trials."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:112(td)
msgid "[ldap] pool_retry_max = 3"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:113(td) ./doc/common/tables/keystone-ldap.xml:118(td)
msgid "(IntOpt) Maximum count of reconnect trials."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:116(td)
msgid "[ldap] pool_size = 10"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:117(td) ./doc/common/tables/keystone-ldap.xml:122(td)
msgid "(IntOpt) Connection pool size."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:120(td)
msgid "[ldap] project_additional_attribute_mapping = []"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:121(td) ./doc/common/tables/keystone-ldap.xml:126(td)
msgid "(ListOpt) Additional attribute mappings for projects. Attribute mapping format is &lt;ldap_attr&gt;:&lt;user_attr&gt;, where ldap_attr is the attribute in the LDAP entry and user_attr is the Identity API attribute."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:124(td)
msgid "[ldap] project_allow_create = True"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:125(td) ./doc/common/tables/keystone-ldap.xml:130(td)
msgid "(BoolOpt) Allow project creation in LDAP backend."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:128(td)
msgid "[ldap] project_allow_delete = True"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:129(td) ./doc/common/tables/keystone-ldap.xml:134(td)
msgid "(BoolOpt) Allow project deletion in LDAP backend."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:132(td)
msgid "[ldap] project_allow_update = True"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:133(td) ./doc/common/tables/keystone-ldap.xml:138(td)
msgid "(BoolOpt) Allow project update in LDAP backend."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:136(td)
msgid "[ldap] project_attribute_ignore = []"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:137(td) ./doc/common/tables/keystone-ldap.xml:142(td)
msgid "(ListOpt) List of attributes stripped off the project on update."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:140(td)
msgid "[ldap] project_desc_attribute = description"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:141(td) ./doc/common/tables/keystone-ldap.xml:146(td)
msgid "(StrOpt) LDAP attribute mapped to project description."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:144(td)
msgid "[ldap] project_domain_id_attribute = businessCategory"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:145(td) ./doc/common/tables/keystone-ldap.xml:150(td)
msgid "(StrOpt) LDAP attribute mapped to project domain_id."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:148(td)
msgid "[ldap] project_enabled_attribute = enabled"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:149(td) ./doc/common/tables/keystone-ldap.xml:154(td)
msgid "(StrOpt) LDAP attribute mapped to project enabled."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:152(td)
msgid "[ldap] project_enabled_emulation = False"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:153(td) ./doc/common/tables/keystone-ldap.xml:158(td)
msgid "(BoolOpt) If true, Keystone uses an alternative method to determine if a project is enabled or not by checking if they are a member of the \"project_enabled_emulation_dn\" group."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:156(td)
msgid "[ldap] project_enabled_emulation_dn = None"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:157(td) ./doc/common/tables/keystone-ldap.xml:162(td)
msgid "(StrOpt) DN of the group entry to hold enabled projects when using enabled emulation."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:160(td)
msgid "[ldap] project_filter = None"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:161(td) ./doc/common/tables/keystone-ldap.xml:166(td)
msgid "(StrOpt) LDAP search filter for projects."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:164(td)
msgid "[ldap] project_id_attribute = cn"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:165(td) ./doc/common/tables/keystone-ldap.xml:170(td)
msgid "(StrOpt) LDAP attribute mapped to project id."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:168(td)
msgid "[ldap] project_member_attribute = member"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:169(td) ./doc/common/tables/keystone-ldap.xml:174(td)
msgid "(StrOpt) LDAP attribute mapped to project membership for user."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:172(td)
msgid "[ldap] project_name_attribute = ou"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:173(td) ./doc/common/tables/keystone-ldap.xml:178(td)
msgid "(StrOpt) LDAP attribute mapped to project name."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:176(td)
msgid "[ldap] project_objectclass = groupOfNames"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:177(td) ./doc/common/tables/keystone-ldap.xml:182(td)
msgid "(StrOpt) LDAP objectclass for projects."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:180(td)
msgid "[ldap] project_tree_dn = None"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:181(td) ./doc/common/tables/keystone-ldap.xml:186(td)
msgid "(StrOpt) Search base for projects"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:184(td)
msgid "[ldap] use_auth_pool = False"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:185(td) ./doc/common/tables/keystone-ldap.xml:258(td)
msgid "(BoolOpt) Enable LDAP connection pooling for end user authentication. If use_pool is disabled, then this setting is meaningless and is not used at all."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:188(td)
msgid "[ldap] use_pool = False"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:189(td) ./doc/common/tables/keystone-ldap.xml:266(td)
msgid "(BoolOpt) Enable LDAP connection pooling."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:192(td)
msgid "[ldap] user_enabled_invert = False"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:193(td) ./doc/common/tables/keystone-ldap.xml:318(td)
msgid "(BoolOpt) Invert the meaning of the boolean enabled values. Some LDAP servers use a boolean lock attribute where \"true\" means an account is disabled. Setting \"user_enabled_invert = true\" will allow these lock attributes to be used. This setting will have no effect if \"user_enabled_mask\" or \"user_enabled_emulation\" settings are in use."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:196(td)
msgid "[saml] assertion_expiration_time = 3600"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:197(td)
msgid "(IntOpt) Default TTL, in seconds, for any generated SAML assertion created by Keystone."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:200(td)
msgid "[saml] certfile = /etc/keystone/ssl/certs/signing_cert.pem"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:201(td)
msgid "(StrOpt) Path of the certfile for SAML signing. For non-production environments, you may be interested in using `keystone-manage pki_setup` to generate self-signed certificates. Note, the path cannot contain a comma."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:204(td)
msgid "[saml] idp_contact_company = None"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:205(td)
msgid "(StrOpt) Company of contact person."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:208(td)
msgid "[saml] idp_contact_email = None"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:209(td)
msgid "(StrOpt) Email address of contact person."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:212(td)
msgid "[saml] idp_contact_name = None"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:213(td)
msgid "(StrOpt) Given name of contact person"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:216(td)
msgid "[saml] idp_contact_surname = None"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:217(td)
msgid "(StrOpt) Surname of contact person."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:220(td)
msgid "[saml] idp_contact_telephone = None"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:221(td)
msgid "(StrOpt) Telephone number of contact person."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:224(td)
msgid "[saml] idp_contact_type = other"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:225(td)
msgid "(StrOpt) Contact type. Allowed values are: technical, support, administrative billing, and other"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:228(td)
msgid "[saml] idp_entity_id = None"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:229(td)
msgid "(StrOpt) Entity ID value for unique Identity Provider identification. Usually FQDN is set with a suffix. A value is required to generate IDP Metadata. For example: https://keystone.example.com/v3/OS-FEDERATION/saml2/idp"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:232(td)
msgid "[saml] idp_lang = en"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:233(td)
msgid "(StrOpt) Language used by the organization."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:236(td)
msgid "[saml] idp_metadata_path = /etc/keystone/saml2_idp_metadata.xml"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:237(td)
msgid "(StrOpt) Path to the Identity Provider Metadata file. This file should be generated with the keystone-manage saml_idp_metadata command."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:240(td)
msgid "[saml] idp_organization_display_name = None"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:241(td)
msgid "(StrOpt) Organization name to be displayed."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:244(td)
msgid "[saml] idp_organization_name = None"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:245(td)
msgid "(StrOpt) Organization name the installation belongs to."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:248(td)
msgid "[saml] idp_organization_url = None"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:249(td)
msgid "(StrOpt) URL of the organization."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:252(td)
msgid "[saml] idp_sso_endpoint = None"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:253(td)
msgid "(StrOpt) Identity Provider Single-Sign-On service value, required in the Identity Provider's metadata. A value is required to generate IDP Metadata. For example: https://keystone.example.com/v3/OS-FEDERATION/saml2/sso"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:256(td)
msgid "[saml] keyfile = /etc/keystone/ssl/private/signing_key.pem"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:257(td)
msgid "(StrOpt) Path of the keyfile for SAML signing. Note, the path cannot contain a comma."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:260(td)
msgid "[saml] xmlsec1_binary = xmlsec1"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:261(td)
msgid "(StrOpt) Binary to be called for XML signing. Install the appropriate package, specify absolute path or adjust your PATH environment variable if the binary cannot be found."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:264(td)
msgid "[token] hash_algorithm = md5"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:265(td) ./doc/common/tables/keystone-token.xml:46(td)
msgid "(StrOpt) The hash algorithm to use for PKI tokens. This can be set to any algorithm that hashlib supports. WARNING: Before changing this value, the auth_token middleware must be configured with the hash_algorithms, otherwise token revocation will not be processed correctly."
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:283(td) ./doc/common/tables/nova-conf-changes.xml:303(td)
msgid "keystone"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:288(td) ./doc/common/tables/ceilometer-conf-changes.xml:199(td)
msgid "amqp=WARN, amqplib=WARN, boto=WARN, qpid=WARN, sqlalchemy=WARN, suds=INFO, oslo.messaging=INFO, iso8601=WARN, requests.packages.urllib3.connectionpool=WARN, urllib3.connectionpool=WARN, websocket=WARN, keystonemiddleware=WARN, routes.middleware=WARN, stevedore=WARN"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:292(td)
msgid "keystone.sqlite"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:301(td)
msgid "[ldap] user_mail_attribute"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:302(td)
msgid "email"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:303(td)
msgid "mail"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:306(td)
msgid "[token] driver"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:307(td)
msgid "keystone.token.backends.sql.Token"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:308(td)
msgid "keystone.token.persistence.backends.sql.Token"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:322(td)
msgid "[ldap] tenant_allow_delete"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:323(td)
msgid "[ldap] project_allow_delete"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:326(td)
msgid "[ldap] tenant_allow_create"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:327(td)
msgid "[ldap] project_allow_create"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:330(td)
msgid "[ldap] tenant_enabled_emulation"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:331(td)
msgid "[ldap] project_enabled_emulation"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:334(td)
msgid "[ldap] tenant_member_attribute"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:335(td)
msgid "[ldap] project_member_attribute"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:338(td)
msgid "[ldap] tenant_additional_attribute_mapping"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:339(td)
msgid "[ldap] project_additional_attribute_mapping"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:342(td)
msgid "[ldap] tenant_filter"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:343(td)
msgid "[ldap] project_filter"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:346(td)
msgid "[ldap] tenant_domain_id_attribute"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:347(td)
msgid "[ldap] project_domain_id_attribute"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:350(td)
msgid "[ldap] tenant_name_attribute"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:351(td)
msgid "[ldap] project_name_attribute"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:354(td)
msgid "[ldap] tenant_attribute_ignore"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:355(td)
msgid "[ldap] project_attribute_ignore"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:358(td)
msgid "[ldap] tenant_allow_update"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:359(td)
msgid "[ldap] project_allow_update"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:362(td)
msgid "[ldap] tenant_tree_dn"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:363(td)
msgid "[ldap] project_tree_dn"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:366(td)
msgid "[ldap] tenant_id_attribute"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:367(td)
msgid "[ldap] project_id_attribute"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:370(td)
msgid "[ldap] tenant_desc_attribute"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:371(td)
msgid "[ldap] project_desc_attribute"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:374(td)
msgid "[ldap] tenant_objectclass"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:375(td)
msgid "[ldap] project_objectclass"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:378(td)
msgid "[ldap] tenant_enabled_emulation_dn"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:379(td)
msgid "[ldap] project_enabled_emulation_dn"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:382(td)
msgid "[ldap] tenant_enabled_attribute"
msgstr ""
#: ./doc/common/tables/keystone-conf-changes.xml:383(td)
msgid "[ldap] project_enabled_attribute"
msgstr ""
#: ./doc/common/tables/swift-account-server-filter-healthcheck.xml:8(literal) ./doc/common/tables/swift-container-server-filter-healthcheck.xml:8(literal) ./doc/common/tables/swift-object-server-filter-healthcheck.xml:8(literal) ./doc/common/tables/swift-proxy-server-filter-healthcheck.xml:8(literal)
msgid "[filter-healthcheck]"
msgstr ""
#: ./doc/common/tables/swift-account-server-filter-healthcheck.xml:8(literal) ./doc/common/tables/swift-account-server-filter-xprofile.xml:8(literal) ./doc/common/tables/swift-account-server-filter-recon.xml:8(literal) ./doc/common/tables/swift-account-server-account-replicator.xml:8(literal) ./doc/common/tables/swift-account-server-app-account-server.xml:8(literal) ./doc/common/tables/swift-account-server-pipeline-main.xml:8(literal) ./doc/common/tables/swift-account-server-account-auditor.xml:8(literal) ./doc/common/tables/swift-account-server-DEFAULT.xml:8(literal) ./doc/common/tables/swift-account-server-account-reaper.xml:8(literal)
msgid "account-server.conf"
msgstr ""
#: ./doc/common/tables/swift-account-server-filter-healthcheck.xml:20(td) ./doc/common/tables/swift-container-server-filter-healthcheck.xml:20(td) ./doc/common/tables/swift-object-server-filter-healthcheck.xml:20(td) ./doc/common/tables/swift-proxy-server-filter-healthcheck.xml:20(td)
msgid "disable_path ="
msgstr ""
#: ./doc/common/tables/swift-account-server-filter-healthcheck.xml:24(td) ./doc/common/tables/swift-container-server-filter-healthcheck.xml:24(td) ./doc/common/tables/swift-object-server-filter-healthcheck.xml:24(td) ./doc/common/tables/swift-proxy-server-filter-healthcheck.xml:24(td)
msgid "use = egg:swift#healthcheck"
msgstr ""
#: ./doc/common/tables/nova-common.xml:21(td)
msgid "bindir = /usr/local/bin"
msgstr ""
#: ./doc/common/tables/nova-common.xml:22(td)
msgid "(StrOpt) Directory where nova binaries are installed"
msgstr ""
#: ./doc/common/tables/nova-common.xml:25(td)
msgid "compute_topic = compute"
msgstr ""
#: ./doc/common/tables/nova-common.xml:26(td)
msgid "(StrOpt) The topic compute nodes listen on"
msgstr ""
#: ./doc/common/tables/nova-common.xml:29(td)
msgid "console_topic = console"
msgstr ""
#: ./doc/common/tables/nova-common.xml:30(td)
msgid "(StrOpt) The topic console proxy nodes listen on"
msgstr ""
#: ./doc/common/tables/nova-common.xml:33(td)
msgid "consoleauth_topic = consoleauth"
msgstr ""
#: ./doc/common/tables/nova-common.xml:34(td)
msgid "(StrOpt) The topic console auth proxy nodes listen on"
msgstr ""
#: ./doc/common/tables/nova-common.xml:42(td)
msgid "(StrOpt) Name of this node. This can be an opaque identifier. It is not necessarily a hostname, FQDN, or IP address. However, the node name must be valid within an AMQP key, and if using ZeroMQ, a valid hostname, FQDN, or IP address"
msgstr ""
#: ./doc/common/tables/nova-common.xml:53(td) ./doc/common/tables/cinder-common.xml:69(td)
msgid "my_ip = 10.0.0.1"
msgstr ""
#: ./doc/common/tables/nova-common.xml:54(td) ./doc/common/tables/cinder-common.xml:70(td)
msgid "(StrOpt) IP address of this host"
msgstr ""
#: ./doc/common/tables/nova-common.xml:58(td) ./doc/common/tables/heat-amqp.xml:50(td) ./doc/common/tables/keystone-amqp.xml:38(td) ./doc/common/tables/sahara-amqp.xml:30(td) ./doc/common/tables/glance-amqp.xml:30(td) ./doc/common/tables/cinder-rpc.xml:70(td) ./doc/common/tables/neutron-notifier.xml:22(td) ./doc/common/tables/ceilometer-amqp.xml:30(td)
msgid "(MultiStrOpt) Driver or drivers to handle sending notifications."
msgstr ""
#: ./doc/common/tables/nova-common.xml:62(td) ./doc/common/tables/heat-amqp.xml:54(td) ./doc/common/tables/keystone-amqp.xml:42(td) ./doc/common/tables/sahara-amqp.xml:42(td) ./doc/common/tables/glance-amqp.xml:34(td) ./doc/common/tables/cinder-rpc.xml:74(td) ./doc/common/tables/neutron-notifier.xml:26(td) ./doc/common/tables/ceilometer-amqp.xml:34(td)
msgid "(ListOpt) AMQP topic used for OpenStack notifications."
msgstr ""
#: ./doc/common/tables/nova-common.xml:65(td)
msgid "notify_api_faults = False"
msgstr ""
#: ./doc/common/tables/nova-common.xml:66(td)
msgid "(BoolOpt) If set, send api.fault notifications on caught exceptions in the API service."
msgstr ""
#: ./doc/common/tables/nova-common.xml:69(td)
msgid "notify_on_state_change = None"
msgstr ""
#: ./doc/common/tables/nova-common.xml:70(td)
msgid "(StrOpt) If set, send compute.instance.update notifications on instance state changes. Valid values are None for no notifications, \"vm_state\" for notifications on VM state changes, or \"vm_and_task_state\" for notifications on VM and task state changes."
msgstr ""
#: ./doc/common/tables/nova-common.xml:73(td)
msgid "pybasedir = /usr/lib/python/site-packages/nova"
msgstr ""
#: ./doc/common/tables/nova-common.xml:74(td)
msgid "(StrOpt) Directory where the nova python module is installed"
msgstr ""
#: ./doc/common/tables/nova-common.xml:77(td) ./doc/common/tables/cinder-common.xml:101(td) ./doc/common/tables/trove-rpc.xml:41(td)
msgid "report_interval = 10"
msgstr ""
#: ./doc/common/tables/nova-common.xml:78(td)
msgid "(IntOpt) Seconds between nodes reporting state to datastore"
msgstr ""
#: ./doc/common/tables/nova-common.xml:81(td)
msgid "rootwrap_config = /etc/nova/rootwrap.conf"
msgstr ""
#: ./doc/common/tables/nova-common.xml:82(td) ./doc/common/tables/cinder-common.xml:110(td)
msgid "(StrOpt) Path to the rootwrap configuration file to use for running commands as root"
msgstr ""
#: ./doc/common/tables/nova-common.xml:85(td) ./doc/common/tables/cinder-common.xml:117(td)
msgid "service_down_time = 60"
msgstr ""
#: ./doc/common/tables/nova-common.xml:86(td)
msgid "(IntOpt) Maximum time since last check-in for up service"
msgstr ""
#: ./doc/common/tables/nova-common.xml:89(td)
msgid "state_path = $pybasedir"
msgstr ""
#: ./doc/common/tables/nova-common.xml:90(td)
msgid "(StrOpt) Top-level directory for maintaining nova's state"
msgstr ""
#: ./doc/common/tables/nova-common.xml:93(td)
msgid "tempdir = None"
msgstr ""
#: ./doc/common/tables/nova-common.xml:94(td)
msgid "(StrOpt) Explicitly specify the temporary working directory"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:20(td)
msgid "account_autocreate = false"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:21(td)
msgid "If set to 'true' authorized accounts that do not yet exist within the Swift cluster will be automatically created."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:24(td)
msgid "allow_account_management = false"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:25(td)
msgid "Whether account PUTs and DELETEs are even callable"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:28(td) ./doc/common/tables/swift-object-expirer-object-expirer.xml:20(td) ./doc/common/tables/swift-object-server-app-object-server.xml:24(td) ./doc/common/tables/swift-account-server-app-account-server.xml:20(td) ./doc/common/tables/swift-container-server-app-container-server.xml:24(td)
msgid "auto_create_account_prefix = ."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:29(td) ./doc/common/tables/swift-object-expirer-object-expirer.xml:21(td) ./doc/common/tables/swift-object-server-app-object-server.xml:25(td) ./doc/common/tables/swift-account-server-app-account-server.xml:21(td) ./doc/common/tables/swift-container-server-app-container-server.xml:25(td)
msgid "Prefix to use when automatically creating accounts"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:32(td)
msgid "client_chunk_size = 65536"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:33(td)
msgid "Chunk size to read from clients"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:36(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:40(td) ./doc/common/tables/swift-account-server-account-replicator.xml:24(td) ./doc/common/tables/swift-container-server-container-updater.xml:29(td) ./doc/common/tables/swift-container-server-app-container-server.xml:28(td) ./doc/common/tables/swift-container-server-container-replicator.xml:24(td) ./doc/common/tables/swift-account-server-account-reaper.xml:24(td)
msgid "conn_timeout = 0.5"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:37(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:41(td) ./doc/common/tables/swift-account-server-account-replicator.xml:25(td) ./doc/common/tables/swift-container-server-container-updater.xml:30(td) ./doc/common/tables/swift-container-server-app-container-server.xml:29(td) ./doc/common/tables/swift-container-server-container-replicator.xml:25(td) ./doc/common/tables/swift-account-server-account-reaper.xml:25(td)
msgid "Connection timeout to external services"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:40(td)
msgid "deny_host_headers ="
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:44(td) ./doc/common/tables/swift-account-server-account-replicator.xml:28(td)
msgid "error_suppression_interval = 60"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:45(td) ./doc/common/tables/swift-account-server-account-replicator.xml:29(td)
msgid "Time in seconds that must elapse since the last error for a node to be considered no longer error limited"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:48(td) ./doc/common/tables/swift-account-server-account-replicator.xml:32(td)
msgid "error_suppression_limit = 10"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:49(td) ./doc/common/tables/swift-account-server-account-replicator.xml:33(td)
msgid "Error count to consider a node error limited"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:52(td)
msgid "log_handoffs = true"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:56(td)
msgid "max_containers_per_account = 0"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:57(td)
msgid "If set to a positive value, trying to create a container when the account already has at least this maximum containers will result in a 403 Forbidden. Note: This is a soft limit, meaning a user might exceed the cap for recheck_account_existence before the 403s kick in."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:60(td)
msgid "max_containers_whitelist ="
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:61(td)
msgid "is a comma separated list of account names that ignore the max_containers_per_account cap."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:64(td)
msgid "max_large_object_get_time = 86400"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:68(td) ./doc/common/tables/swift-account-server-account-replicator.xml:60(td) ./doc/common/tables/swift-container-server-container-replicator.xml:52(td) ./doc/common/tables/swift-account-server-account-reaper.xml:52(td)
msgid "node_timeout = 10"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:69(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:147(td) ./doc/common/tables/swift-account-server-account-replicator.xml:61(td) ./doc/common/tables/swift-container-server-container-updater.xml:54(td) ./doc/common/tables/swift-object-server-object-replicator.xml:61(td) ./doc/common/tables/swift-container-server-app-container-server.xml:33(td) ./doc/common/tables/swift-container-server-container-replicator.xml:53(td) ./doc/common/tables/swift-object-server-object-updater.xml:45(td) ./doc/common/tables/swift-account-server-account-reaper.xml:53(td)
msgid "Request timeout to external services"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:72(td)
msgid "object_chunk_size = 65536"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:73(td)
msgid "Chunk size to read from object servers"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:76(td)
msgid "object_post_as_copy = true"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:77(td)
msgid "Set object_post_as_copy = false to turn on fast posts where only the metadata changes are stored anew and the original data file is kept in place. This makes for quicker posts; but since the container metadata isn't updated in this mode, features like container sync won't be able to sync posts."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:80(td)
msgid "post_quorum_timeout = 0.5"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:84(td)
msgid "put_queue_depth = 10"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:88(td)
msgid "read_affinity = r1z1=100, r1z2=200, r2=300"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:92(td)
msgid "recheck_account_existence = 60"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:93(td)
msgid "Cache timeout in seconds to send memcached for account existence"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:96(td)
msgid "recheck_container_existence = 60"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:97(td)
msgid "Cache timeout in seconds to send memcached for container existence"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:100(td)
msgid "recoverable_node_timeout = node_timeout"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:101(td)
msgid "Request timeout to external services for requests that, on failure, can be recovered from. For example, object GET. from a client external services"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:104(td)
msgid "request_node_count = 2 * replicas"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:105(td)
msgid "* replicas Set to the number of nodes to contact for a normal request. You can use '* replicas' at the end to have it use the number given times the number of replicas for the ring being used for the request. conf file for values will only be shown to the list of swift_owners. The exact default definition of a swift_owner is headers&gt; up to the auth system in use, but usually indicates administrative responsibilities. paste.deploy to use for auth. To use tempauth set to: `egg:swift#tempauth` each request"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:120(td)
msgid "set log_name = proxy-server"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:124(td)
msgid "sorting_method = shuffle"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:128(td)
msgid "swift_owner_headers = x-container-read, x-container-write, x-container-sync-key, x-container-sync-to, x-account-meta-temp-url-key, x-account-meta-temp-url-key-2, x-account-access-control"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:129(td)
msgid "the sample These are the headers whose conf file for values will only be shown to the list of swift_owners. The exact default definition of a swift_owner is headers&gt; up to the auth system in use, but usually indicates administrative responsibilities. paste.deploy to use for auth. To use tempauth set to: `egg:swift#tempauth` each request"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:132(td)
msgid "timing_expiry = 300"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:140(td)
msgid "write_affinity = r1, r2"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-app-proxy-server.xml:144(td)
msgid "write_affinity_node_count = 2 * replicas"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:7(caption)
msgid "Description of volumes configuration options"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:21(td)
msgid "block_device_allocate_retries = 60"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:22(td) ./doc/common/tables/nova-conf-changes.xml:21(td)
msgid "(IntOpt) Number of times to retry block device allocation on failures"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:25(td)
msgid "block_device_allocate_retries_interval = 3"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:26(td) ./doc/common/tables/nova-conf-changes.xml:25(td)
msgid "(IntOpt) Waiting time interval (seconds) between block device allocation retries on failures"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:29(td)
msgid "volume_api_class = nova.volume.cinder.API"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:30(td) ./doc/common/tables/cinder-api.xml:90(td)
msgid "(StrOpt) The full class name of the volume API class to use"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:33(td)
msgid "volume_usage_poll_interval = 0"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:34(td)
msgid "(IntOpt) Interval in seconds for gathering volume usages"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:37(th) ./doc/common/tables/nova-baremetal.xml:18(th) ./doc/common/tables/nova-tilera.xml:18(th)
msgid "[baremetal]"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:40(td)
msgid "iscsi_iqn_prefix = iqn.2010-10.org.openstack.baremetal"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:41(td)
msgid "(StrOpt) The iSCSI IQN prefix used in baremetal volume connections."
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:44(td)
msgid "volume_driver = nova.virt.baremetal.volume_driver.LibvirtVolumeDriver"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:45(td)
msgid "(StrOpt) Baremetal volume driver."
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:48(th)
msgid "[cinder]"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:51(td) ./doc/common/tables/nova-neutron.xml:56(td) ./doc/common/tables/nova-glance.xml:32(td)
msgid "api_insecure = False"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:52(td) ./doc/common/tables/nova-conf-changes.xml:45(td) ./doc/common/tables/glance-cinder.xml:22(td)
msgid "(BoolOpt) Allow to perform insecure SSL requests to cinder"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:55(td) ./doc/common/tables/nova-neutron.xml:64(td)
msgid "ca_certificates_file = None"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:56(td) ./doc/common/tables/nova-conf-changes.xml:49(td)
msgid "(StrOpt) Location of ca certificates file to use for cinder client requests."
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:59(td)
msgid "catalog_info = volume:cinder:publicURL"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:60(td) ./doc/common/tables/nova-conf-changes.xml:53(td)
msgid "(StrOpt) Info to match when looking for cinder in the service catalog. Format is: separated values of the form: &lt;service_type&gt;:&lt;service_name&gt;:&lt;endpoint_type&gt;"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:63(td)
msgid "cross_az_attach = True"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:64(td) ./doc/common/tables/nova-conf-changes.xml:57(td)
msgid "(BoolOpt) Allow attach between instance and volume in different availability zones."
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:67(td)
msgid "endpoint_template = None"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:68(td) ./doc/common/tables/nova-conf-changes.xml:61(td) ./doc/common/tables/glance-cinder.xml:34(td)
msgid "(StrOpt) Override service catalog lookup with template for cinder endpoint e.g. http://localhost:8776/v1/%(project_id)s"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:71(td)
msgid "http_retries = 3"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:72(td) ./doc/common/tables/nova-conf-changes.xml:65(td) ./doc/common/tables/glance-cinder.xml:38(td)
msgid "(IntOpt) Number of cinderclient retries on failed http calls"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:75(td)
msgid "http_timeout = None"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:76(td) ./doc/common/tables/nova-conf-changes.xml:69(td)
msgid "(IntOpt) HTTP inactivity timeout (in seconds)"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:80(td) ./doc/common/tables/nova-conf-changes.xml:73(td) ./doc/common/tables/cinder-compute.xml:46(td) ./doc/common/tables/glance-common.xml:105(td)
msgid "(StrOpt) Region name of this node"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:83(th) ./doc/common/tables/neutron-hyperv_agent.xml:52(th) ./doc/common/tables/nova-hyperv.xml:18(th) ./doc/common/tables/nova-configdrive.xml:41(th)
msgid "[hyperv]"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:86(td)
msgid "force_volumeutils_v1 = False"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:87(td)
msgid "(BoolOpt) Force V1 volume utility class"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:90(td)
msgid "volume_attach_retry_count = 10"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:91(td)
msgid "(IntOpt) The number of times to retry to attach a volume"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:94(td)
msgid "volume_attach_retry_interval = 5"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:95(td)
msgid "(IntOpt) Interval between volume attachment attempts, in seconds"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:101(td) ./doc/common/tables/cinder-storage_glusterfs.xml:21(td)
msgid "glusterfs_mount_point_base = $state_path/mnt"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:102(td)
msgid "(StrOpt) Directory where the glusterfs volume is mounted on the compute node"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:105(td) ./doc/common/tables/cinder-storage_nfs.xml:21(td)
msgid "nfs_mount_options = None"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:106(td)
msgid "(StrOpt) Mount options passedf to the NFS client. See section of the nfs man page for details"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:109(td) ./doc/common/tables/cinder-storage_nfs.xml:25(td)
msgid "nfs_mount_point_base = $state_path/mnt"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:110(td)
msgid "(StrOpt) Directory where the NFS volume is mounted on the compute node"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:113(td)
msgid "num_aoe_discover_tries = 3"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:114(td)
msgid "(IntOpt) Number of times to rediscover AoE target to find volume"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:117(td)
msgid "num_iscsi_scan_tries = 5"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:118(td)
msgid "(IntOpt) Number of times to rescan iSCSI target to find volume"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:121(td)
msgid "num_iser_scan_tries = 5"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:122(td)
msgid "(IntOpt) Number of times to rescan iSER target to find volume"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:125(td)
msgid "qemu_allowed_storage_drivers ="
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:126(td)
msgid "(ListOpt) Protocols listed here will be accessed directly from QEMU. Currently supported protocols: [gluster]"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:130(td)
msgid "(StrOpt) The libvirt UUID of the secret for the rbd_uservolumes"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:134(td)
msgid "(StrOpt) The RADOS client name for accessing rbd volumes"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:137(td) ./doc/common/tables/cinder-scality.xml:21(td)
msgid "scality_sofs_config = None"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:138(td) ./doc/common/tables/cinder-scality.xml:22(td)
msgid "(StrOpt) Path or URL to Scality SOFS configuration file"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:141(td) ./doc/common/tables/cinder-scality.xml:25(td)
msgid "scality_sofs_mount_point = $state_path/scality"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:142(td) ./doc/common/tables/cinder-scality.xml:26(td)
msgid "(StrOpt) Base dir where Scality SOFS shall be mounted"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:148(td)
msgid "block_device_creation_timeout = 10"
msgstr ""
#: ./doc/common/tables/nova-volumes.xml:149(td)
msgid "(IntOpt) Time to wait for a block device to be created"
msgstr ""
#: ./doc/common/tables/trove-db_mysql.xml:7(caption)
msgid "Description of MySQL database configuration options"
msgstr ""
#: ./doc/common/tables/trove-db_mysql.xml:18(th)
msgid "[mysql]"
msgstr ""
#: ./doc/common/tables/trove-db_mysql.xml:73(td)
msgid "usage_timeout = 400"
msgstr ""
#: ./doc/common/tables/neutron-dvr.xml:7(caption)
msgid "Description of DVR configuration options"
msgstr ""
#: ./doc/common/tables/neutron-dvr.xml:21(td)
msgid "dvr_base_mac = fa:16:3f:00:00:00"
msgstr ""
#: ./doc/common/tables/neutron-dvr.xml:25(td)
msgid "router_distributed = False"
msgstr ""
#: ./doc/common/tables/heat-amqp.xml:34(td)
msgid "(StrOpt) Default notification level for outgoing notifications."
msgstr ""
#: ./doc/common/tables/heat-amqp.xml:38(td) ./doc/common/tables/glance-api.xml:30(td)
msgid "(StrOpt) Default publisher_id for outgoing notifications."
msgstr ""
#: ./doc/common/tables/heat-amqp.xml:45(td)
msgid "list_notifier_drivers = None"
msgstr ""
#: ./doc/common/tables/heat-amqp.xml:46(td)
msgid "(MultiStrOpt) List of drivers to send notifications (DEPRECATED)."
msgstr ""
#: ./doc/common/tables/neutron-linuxbridge_agent.xml:7(caption)
msgid "Description of Linux Bridge agent configuration options"
msgstr ""
#: ./doc/common/tables/neutron-linuxbridge_agent.xml:18(th)
msgid "[LINUX_BRIDGE]"
msgstr ""
#: ./doc/common/tables/neutron-linuxbridge_agent.xml:21(td) ./doc/common/tables/neutron-ml2_ofa.xml:44(td) ./doc/common/tables/neutron-mlnx.xml:29(td)
msgid "physical_interface_mappings ="
msgstr ""
#: ./doc/common/tables/neutron-linuxbridge_agent.xml:25(th)
msgid "[VLANS]"
msgstr ""
#: ./doc/common/tables/neutron-linuxbridge_agent.xml:29(td) ./doc/common/tables/neutron-hyperv_agent.xml:45(td) ./doc/common/tables/neutron-mlnx.xml:41(td)
msgid "(ListOpt) List of &lt;physical_network&gt;:&lt;vlan_min&gt;:&lt;vlan_max&gt; or &lt;physical_network&gt;"
msgstr ""
#: ./doc/common/tables/neutron-linuxbridge_agent.xml:33(td) ./doc/common/tables/neutron-mlnx.xml:53(td)
msgid "(StrOpt) Network type for tenant networks (local, vlan, or none)"
msgstr ""
#: ./doc/common/tables/neutron-linuxbridge_agent.xml:36(th)
msgid "[VXLAN]"
msgstr ""
#: ./doc/common/tables/neutron-linuxbridge_agent.xml:39(td)
msgid "enable_vxlan = False"
msgstr ""
#: ./doc/common/tables/neutron-linuxbridge_agent.xml:40(td)
msgid "(BoolOpt) Enable VXLAN on the agent. Can be enabled when agent is managed by ml2 plugin using linuxbridge mechanism driver"
msgstr ""
#: ./doc/common/tables/neutron-linuxbridge_agent.xml:44(td)
msgid "(BoolOpt) Extension to use alongside ml2 plugin's l2population mechanism driver. It enables the plugin to populate VXLAN forwarding table."
msgstr ""
#: ./doc/common/tables/neutron-linuxbridge_agent.xml:48(td)
msgid "(StrOpt) Local IP address of the VXLAN endpoints."
msgstr ""
#: ./doc/common/tables/neutron-linuxbridge_agent.xml:51(td)
msgid "tos = None"
msgstr ""
#: ./doc/common/tables/neutron-linuxbridge_agent.xml:52(td)
msgid "(IntOpt) TOS for vxlan interface protocol packets."
msgstr ""
#: ./doc/common/tables/neutron-linuxbridge_agent.xml:55(td)
msgid "ttl = None"
msgstr ""
#: ./doc/common/tables/neutron-linuxbridge_agent.xml:56(td)
msgid "(IntOpt) TTL for vxlan interface protocol packets."
msgstr ""
#: ./doc/common/tables/neutron-linuxbridge_agent.xml:59(td)
msgid "vxlan_group = 224.0.0.1"
msgstr ""
#: ./doc/common/tables/neutron-linuxbridge_agent.xml:60(td)
msgid "(StrOpt) Multicast group for vxlan interface."
msgstr ""
#: ./doc/common/tables/cinder-logging.xml:25(td) ./doc/common/tables/nova-logging.xml:25(td)
msgid "default_log_levels = amqp=WARN, amqplib=WARN, boto=WARN, qpid=WARN, sqlalchemy=WARN, suds=INFO, oslo.messaging=INFO, iso8601=WARN, requests.packages.urllib3.connectionpool=WARN, urllib3.connectionpool=WARN, websocket=WARN, keystonemiddleware=WARN, routes.middleware=WARN"
msgstr ""
#: ./doc/common/tables/cinder-logging.xml:33(td) ./doc/common/tables/nova-logging.xml:33(td)
msgid "fatal_exception_format_errors = False"
msgstr ""
#: ./doc/common/tables/cinder-logging.xml:34(td)
msgid "(BoolOpt) Make exception message format errors fatal."
msgstr ""
#: ./doc/common/tables/swift-container-server-DEFAULT.xml:20(td)
msgid "allowed_sync_hosts = 127.0.0.1"
msgstr ""
#: ./doc/common/tables/swift-container-server-DEFAULT.xml:32(td)
msgid "bind_port = 6001"
msgstr ""
#: ./doc/common/tables/swift-container-server-DEFAULT.xml:40(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:36(td)
msgid "db_preallocation = off"
msgstr ""
#: ./doc/common/tables/swift-container-server-DEFAULT.xml:41(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:37(td)
msgid "If you don't mind the extra disk space usage in overhead, you can turn this on to preallocate disk space with SQLite databases to decrease fragmentation. underlying filesystem does not support it. to setup custom log handlers. bytes you'd like fallocate to reserve, whether there is space for the given file size or not. This is useful for systems that behave badly when they completely run out of space; you can make the services pretend they're out of space early. server. For most cases, this should be `egg:swift#account`. replication passes account can be reclaimed"
msgstr ""
#: ./doc/common/tables/swift-container-server-DEFAULT.xml:44(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:44(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:40(td)
msgid "devices = /srv/node"
msgstr ""
#: ./doc/common/tables/swift-container-server-DEFAULT.xml:45(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:45(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:41(td)
msgid "Parent directory of where devices are mounted"
msgstr ""
#: ./doc/common/tables/swift-container-server-DEFAULT.xml:48(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:48(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:44(td)
msgid "disable_fallocate = false"
msgstr ""
#: ./doc/common/tables/swift-container-server-DEFAULT.xml:49(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:49(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:45(td)
msgid "Disable \"fast fail\" fallocate checks if the underlying filesystem does not support it."
msgstr ""
#: ./doc/common/tables/swift-container-server-DEFAULT.xml:56(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:68(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:52(td)
msgid "fallocate_reserve = 0"
msgstr ""
#: ./doc/common/tables/swift-container-server-DEFAULT.xml:57(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:69(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:53(td)
msgid "You can set fallocate_reserve to the number of bytes you'd like fallocate to reserve, whether there is space for the given file size or not. This is useful for systems that behave badly when they completely run out of space; you can make the services pretend they're out of space early. server. For most cases, this should be `egg:swift#object`."
msgstr ""
#: ./doc/common/tables/swift-container-server-DEFAULT.xml:126(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:138(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:122(td)
msgid "mount_check = true"
msgstr ""
#: ./doc/common/tables/swift-container-server-DEFAULT.xml:127(td) ./doc/common/tables/swift-object-server-DEFAULT.xml:139(td) ./doc/common/tables/swift-account-server-DEFAULT.xml:123(td)
msgid "Whether or not check if the devices are mounted to prevent accidentally writing to the root device"
msgstr ""
#: ./doc/common/tables/glance-rabbitmq.xml:29(td) ./doc/common/tables/heat-rabbitmq.xml:21(td) ./doc/common/tables/keystone-rabbitmq.xml:25(td) ./doc/common/tables/nova-kombu.xml:21(td) ./doc/common/tables/sahara-rpc.xml:21(td) ./doc/common/tables/cinder-rpc.xml:41(td) ./doc/common/tables/nova-rpc_all.xml:33(td) ./doc/common/tables/neutron-rabbitmq.xml:21(td) ./doc/common/tables/ceilometer-rabbitmq.xml:25(td)
msgid "kombu_reconnect_delay = 1.0"
msgstr ""
#: ./doc/common/tables/glance-rabbitmq.xml:34(td) ./doc/common/tables/heat-rabbitmq.xml:26(td) ./doc/common/tables/keystone-rabbitmq.xml:30(td) ./doc/common/tables/nova-kombu.xml:26(td) ./doc/common/tables/sahara-rpc.xml:26(td) ./doc/common/tables/cinder-rpc.xml:46(td) ./doc/common/tables/nova-rpc_all.xml:38(td) ./doc/common/tables/neutron-rabbitmq.xml:26(td) ./doc/common/tables/ceilometer-rabbitmq.xml:30(td)
msgid "(StrOpt) SSL certification authority file (valid only if SSL enabled)."
msgstr ""
#: ./doc/common/tables/glance-rabbitmq.xml:38(td) ./doc/common/tables/heat-rabbitmq.xml:30(td) ./doc/common/tables/keystone-rabbitmq.xml:34(td) ./doc/common/tables/nova-kombu.xml:30(td) ./doc/common/tables/sahara-rpc.xml:30(td) ./doc/common/tables/cinder-rpc.xml:50(td) ./doc/common/tables/nova-rpc_all.xml:42(td) ./doc/common/tables/neutron-rabbitmq.xml:30(td) ./doc/common/tables/ceilometer-rabbitmq.xml:34(td)
msgid "(StrOpt) SSL cert file (valid only if SSL enabled)."
msgstr ""
#: ./doc/common/tables/glance-rabbitmq.xml:42(td) ./doc/common/tables/heat-rabbitmq.xml:34(td) ./doc/common/tables/keystone-rabbitmq.xml:38(td) ./doc/common/tables/nova-kombu.xml:34(td) ./doc/common/tables/sahara-rpc.xml:34(td) ./doc/common/tables/cinder-rpc.xml:54(td) ./doc/common/tables/nova-rpc_all.xml:46(td) ./doc/common/tables/neutron-rabbitmq.xml:34(td) ./doc/common/tables/ceilometer-rabbitmq.xml:38(td)
msgid "(StrOpt) SSL key file (valid only if SSL enabled)."
msgstr ""
#: ./doc/common/tables/glance-rabbitmq.xml:46(td) ./doc/common/tables/heat-rabbitmq.xml:38(td) ./doc/common/tables/keystone-rabbitmq.xml:42(td) ./doc/common/tables/nova-kombu.xml:38(td) ./doc/common/tables/sahara-rpc.xml:38(td) ./doc/common/tables/cinder-rpc.xml:58(td) ./doc/common/tables/nova-rpc_all.xml:50(td) ./doc/common/tables/neutron-rabbitmq.xml:38(td) ./doc/common/tables/ceilometer-rabbitmq.xml:42(td)
msgid "(StrOpt) SSL version to use (valid only if SSL enabled). valid values are TLSv1, SSLv23 and SSLv3. SSLv2 may be available on some distributions."
msgstr ""
#: ./doc/common/tables/neutron-l3_agent.xml:7(caption)
msgid "Description of L3 agent configuration options"
msgstr ""
#: ./doc/common/tables/neutron-l3_agent.xml:21(td)
msgid "agent_mode = legacy"
msgstr ""
#: ./doc/common/tables/neutron-l3_agent.xml:25(td)
msgid "allow_automatic_l3agent_failover = False"
msgstr ""
#: ./doc/common/tables/neutron-l3_agent.xml:29(td)
msgid "enable_metadata_proxy = True"
msgstr ""
#: ./doc/common/tables/neutron-l3_agent.xml:30(td)
msgid "(BoolOpt) Allow running metadata proxy."
msgstr ""
#: ./doc/common/tables/neutron-l3_agent.xml:33(td)
msgid "external_network_bridge = br-ex"
msgstr ""
#: ./doc/common/tables/neutron-l3_agent.xml:34(td)
msgid "(StrOpt) Name of bridge used for external network traffic."
msgstr ""
#: ./doc/common/tables/neutron-l3_agent.xml:37(td)
msgid "gateway_external_network_id ="
msgstr ""
#: ./doc/common/tables/neutron-l3_agent.xml:38(td)
msgid "(StrOpt) UUID of external network for routers implemented by the agents."
msgstr ""
#: ./doc/common/tables/neutron-l3_agent.xml:41(td)
msgid "handle_internal_only_routers = True"
msgstr ""
#: ./doc/common/tables/neutron-l3_agent.xml:42(td)
msgid "(BoolOpt) Agent should implement routers with no gateway"
msgstr ""
#: ./doc/common/tables/neutron-l3_agent.xml:45(td)
msgid "router_id ="
msgstr ""
#: ./doc/common/tables/neutron-l3_agent.xml:46(td)
msgid "(StrOpt) If namespaces is disabled, the l3 agent can only configure a router that has the matching router ID."
msgstr ""
#: ./doc/common/tables/neutron-l3_agent.xml:49(td)
msgid "send_arp_for_ha = 3"
msgstr ""
#: ./doc/common/tables/neutron-l3_agent.xml:50(td)
msgid "(IntOpt) Send this many gratuitous ARPs for HA setup, if less than or equal to 0, the feature is disabled"
msgstr ""
#: ./doc/common/tables/swift-container-server-pipeline-main.xml:20(td)
msgid "pipeline = healthcheck recon container-server"
msgstr ""
#: ./doc/common/tables/glance-policy.xml:22(td)
msgid "(StrOpt) The default policy to use."
msgstr ""
#: ./doc/common/tables/glance-policy.xml:26(td)
msgid "(StrOpt) The location of the policy file."
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:7(caption)
msgid "Description of neutron configuration options"
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:21(td)
msgid "neutron_default_tenant_id = default"
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:22(td)
msgid "(StrOpt) Default tenant id when creating neutron networks"
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:25(th)
msgid "[neutron]"
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:28(td)
msgid "admin_auth_url = http://localhost:5000/v2.0"
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:29(td) ./doc/common/tables/nova-conf-changes.xml:197(td)
msgid "(StrOpt) Authorization URL for connecting to neutron in admin context"
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:33(td) ./doc/common/tables/nova-conf-changes.xml:201(td)
msgid "(StrOpt) Password for connecting to neutron in admin context"
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:36(td)
msgid "admin_tenant_id = None"
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:37(td) ./doc/common/tables/nova-conf-changes.xml:205(td)
msgid "(StrOpt) Tenant id for connecting to neutron in admin context"
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:41(td) ./doc/common/tables/nova-conf-changes.xml:209(td)
msgid "(StrOpt) Tenant name for connecting to neutron in admin context. This option will be ignored if neutron_admin_tenant_id is set. Note that with Keystone V3 tenant names are only unique within a domain."
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:44(td)
msgid "admin_user_id = None"
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:45(td) ./doc/common/tables/nova-conf-changes.xml:213(td)
msgid "(StrOpt) User id for connecting to neutron in admin context"
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:49(td) ./doc/common/tables/nova-conf-changes.xml:217(td)
msgid "(StrOpt) Username for connecting to neutron in admin context"
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:52(td)
msgid "allow_duplicate_networks = False"
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:53(td) ./doc/common/tables/nova-conf-changes.xml:221(td)
msgid "(BoolOpt) Allow an instance to have multiple vNICs attached to the same Neutron network."
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:60(td) ./doc/common/tables/nova-authentication.xml:21(td) ./doc/common/tables/neutron-common.xml:53(td) ./doc/common/tables/neutron-common.xml:223(td)
msgid "auth_strategy = keystone"
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:61(td) ./doc/common/tables/nova-conf-changes.xml:229(td)
msgid "(StrOpt) Authorization strategy for connecting to neutron in admin context"
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:65(td) ./doc/common/tables/nova-conf-changes.xml:233(td)
msgid "(StrOpt) Location of CA certificates file to use for neutron client requests."
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:68(td)
msgid "extension_sync_interval = 600"
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:69(td) ./doc/common/tables/nova-conf-changes.xml:237(td)
msgid "(IntOpt) Number of seconds before querying neutron for extensions"
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:72(td) ./doc/common/tables/neutron-metadata.xml:33(td)
msgid "metadata_proxy_shared_secret ="
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:73(td) ./doc/common/tables/nova-conf-changes.xml:241(td)
msgid "(StrOpt) Shared secret to validate proxies Neutron metadata requests"
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:76(td)
msgid "ovs_bridge = br-int"
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:80(td)
msgid "region_name = None"
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:81(td) ./doc/common/tables/nova-conf-changes.xml:249(td)
msgid "(StrOpt) Region name for connecting to neutron in admin context"
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:84(td)
msgid "service_metadata_proxy = False"
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:85(td) ./doc/common/tables/nova-conf-changes.xml:253(td)
msgid "(BoolOpt) Set flag to indicate Neutron will proxy metadata requests and resolve instance ids."
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:88(td)
msgid "url = http://127.0.0.1:9696"
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:89(td) ./doc/common/tables/nova-conf-changes.xml:257(td)
msgid "(StrOpt) URL for connecting to neutron"
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:92(td)
msgid "url_timeout = 30"
msgstr ""
#: ./doc/common/tables/nova-neutron.xml:93(td) ./doc/common/tables/nova-conf-changes.xml:261(td)
msgid "(IntOpt) Timeout value for connecting to neutron in seconds"
msgstr ""
#: ./doc/common/tables/cinder-backups.xml:7(caption)
msgid "Description of backups configuration options"
msgstr ""
#: ./doc/common/tables/cinder-backups.xml:21(td)
msgid "backup_api_class = cinder.backup.api.API"
msgstr ""
#: ./doc/common/tables/cinder-backups.xml:22(td)
msgid "(StrOpt) The full class name of the volume backup API class"
msgstr ""
#: ./doc/common/tables/cinder-backups.xml:25(td)
msgid "backup_compression_algorithm = zlib"
msgstr ""
#: ./doc/common/tables/cinder-backups.xml:26(td)
msgid "(StrOpt) Compression algorithm (None to disable)"
msgstr ""
#: ./doc/common/tables/cinder-backups.xml:29(td)
msgid "backup_driver = cinder.backup.drivers.swift"
msgstr ""
#: ./doc/common/tables/cinder-backups.xml:30(td)
msgid "(StrOpt) Driver to use for backups."
msgstr ""
#: ./doc/common/tables/cinder-backups.xml:33(td)
msgid "backup_manager = cinder.backup.manager.BackupManager"
msgstr ""
#: ./doc/common/tables/cinder-backups.xml:34(td)
msgid "(StrOpt) Full class name for the Manager for volume backup"
msgstr ""
#: ./doc/common/tables/cinder-backups.xml:37(td)
msgid "backup_metadata_version = 1"
msgstr ""
#: ./doc/common/tables/cinder-backups.xml:38(td)
msgid "(IntOpt) Backup metadata version to be used when backing up volume metadata. If this number is bumped, make sure the service doing the restore supports the new version."
msgstr ""
#: ./doc/common/tables/cinder-backups.xml:41(td)
msgid "backup_name_template = backup-%s"
msgstr ""
#: ./doc/common/tables/cinder-backups.xml:42(td)
msgid "(StrOpt) Template string to be used to generate backup names"
msgstr ""
#: ./doc/common/tables/cinder-backups.xml:45(td)
msgid "backup_topic = cinder-backup"
msgstr ""
#: ./doc/common/tables/cinder-backups.xml:46(td)
msgid "(StrOpt) The topic that volume backup nodes listen on"
msgstr ""
#: ./doc/common/tables/cinder-backups.xml:49(td) ./doc/common/tables/nova-api.xml:89(td)
msgid "snapshot_name_template = snapshot-%s"
msgstr ""
#: ./doc/common/tables/cinder-backups.xml:50(td) ./doc/common/tables/nova-api.xml:90(td)
msgid "(StrOpt) Template string to be used to generate snapshot names"
msgstr ""
#: ./doc/common/tables/cinder-backups.xml:53(td)
msgid "snapshot_same_host = True"
msgstr ""
#: ./doc/common/tables/cinder-backups.xml:54(td)
msgid "(BoolOpt) Create volume from snapshot at the host where snapshot resides"
msgstr ""
#: ./doc/common/tables/cinder-keymgr.xml:21(td)
msgid "api_class = cinder.keymgr.conf_key_mgr.ConfKeyManager"
msgstr ""
#: ./doc/common/tables/cinder-keymgr.xml:25(td)
msgid "encryption_api_url = http://localhost:9311/v1"
msgstr ""
#: ./doc/common/tables/cinder-keymgr.xml:26(td) ./doc/common/tables/cinder-conf-changes.xml:461(td)
msgid "(StrOpt) Url for encryption service."
msgstr ""
#: ./doc/common/tables/cinder-keymgr.xml:29(td)
msgid "encryption_auth_url = http://localhost:5000/v2.0"
msgstr ""
#: ./doc/common/tables/cinder-keymgr.xml:30(td) ./doc/common/tables/cinder-conf-changes.xml:465(td)
msgid "(StrOpt) Authentication url for encryption service."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:18(th)
msgid "[ldap]"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:21(td)
msgid "alias_dereferencing = default"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:22(td)
msgid "(StrOpt) The LDAP dereferencing option for queries. This can be either \"never\", \"searching\", \"always\", \"finding\" or \"default\". The \"default\" option falls back to using default dereferencing configured by your ldap.conf."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:25(td)
msgid "allow_subtree_delete = False"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:26(td)
msgid "(BoolOpt) Delete subtrees using the subtree delete control. Only enable this option if your LDAP server supports subtree deletion."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:29(td)
msgid "auth_pool_connection_lifetime = 60"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:33(td)
msgid "auth_pool_size = 100"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:37(td)
msgid "chase_referrals = None"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:38(td)
msgid "(BoolOpt) Override the system's default referral chasing behavior for queries."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:41(td)
msgid "debug_level = None"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:45(td)
msgid "dumb_member = cn=dumb,dc=nonexistent"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:46(td)
msgid "(StrOpt) DN of the \"dummy member\" to use when \"use_dumb_member\" is enabled."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:49(td)
msgid "group_additional_attribute_mapping ="
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:50(td)
msgid "(ListOpt) Additional attribute mappings for groups. Attribute mapping format is &lt;ldap_attr&gt;:&lt;user_attr&gt;, where ldap_attr is the attribute in the LDAP entry and user_attr is the Identity API attribute."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:53(td)
msgid "group_allow_create = True"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:54(td)
msgid "(BoolOpt) Allow group creation in LDAP backend."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:57(td)
msgid "group_allow_delete = True"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:58(td)
msgid "(BoolOpt) Allow group deletion in LDAP backend."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:61(td)
msgid "group_allow_update = True"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:62(td)
msgid "(BoolOpt) Allow group update in LDAP backend."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:65(td)
msgid "group_attribute_ignore ="
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:66(td)
msgid "(ListOpt) List of attributes stripped off the group on update."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:69(td)
msgid "group_desc_attribute = description"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:70(td)
msgid "(StrOpt) LDAP attribute mapped to group description."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:73(td)
msgid "group_filter = None"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:74(td)
msgid "(StrOpt) LDAP search filter for groups."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:77(td)
msgid "group_id_attribute = cn"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:78(td)
msgid "(StrOpt) LDAP attribute mapped to group id."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:81(td)
msgid "group_member_attribute = member"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:82(td)
msgid "(StrOpt) LDAP attribute mapped to show group membership."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:85(td)
msgid "group_name_attribute = ou"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:86(td)
msgid "(StrOpt) LDAP attribute mapped to group name."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:89(td)
msgid "group_objectclass = groupOfNames"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:90(td)
msgid "(StrOpt) LDAP objectclass for groups."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:93(td)
msgid "group_tree_dn = None"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:94(td)
msgid "(StrOpt) Search base for groups."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:97(td)
msgid "page_size = 0"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:98(td)
msgid "(IntOpt) Maximum results per page; a value of zero (\"0\") disables paging."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:102(td)
msgid "(StrOpt) Password for the BindDN to query the LDAP server."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:105(td)
msgid "pool_connection_lifetime = 600"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:109(td)
msgid "pool_connection_timeout = -1"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:113(td)
msgid "pool_retry_delay = 0.1"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:117(td)
msgid "pool_retry_max = 3"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:121(td)
msgid "pool_size = 10"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:125(td)
msgid "project_additional_attribute_mapping ="
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:129(td)
msgid "project_allow_create = True"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:133(td)
msgid "project_allow_delete = True"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:137(td)
msgid "project_allow_update = True"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:141(td)
msgid "project_attribute_ignore ="
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:145(td)
msgid "project_desc_attribute = description"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:149(td)
msgid "project_domain_id_attribute = businessCategory"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:153(td)
msgid "project_enabled_attribute = enabled"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:157(td)
msgid "project_enabled_emulation = False"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:161(td)
msgid "project_enabled_emulation_dn = None"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:165(td)
msgid "project_filter = None"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:169(td)
msgid "project_id_attribute = cn"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:173(td)
msgid "project_member_attribute = member"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:177(td)
msgid "project_name_attribute = ou"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:181(td)
msgid "project_objectclass = groupOfNames"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:185(td)
msgid "project_tree_dn = None"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:189(td)
msgid "query_scope = one"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:190(td)
msgid "(StrOpt) The LDAP scope for queries, this can be either \"one\" (onelevel/singleLevel) or \"sub\" (subtree/wholeSubtree)."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:193(td)
msgid "role_additional_attribute_mapping ="
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:194(td)
msgid "(ListOpt) Additional attribute mappings for roles. Attribute mapping format is &lt;ldap_attr&gt;:&lt;user_attr&gt;, where ldap_attr is the attribute in the LDAP entry and user_attr is the Identity API attribute."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:197(td)
msgid "role_allow_create = True"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:198(td)
msgid "(BoolOpt) Allow role creation in LDAP backend."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:201(td)
msgid "role_allow_delete = True"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:202(td)
msgid "(BoolOpt) Allow role deletion in LDAP backend."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:205(td)
msgid "role_allow_update = True"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:206(td)
msgid "(BoolOpt) Allow role update in LDAP backend."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:209(td)
msgid "role_attribute_ignore ="
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:210(td)
msgid "(ListOpt) List of attributes stripped off the role on update."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:213(td)
msgid "role_filter = None"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:214(td)
msgid "(StrOpt) LDAP search filter for roles."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:217(td)
msgid "role_id_attribute = cn"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:218(td)
msgid "(StrOpt) LDAP attribute mapped to role id."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:221(td)
msgid "role_member_attribute = roleOccupant"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:222(td)
msgid "(StrOpt) LDAP attribute mapped to role membership."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:225(td)
msgid "role_name_attribute = ou"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:226(td)
msgid "(StrOpt) LDAP attribute mapped to role name."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:229(td)
msgid "role_objectclass = organizationalRole"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:230(td)
msgid "(StrOpt) LDAP objectclass for roles."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:233(td)
msgid "role_tree_dn = None"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:234(td)
msgid "(StrOpt) Search base for roles."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:237(td)
msgid "suffix = cn=example,cn=com"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:238(td)
msgid "(StrOpt) LDAP server suffix"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:241(td)
msgid "tls_cacertdir = None"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:242(td)
msgid "(StrOpt) CA certificate directory path for communicating with LDAP servers."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:245(td)
msgid "tls_cacertfile = None"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:246(td)
msgid "(StrOpt) CA certificate file path for communicating with LDAP servers."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:249(td)
msgid "tls_req_cert = demand"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:250(td)
msgid "(StrOpt) Valid options for tls_req_cert are demand, never, and allow."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:253(td)
msgid "url = ldap://localhost"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:254(td)
msgid "(StrOpt) URL for connecting to the LDAP server."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:257(td)
msgid "use_auth_pool = False"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:261(td)
msgid "use_dumb_member = False"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:262(td)
msgid "(BoolOpt) If true, will add a dummy member to groups. This is required if the objectclass for groups requires the \"member\" attribute."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:265(td)
msgid "use_pool = False"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:269(td)
msgid "use_tls = False"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:270(td)
msgid "(BoolOpt) Enable TLS for communicating with LDAP servers."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:273(td)
msgid "user = None"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:274(td)
msgid "(StrOpt) User BindDN to query the LDAP server."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:277(td)
msgid "user_additional_attribute_mapping ="
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:278(td)
msgid "(ListOpt) List of additional LDAP attributes used for mapping additional attribute mappings for users. Attribute mapping format is &lt;ldap_attr&gt;:&lt;user_attr&gt;, where ldap_attr is the attribute in the LDAP entry and user_attr is the Identity API attribute."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:281(td)
msgid "user_allow_create = True"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:282(td)
msgid "(BoolOpt) Allow user creation in LDAP backend."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:285(td)
msgid "user_allow_delete = True"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:286(td)
msgid "(BoolOpt) Allow user deletion in LDAP backend."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:289(td)
msgid "user_allow_update = True"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:290(td)
msgid "(BoolOpt) Allow user updates in LDAP backend."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:293(td)
msgid "user_attribute_ignore = default_project_id, tenants"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:294(td)
msgid "(ListOpt) List of attributes stripped off the user on update."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:297(td)
msgid "user_default_project_id_attribute = None"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:298(td)
msgid "(StrOpt) LDAP attribute mapped to default_project_id for users."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:301(td)
msgid "user_enabled_attribute = enabled"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:302(td)
msgid "(StrOpt) LDAP attribute mapped to user enabled flag."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:305(td)
msgid "user_enabled_default = True"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:306(td)
msgid "(StrOpt) Default value to enable users. This should match an appropriate int value if the LDAP server uses non-boolean (bitmask) values to indicate if a user is enabled or disabled. If this is not set to \"True\" the typical value is \"512\". This is typically used when \"user_enabled_attribute = userAccountControl\"."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:309(td)
msgid "user_enabled_emulation = False"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:310(td)
msgid "(BoolOpt) If true, Keystone uses an alternative method to determine if a user is enabled or not by checking if they are a member of the \"user_enabled_emulation_dn\" group."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:313(td)
msgid "user_enabled_emulation_dn = None"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:314(td)
msgid "(StrOpt) DN of the group entry to hold enabled users when using enabled emulation."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:317(td)
msgid "user_enabled_invert = False"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:321(td)
msgid "user_enabled_mask = 0"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:322(td)
msgid "(IntOpt) Bitmask integer to indicate the bit that the enabled value is stored in if the LDAP server represents \"enabled\" as a bit on an integer rather than a boolean. A value of \"0\" indicates the mask is not used. If this is not set to \"0\" the typical value is \"2\". This is typically used when \"user_enabled_attribute = userAccountControl\"."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:325(td)
msgid "user_filter = None"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:326(td)
msgid "(StrOpt) LDAP search filter for users."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:329(td)
msgid "user_id_attribute = cn"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:330(td)
msgid "(StrOpt) LDAP attribute mapped to user id."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:333(td)
msgid "user_mail_attribute = mail"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:334(td)
msgid "(StrOpt) LDAP attribute mapped to user email."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:337(td)
msgid "user_name_attribute = sn"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:338(td)
msgid "(StrOpt) LDAP attribute mapped to user name."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:341(td)
msgid "user_objectclass = inetOrgPerson"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:342(td)
msgid "(StrOpt) LDAP objectclass for users."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:345(td)
msgid "user_pass_attribute = userPassword"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:346(td)
msgid "(StrOpt) LDAP attribute mapped to password."
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:349(td)
msgid "user_tree_dn = None"
msgstr ""
#: ./doc/common/tables/keystone-ldap.xml:350(td)
msgid "(StrOpt) Search base for users."
msgstr ""
#: ./doc/common/tables/trove-db_postgresql.xml:7(caption)
msgid "Description of PostgreSQL database configuration options"
msgstr ""
#: ./doc/common/tables/trove-db_postgresql.xml:18(th)
msgid "[postgresql]"
msgstr ""
#: ./doc/common/tables/trove-db_postgresql.xml:21(td)
msgid "backup_namespace = trove.guestagent.strategies.backup.postgresql_impl"
msgstr ""
#: ./doc/common/tables/trove-db_postgresql.xml:25(td)
msgid "backup_strategy = PgDump"
msgstr ""
#: ./doc/common/tables/trove-db_postgresql.xml:33(td)
msgid "ignore_dbs = postgres"
msgstr ""
#: ./doc/common/tables/trove-db_postgresql.xml:34(td) ./doc/common/tables/trove-db_postgresql.xml:38(td) ./doc/common/tables/trove-api.xml:22(td) ./doc/common/tables/trove-guestagent.xml:42(td) ./doc/common/tables/trove-guestagent.xml:46(td) ./doc/common/tables/trove-compute.xml:34(td)
msgid "(ListOpt) No help text available for this option."
msgstr ""
#: ./doc/common/tables/trove-db_postgresql.xml:37(td)
msgid "ignore_users = os_admin, postgres, root"
msgstr ""
#: ./doc/common/tables/trove-db_postgresql.xml:41(td)
msgid "mount_point = /var/lib/postgresql"
msgstr ""
#: ./doc/common/tables/trove-db_postgresql.xml:45(td)
msgid "restore_namespace = trove.guestagent.strategies.restore.postgresql_impl"
msgstr ""
#: ./doc/common/tables/trove-db_postgresql.xml:53(td)
msgid "tcp_ports = 5432"
msgstr ""
#: ./doc/common/tables/trove-db_postgresql.xml:58(td) ./doc/common/tables/trove-conf-changes.xml:293(td) ./doc/common/tables/trove-db_mongodb.xml:66(td)
msgid "(ListOpt) List of UPD ports and/or port ranges to open in the security group (only applicable if trove_security_groups_support is True)."
msgstr ""
#: ./doc/common/tables/glance-vmware.xml:21(td)
msgid "vmware_api_insecure = False"
msgstr ""
#: ./doc/common/tables/glance-vmware.xml:22(td)
msgid "(BoolOpt) Allow to perform insecure SSL requests to ESX/VC."
msgstr ""
#: ./doc/common/tables/glance-vmware.xml:25(td) ./doc/common/tables/cinder-vmware.xml:21(td)
msgid "vmware_api_retry_count = 10"
msgstr ""
#: ./doc/common/tables/glance-vmware.xml:26(td) ./doc/common/tables/cinder-vmware.xml:22(td)
msgid "(IntOpt) Number of times VMware ESX/VC server API must be retried upon connection related issues."
msgstr ""
#: ./doc/common/tables/glance-vmware.xml:29(td)
msgid "vmware_datacenter_path = ha-datacenter"
msgstr ""
#: ./doc/common/tables/glance-vmware.xml:30(td)
msgid "(StrOpt) Inventory path to a datacenter. If the vmware_server_host specified is an ESX/ESXi, the vmware_datacenter_path is optional. If specified, it should be \"ha-datacenter\"."
msgstr ""
#: ./doc/common/tables/glance-vmware.xml:33(td)
msgid "vmware_datastore_name = None"
msgstr ""
#: ./doc/common/tables/glance-vmware.xml:34(td)
msgid "(StrOpt) Datastore associated with the datacenter."
msgstr ""
#: ./doc/common/tables/glance-vmware.xml:37(td)
msgid "vmware_server_host = None"
msgstr ""
#: ./doc/common/tables/glance-vmware.xml:38(td)
msgid "(StrOpt) ESX/ESXi or vCenter Server target system. The server value can be an IP address or a DNS name."
msgstr ""
#: ./doc/common/tables/glance-vmware.xml:41(td)
msgid "vmware_server_password = None"
msgstr ""
#: ./doc/common/tables/glance-vmware.xml:42(td) ./doc/common/tables/cinder-vmware.xml:30(td)
msgid "(StrOpt) Password for authenticating with VMware ESX/VC server."
msgstr ""
#: ./doc/common/tables/glance-vmware.xml:45(td)
msgid "vmware_server_username = None"
msgstr ""
#: ./doc/common/tables/glance-vmware.xml:46(td) ./doc/common/tables/cinder-vmware.xml:34(td)
msgid "(StrOpt) Username for authenticating with VMware ESX/VC server."
msgstr ""
#: ./doc/common/tables/glance-vmware.xml:49(td)
msgid "vmware_store_image_dir = /openstack_glance"
msgstr ""
#: ./doc/common/tables/glance-vmware.xml:50(td)
msgid "(StrOpt) The name of the directory where the glance images will be stored in the VMware datastore."
msgstr ""
#: ./doc/common/tables/glance-vmware.xml:53(td)
msgid "vmware_task_poll_interval = 5"
msgstr ""
#: ./doc/common/tables/glance-vmware.xml:54(td)
msgid "(IntOpt) The interval used for polling remote tasks invoked on VMware ESX/VC server."
msgstr ""
#: ./doc/common/tables/swift-account-server-filter-xprofile.xml:8(literal) ./doc/common/tables/swift-proxy-server-filter-xprofile.xml:8(literal) ./doc/common/tables/swift-object-server-filter-xprofile.xml:8(literal) ./doc/common/tables/swift-container-server-filter-xprofile.xml:8(literal)
msgid "[filter-xprofile]"
msgstr ""
#: ./doc/common/tables/swift-account-server-filter-xprofile.xml:20(td) ./doc/common/tables/swift-proxy-server-filter-xprofile.xml:20(td) ./doc/common/tables/swift-object-server-filter-xprofile.xml:20(td) ./doc/common/tables/swift-container-server-filter-xprofile.xml:20(td)
msgid "dump_interval = 5.0"
msgstr ""
#: ./doc/common/tables/swift-account-server-filter-xprofile.xml:24(td) ./doc/common/tables/swift-proxy-server-filter-xprofile.xml:24(td) ./doc/common/tables/swift-object-server-filter-xprofile.xml:24(td) ./doc/common/tables/swift-container-server-filter-xprofile.xml:24(td)
msgid "dump_timestamp = false"
msgstr ""
#: ./doc/common/tables/swift-account-server-filter-xprofile.xml:28(td) ./doc/common/tables/swift-proxy-server-filter-xprofile.xml:28(td) ./doc/common/tables/swift-object-server-filter-xprofile.xml:28(td) ./doc/common/tables/swift-container-server-filter-xprofile.xml:28(td)
msgid "flush_at_shutdown = false"
msgstr ""
#: ./doc/common/tables/swift-account-server-filter-xprofile.xml:32(td) ./doc/common/tables/swift-proxy-server-filter-xprofile.xml:32(td) ./doc/common/tables/swift-object-server-filter-xprofile.xml:32(td) ./doc/common/tables/swift-container-server-filter-xprofile.xml:32(td)
msgid "log_filename_prefix = /tmp/log/swift/profile/default.profile"
msgstr ""
#: ./doc/common/tables/swift-account-server-filter-xprofile.xml:36(td) ./doc/common/tables/swift-proxy-server-filter-xprofile.xml:36(td) ./doc/common/tables/swift-object-server-filter-xprofile.xml:36(td) ./doc/common/tables/swift-container-server-filter-xprofile.xml:36(td)
msgid "path = /__profile__"
msgstr ""
#: ./doc/common/tables/swift-account-server-filter-xprofile.xml:40(td) ./doc/common/tables/swift-proxy-server-filter-xprofile.xml:40(td) ./doc/common/tables/swift-object-server-filter-xprofile.xml:40(td) ./doc/common/tables/swift-container-server-filter-xprofile.xml:40(td)
msgid "profile_module = eventlet.green.profile"
msgstr ""
#: ./doc/common/tables/swift-account-server-filter-xprofile.xml:44(td) ./doc/common/tables/swift-proxy-server-filter-xprofile.xml:44(td) ./doc/common/tables/swift-object-server-filter-xprofile.xml:44(td) ./doc/common/tables/swift-container-server-filter-xprofile.xml:44(td)
msgid "unwind = false"
msgstr ""
#: ./doc/common/tables/swift-account-server-filter-xprofile.xml:48(td) ./doc/common/tables/swift-proxy-server-filter-xprofile.xml:48(td) ./doc/common/tables/swift-object-server-filter-xprofile.xml:48(td) ./doc/common/tables/swift-container-server-filter-xprofile.xml:48(td)
msgid "use = egg:swift#xprofile"
msgstr ""
#: ./doc/common/tables/ceilometer-xenapi.xml:7(caption)
msgid "Description of XenAPI configuration options"
msgstr ""
#: ./doc/common/tables/ceilometer-xenapi.xml:22(td) ./doc/common/tables/ceilometer-conf-changes.xml:169(td)
msgid "(StrOpt) Password for connection to XenServer/Xen Cloud Platform"
msgstr ""
#: ./doc/common/tables/ceilometer-xenapi.xml:26(td) ./doc/common/tables/ceilometer-conf-changes.xml:173(td)
msgid "(StrOpt) URL for connection to XenServer/Xen Cloud Platform"
msgstr ""
#: ./doc/common/tables/ceilometer-xenapi.xml:30(td) ./doc/common/tables/ceilometer-conf-changes.xml:177(td)
msgid "(StrOpt) Username for connection to XenServer/Xen Cloud Platform"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-container-quotas.xml:8(literal)
msgid "[filter-container-quotas]"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-container-quotas.xml:20(td)
msgid "use = egg:swift#container_quotas"
msgstr ""
#: ./doc/common/tables/cinder-zoning.xml:7(caption)
msgid "Description of zoning configuration options"
msgstr ""
#: ./doc/common/tables/cinder-zoning.xml:21(td)
msgid "zoning_mode = none"
msgstr ""
#: ./doc/common/tables/cinder-zoning.xml:22(td)
msgid "(StrOpt) FC Zoning mode configured"
msgstr ""
#: ./doc/common/tables/cinder-zoning.xml:25(th) ./doc/common/tables/cinder-zoning_manager.xml:18(th)
msgid "[fc-zone-manager]"
msgstr ""
#: ./doc/common/tables/cinder-zoning.xml:28(td)
msgid "fc_fabric_names = None"
msgstr ""
#: ./doc/common/tables/cinder-zoning.xml:29(td)
msgid "(StrOpt) Comma separated list of fibre channel fabric names. This list of names is used to retrieve other SAN credentials for connecting to each SAN fabric"
msgstr ""
#: ./doc/common/tables/cinder-zoning.xml:33(td)
msgid "(StrOpt) Zoning policy configured by user"
msgstr ""
#. Warning: Do not edit this file. It is automatically generated and your changes will be overwritten. The tool to do so lives in the openstack-doc-tools repository.
#: ./doc/common/tables/ceilometer-conf-changes.xml:4(title)
msgid "New, updated and deprecated options in Juno for Telemetry"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:16(td)
msgid "[DEFAULT] api_paste_config = api_paste.ini"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:17(td) ./doc/common/tables/ceilometer-api.xml:22(td)
msgid "(StrOpt) Configuration file for WSGI definition of API."
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:20(td)
msgid "[DEFAULT] glance_page_size = 0"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:21(td) ./doc/common/tables/ceilometer-glance.xml:22(td)
msgid "(IntOpt) Number of items to request in each paginated Glance API request (parameter used by glancecelient). If this is less than or equal to 0, page size is not specified (default value in glanceclient is used)."
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:24(td)
msgid "[DEFAULT] ironic_exchange = ironic"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:25(td) ./doc/common/tables/ceilometer-exchange.xml:42(td)
msgid "(StrOpt) Exchange name for Ironic notifications."
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:28(td)
msgid "[DEFAULT] keystone_control_exchange = keystone"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:29(td) ./doc/common/tables/ceilometer-exchange.xml:46(td)
msgid "(StrOpt) Exchange name for Keystone notifications."
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:32(td)
msgid "[DEFAULT] nova_http_log_debug = False"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:33(td) ./doc/common/tables/ceilometer-debug.xml:26(td)
msgid "(BoolOpt) Allow novaclient's debug log output."
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:40(td)
msgid "[DEFAULT] sahara_control_exchange = sahara"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:41(td) ./doc/common/tables/ceilometer-exchange.xml:58(td)
msgid "(StrOpt) Exchange name for Data Processing notifications"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:48(td)
msgid "[DEFAULT] trove_control_exchange = trove"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:49(td) ./doc/common/tables/ceilometer-exchange.xml:66(td)
msgid "(StrOpt) Exchange name for DBaaS notifications"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:52(td)
msgid "[alarm] project_alarm_quota = None"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:53(td) ./doc/common/tables/ceilometer-alarm.xml:34(td)
msgid "(IntOpt) Maximum number of alarms defined for a project."
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:56(td)
msgid "[alarm] rest_notifier_max_retries = 0"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:57(td) ./doc/common/tables/ceilometer-alarm.xml:50(td)
msgid "(IntOpt) Number of retries for REST notifier"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:60(td)
msgid "[alarm] user_alarm_quota = None"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:61(td) ./doc/common/tables/ceilometer-alarm.xml:58(td)
msgid "(IntOpt) Maximum number of alarms defined for a user."
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:64(td)
msgid "[api] enable_reverse_dns_lookup = False"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:65(td) ./doc/common/tables/ceilometer-api.xml:49(td)
msgid "(BoolOpt) Set it to False if your environment does not need or have dns server, otherwise it will delay the response from api."
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:68(td)
msgid "[central] partitioning_group_prefix = None"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:72(td)
msgid "[collector] requeue_sample_on_dispatcher_error = False"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:73(td) ./doc/common/tables/ceilometer-collector.xml:29(td)
msgid "(BoolOpt) Requeue the sample on the collector sample queue when the collector fails to dispatch it. This is only valid if the sample come from the notifier publisher"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:76(td)
msgid "[compute] workload_partitioning = False"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:80(td)
msgid "[coordination] backend_url = None"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:84(td)
msgid "[coordination] heartbeat = 1.0"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:88(td)
msgid "[database] alarm_connection = None"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:108(td)
msgid "[database] metering_connection = None"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:128(td)
msgid "[hardware] readonly_user_name = ro_snmp_user"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:129(td) ./doc/common/tables/ceilometer-tripleo.xml:22(td)
msgid "(StrOpt) SNMPd user name of all nodes running in the cloud."
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:132(td)
msgid "[hardware] readonly_user_password = password"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:133(td) ./doc/common/tables/ceilometer-tripleo.xml:26(td)
msgid "(StrOpt) SNMPd password of all the nodes running in the cloud"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:136(td)
msgid "[hardware] url_scheme = snmp://"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:137(td) ./doc/common/tables/ceilometer-tripleo.xml:30(td)
msgid "(StrOpt) URL scheme to use for hardware nodes"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:152(td)
msgid "[notification] messaging_urls = []"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:153(td) ./doc/common/tables/ceilometer-rpc.xml:81(td)
msgid "(MultiStrOpt) Messaging URLs to listen for notifications. Example: transport://user:pass@host1:port[,hostN:portN]/virtual_host (DEFAULT/transport_url is used if empty)"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:156(td)
msgid "[publisher_notifier] metering_driver = messagingv2"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:157(td) ./doc/common/tables/ceilometer-rpc.xml:95(td)
msgid "(StrOpt) The driver that ceilometer uses for metering notifications."
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:160(td)
msgid "[publisher_notifier] metering_topic = metering"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:161(td) ./doc/common/tables/ceilometer-rpc.xml:99(td)
msgid "(StrOpt) The topic that ceilometer uses for metering notifications."
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:164(td)
msgid "[vmware] wsdl_location = None"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:168(td)
msgid "[xenapi] connection_password = None"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:172(td)
msgid "[xenapi] connection_url = None"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:176(td)
msgid "[xenapi] connection_username = root"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:180(td)
msgid "[xenapi] login_timeout = 10"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:203(td)
msgid "ceilometer.openstack.common.rpc.matchmaker.MatchMakerLocalhost"
msgstr ""
#: ./doc/common/tables/ceilometer-conf-changes.xml:208(td)
msgid "sqlite:////home/gpocentek/Workspace/OpenStack/openstack-doc-tools/autogenerate_config_docs/sources/ceilometer/ceilometer/openstack/common/db/$sqlite_db"
msgstr ""
#: ./doc/common/tables/heat-notification.xml:7(caption)
msgid "Description of notification configuration options"
msgstr ""
#: ./doc/common/tables/heat-notification.xml:21(td)
msgid "onready = None"
msgstr ""
#: ./doc/common/tables/heat-notification.xml:22(td)
msgid "(StrOpt) Deprecated."
msgstr ""
#: ./doc/common/tables/nova-vpn.xml:7(caption) ./doc/common/tables/neutron-vpn.xml:7(caption)
msgid "Description of VPN configuration options"
msgstr ""
#: ./doc/common/tables/nova-vpn.xml:21(td)
msgid "boot_script_template = $pybasedir/nova/cloudpipe/bootscript.template"
msgstr ""
#: ./doc/common/tables/nova-vpn.xml:22(td)
msgid "(StrOpt) Template for cloudpipe instance boot script"
msgstr ""
#: ./doc/common/tables/nova-vpn.xml:25(td)
msgid "dmz_cidr ="
msgstr ""
#: ./doc/common/tables/nova-vpn.xml:26(td)
msgid "(ListOpt) A list of dmz range that should be accepted"
msgstr ""
#: ./doc/common/tables/nova-vpn.xml:29(td)
msgid "dmz_mask = 255.255.255.0"
msgstr ""
#: ./doc/common/tables/nova-vpn.xml:30(td)
msgid "(StrOpt) Netmask to push into openvpn config"
msgstr ""
#: ./doc/common/tables/nova-vpn.xml:33(td)
msgid "dmz_net = 10.0.0.0"
msgstr ""
#: ./doc/common/tables/nova-vpn.xml:34(td)
msgid "(StrOpt) Network to push into openvpn config"
msgstr ""
#: ./doc/common/tables/nova-vpn.xml:37(td)
msgid "vpn_flavor = m1.tiny"
msgstr ""
#: ./doc/common/tables/nova-vpn.xml:38(td)
msgid "(StrOpt) Flavor for vpn instances"
msgstr ""
#: ./doc/common/tables/nova-vpn.xml:41(td)
msgid "vpn_image_id = 0"
msgstr ""
#: ./doc/common/tables/nova-vpn.xml:42(td)
msgid "(StrOpt) Image ID used when starting up a cloudpipe vpn server"
msgstr ""
#: ./doc/common/tables/nova-vpn.xml:45(td)
msgid "vpn_ip = $my_ip"
msgstr ""
#: ./doc/common/tables/nova-vpn.xml:46(td)
msgid "(StrOpt) Public IP for the cloudpipe VPN servers"
msgstr ""
#: ./doc/common/tables/nova-vpn.xml:49(td)
msgid "vpn_key_suffix = -vpn"
msgstr ""
#: ./doc/common/tables/nova-vpn.xml:50(td)
msgid "(StrOpt) Suffix to add to project name for vpn key and secgroups"
msgstr ""
#: ./doc/common/tables/nova-vpn.xml:53(td)
msgid "vpn_start = 1000"
msgstr ""
#: ./doc/common/tables/nova-vpn.xml:54(td)
msgid "(IntOpt) First Vpn port for private networks"
msgstr ""
#: ./doc/common/tables/neutron-vpn.xml:18(th)
msgid "[ipsec]"
msgstr ""
#: ./doc/common/tables/neutron-vpn.xml:21(td)
msgid "config_base_dir = $state_path/ipsec"
msgstr ""
#: ./doc/common/tables/neutron-vpn.xml:22(td)
msgid "(StrOpt) Location to store ipsec server config files"
msgstr ""
#: ./doc/common/tables/neutron-vpn.xml:25(td)
msgid "ipsec_status_check_interval = 60"
msgstr ""
#: ./doc/common/tables/neutron-vpn.xml:26(td)
msgid "(IntOpt) Interval for checking ipsec status"
msgstr ""
#: ./doc/common/tables/neutron-vpn.xml:29(th)
msgid "[openswan]"
msgstr ""
#: ./doc/common/tables/neutron-vpn.xml:32(td)
msgid "ipsec_config_template = /usr/lib/python/site-packages/neutron/services/vpn/device_drivers/template/openswan/ipsec.conf.template"
msgstr ""
#: ./doc/common/tables/neutron-vpn.xml:33(td)
msgid "(StrOpt) Template file for ipsec configuration"
msgstr ""
#: ./doc/common/tables/neutron-vpn.xml:36(td)
msgid "ipsec_secret_template = /usr/lib/python/site-packages/neutron/services/vpn/device_drivers/template/openswan/ipsec.secret.template"
msgstr ""
#: ./doc/common/tables/neutron-vpn.xml:37(td)
msgid "(StrOpt) Template file for ipsec secret configuration"
msgstr ""
#: ./doc/common/tables/neutron-vpn.xml:40(th)
msgid "[vpnagent]"
msgstr ""
#: ./doc/common/tables/neutron-vpn.xml:43(td)
msgid "vpn_device_driver = ['neutron.services.vpn.device_drivers.ipsec.OpenSwanDriver']"
msgstr ""
#: ./doc/common/tables/neutron-vpn.xml:44(td)
msgid "(MultiStrOpt) The vpn device drivers Neutron will use"
msgstr ""
#: ./doc/common/tables/swift-object-server-filter-xprofile.xml:8(literal) ./doc/common/tables/swift-object-server-filter-healthcheck.xml:8(literal) ./doc/common/tables/swift-object-server-app-object-server.xml:8(literal) ./doc/common/tables/swift-object-server-DEFAULT.xml:8(literal) ./doc/common/tables/swift-object-server-object-replicator.xml:8(literal) ./doc/common/tables/swift-object-server-pipeline-main.xml:8(literal) ./doc/common/tables/swift-object-server-object-auditor.xml:8(literal) ./doc/common/tables/swift-object-server-filter-recon.xml:8(literal) ./doc/common/tables/swift-object-server-object-updater.xml:8(literal)
msgid "object-server.conf"
msgstr ""
#: ./doc/common/tables/swift-object-expirer-object-expirer.xml:8(literal)
msgid "[object-expirer]"
msgstr ""
#: ./doc/common/tables/swift-object-expirer-object-expirer.xml:24(td) ./doc/common/tables/swift-object-server-object-replicator.xml:20(td) ./doc/common/tables/swift-object-server-object-auditor.xml:24(td) ./doc/common/tables/swift-object-server-object-updater.xml:20(td)
msgid "concurrency = 1"
msgstr ""
#: ./doc/common/tables/swift-object-expirer-object-expirer.xml:25(td) ./doc/common/tables/swift-account-server-account-replicator.xml:21(td) ./doc/common/tables/swift-container-server-container-updater.xml:26(td) ./doc/common/tables/swift-object-server-object-replicator.xml:21(td) ./doc/common/tables/swift-object-server-object-auditor.xml:25(td) ./doc/common/tables/swift-container-server-container-replicator.xml:21(td) ./doc/common/tables/swift-object-server-object-updater.xml:21(td) ./doc/common/tables/swift-dispersion-dispersion.xml:37(td) ./doc/common/tables/swift-account-server-account-reaper.xml:21(td)
msgid "Number of replication workers to spawn"
msgstr ""
#: ./doc/common/tables/swift-object-expirer-object-expirer.xml:36(td)
msgid "process = 0"
msgstr ""
#: ./doc/common/tables/swift-object-expirer-object-expirer.xml:37(td)
msgid "(it will actually accept(2) N + 1). Setting this to one (1) will only handle one request at a time, without accepting another request concurrently."
msgstr ""
#: ./doc/common/tables/swift-object-expirer-object-expirer.xml:42(td)
msgid "processes = 0"
msgstr ""
#: ./doc/common/tables/swift-object-expirer-object-expirer.xml:46(td) ./doc/common/tables/swift-container-reconciler-container-reconciler.xml:24(td) ./doc/common/tables/swift-account-server-account-replicator.xml:68(td) ./doc/common/tables/swift-object-server-object-replicator.xml:64(td) ./doc/common/tables/swift-container-server-container-replicator.xml:60(td)
msgid "reclaim_age = 604800"
msgstr ""
#: ./doc/common/tables/swift-object-expirer-object-expirer.xml:47(td) ./doc/common/tables/swift-container-reconciler-container-reconciler.xml:25(td) ./doc/common/tables/swift-account-server-account-replicator.xml:69(td) ./doc/common/tables/swift-object-server-object-replicator.xml:65(td) ./doc/common/tables/swift-container-server-container-replicator.xml:61(td)
msgid "Time elapsed in seconds before an object can be reclaimed"
msgstr ""
#: ./doc/common/tables/swift-object-expirer-object-expirer.xml:54(td) ./doc/common/tables/neutron-common.xml:185(td)
msgid "report_interval = 300"
msgstr ""
#: ./doc/common/tables/trove-common.xml:21(td)
msgid "configurations_page_size = 20"
msgstr ""
#: ./doc/common/tables/trove-common.xml:22(td) ./doc/common/tables/trove-common.xml:26(td) ./doc/common/tables/trove-common.xml:42(td) ./doc/common/tables/trove-api.xml:34(td) ./doc/common/tables/trove-api.xml:50(td) ./doc/common/tables/trove-api.xml:54(td) ./doc/common/tables/trove-api.xml:58(td) ./doc/common/tables/trove-api.xml:62(td) ./doc/common/tables/trove-api.xml:66(td) ./doc/common/tables/trove-api.xml:70(td) ./doc/common/tables/trove-api.xml:114(td) ./doc/common/tables/trove-dns.xml:70(td) ./doc/common/tables/trove-dns.xml:74(td) ./doc/common/tables/trove-volume.xml:46(td) ./doc/common/tables/trove-volume.xml:54(td) ./doc/common/tables/trove-heat.xml:26(td) ./doc/common/tables/trove-rpc.xml:34(td) ./doc/common/tables/trove-rpc.xml:38(td) ./doc/common/tables/trove-backup.xml:66(td) ./doc/common/tables/trove-guestagent.xml:22(td) ./doc/common/tables/trove-guestagent.xml:26(td) ./doc/common/tables/trove-guestagent.xml:30(td) ./doc/common/tables/trove-database.xml:26(td) ./doc/common/tables/trove-cluster.xml:22(td) ./doc/common/tables/trove-cluster.xml:30(td) ./doc/common/tables/trove-taskmanager.xml:42(td) ./doc/common/tables/trove-taskmanager.xml:46(td) ./doc/common/tables/trove-taskmanager.xml:50(td) ./doc/common/tables/trove-taskmanager.xml:54(td) ./doc/common/tables/trove-taskmanager.xml:58(td)
msgid "(IntOpt) No help text available for this option."
msgstr ""
#: ./doc/common/tables/trove-common.xml:25(td)
msgid "databases_page_size = 20"
msgstr ""
#: ./doc/common/tables/trove-common.xml:29(td)
msgid "default_datastore = None"
msgstr ""
#: ./doc/common/tables/trove-common.xml:30(td)
msgid "(StrOpt) The default datastore id or name to use if one is not provided by the user. If the default value is None, the field becomes required in the instance-create request."
msgstr ""
#: ./doc/common/tables/trove-common.xml:33(td)
msgid "default_neutron_networks ="
msgstr ""
#: ./doc/common/tables/trove-common.xml:34(td)
msgid "(ListOpt) List of IDs for management networks which should be attached to the instance regardless of what NICs are specified in the create API call."
msgstr ""
#: ./doc/common/tables/trove-common.xml:41(td)
msgid "default_password_length = 36"
msgstr ""
#: ./doc/common/tables/trove-common.xml:45(td)
msgid "default_publisher_id = $host"
msgstr ""
#: ./doc/common/tables/trove-common.xml:49(td)
msgid "expected_filetype_suffixes = json"
msgstr ""
#: ./doc/common/tables/trove-common.xml:50(td)
msgid "(ListOpt) Filetype endings not to be reattached to an ID by the utils method correct_id_with_req."
msgstr ""
#: ./doc/common/tables/trove-common.xml:53(td) ./doc/common/tables/ceilometer-api.xml:52(td)
msgid "host = 0.0.0.0"
msgstr ""
#: ./doc/common/tables/trove-common.xml:61(td)
msgid "pybasedir = /usr/lib/python/site-packages/trove/trove"
msgstr ""
#: ./doc/common/tables/trove-common.xml:62(td)
msgid "(StrOpt) Directory where the trove python module is installed."
msgstr ""
#: ./doc/common/tables/trove-common.xml:65(td)
msgid "pydev_path = None"
msgstr ""
#: ./doc/common/tables/trove-common.xml:66(td)
msgid "(StrOpt) Set path to pydevd library, used if pydevd is not found in python sys.path."
msgstr ""
#: ./doc/common/tables/trove-common.xml:69(td)
msgid "taskmanager_queue = taskmanager"
msgstr ""
#: ./doc/common/tables/trove-common.xml:73(td)
msgid "template_path = /etc/trove/templates/"
msgstr ""
#: ./doc/common/tables/trove-common.xml:74(td)
msgid "(StrOpt) Path which leads to datastore templates."
msgstr ""
#: ./doc/common/tables/trove-common.xml:77(td)
msgid "usage_timeout = 600"
msgstr ""
#: ./doc/common/tables/trove-api.xml:21(td)
msgid "admin_roles = admin"
msgstr ""
#: ./doc/common/tables/trove-api.xml:25(td) ./doc/common/tables/heat-api.xml:145(td) ./doc/common/tables/cinder-api.xml:21(td) ./doc/common/tables/neutron-api.xml:37(td) ./doc/common/tables/nova-wsgi.xml:21(td)
msgid "api_paste_config = api-paste.ini"
msgstr ""
#: ./doc/common/tables/trove-api.xml:26(td)
msgid "(StrOpt) File name for the paste.deploy config for trove-api."
msgstr ""
#: ./doc/common/tables/trove-api.xml:30(td) ./doc/common/tables/trove-conf-changes.xml:17(td)
msgid "(StrOpt) The IP address the API will listen on."
msgstr ""
#: ./doc/common/tables/trove-api.xml:33(td)
msgid "bind_port = 8779"
msgstr ""
#: ./doc/common/tables/trove-api.xml:37(td)
msgid "black_list_regex = None"
msgstr ""
#: ./doc/common/tables/trove-api.xml:41(td)
msgid "db_api_implementation = trove.db.sqlalchemy.api"
msgstr ""
#: ./doc/common/tables/trove-api.xml:45(td)
msgid "hostname_require_valid_ip = True"
msgstr ""
#: ./doc/common/tables/trove-api.xml:46(td) ./doc/common/tables/trove-conf-changes.xml:53(td)
msgid "(BoolOpt) Require user hostnames to be valid IP addresses."
msgstr ""
#: ./doc/common/tables/trove-api.xml:49(td)
msgid "http_delete_rate = 200"
msgstr ""
#: ./doc/common/tables/trove-api.xml:53(td)
msgid "http_get_rate = 200"
msgstr ""
#: ./doc/common/tables/trove-api.xml:57(td)
msgid "http_mgmt_post_rate = 200"
msgstr ""
#: ./doc/common/tables/trove-api.xml:61(td)
msgid "http_post_rate = 200"
msgstr ""
#: ./doc/common/tables/trove-api.xml:65(td)
msgid "http_put_rate = 200"
msgstr ""
#: ./doc/common/tables/trove-api.xml:69(td)
msgid "instances_page_size = 20"
msgstr ""
#: ./doc/common/tables/trove-api.xml:78(td) ./doc/common/tables/trove-conf-changes.xml:77(td)
msgid "(StrOpt) Region name of this node. Used when searching catalog."
msgstr ""
#: ./doc/common/tables/trove-api.xml:81(td)
msgid "region = LOCAL_DEV"
msgstr ""
#: ./doc/common/tables/trove-api.xml:82(td)
msgid "(StrOpt) The region this service is located."
msgstr ""
#: ./doc/common/tables/trove-api.xml:86(td) ./doc/common/tables/cinder-common.xml:150(td) ./doc/common/tables/neutron-wsgi.xml:30(td) ./doc/common/tables/nova-wsgi.xml:38(td)
msgid "(IntOpt) Sets the value of TCP_KEEPIDLE in seconds for each server socket. Not supported on OS X."
msgstr ""
#: ./doc/common/tables/trove-api.xml:89(td)
msgid "trove_api_workers = None"
msgstr ""
#: ./doc/common/tables/trove-api.xml:90(td)
msgid "(IntOpt) Number of workers for the API service. The default will be the number of CPUs available."
msgstr ""
#: ./doc/common/tables/trove-api.xml:93(td)
msgid "trove_auth_url = http://0.0.0.0:5000/v2.0"
msgstr ""
#: ./doc/common/tables/trove-api.xml:97(td)
msgid "trove_conductor_workers = None"
msgstr ""
#: ./doc/common/tables/trove-api.xml:98(td)
msgid "(IntOpt) Number of workers for the Conductor service. The default will be the number of CPUs available."
msgstr ""
#: ./doc/common/tables/trove-api.xml:101(td)
msgid "trove_security_group_name_prefix = SecGroup"
msgstr ""
#: ./doc/common/tables/trove-api.xml:105(td)
msgid "trove_security_group_rule_cidr = 0.0.0.0/0"
msgstr ""
#: ./doc/common/tables/trove-api.xml:109(td)
msgid "trove_security_groups_support = True"
msgstr ""
#: ./doc/common/tables/trove-api.xml:110(td) ./doc/common/tables/trove-dns.xml:82(td) ./doc/common/tables/trove-compute.xml:38(td) ./doc/common/tables/trove-database.xml:30(td) ./doc/common/tables/trove-taskmanager.xml:70(td) ./doc/common/tables/trove-taskmanager.xml:78(td)
msgid "(BoolOpt) No help text available for this option."
msgstr ""
#: ./doc/common/tables/trove-api.xml:113(td)
msgid "users_page_size = 20"
msgstr ""
#: ./doc/common/tables/cinder-zadara.xml:7(caption)
msgid "Description of Zadara Storage driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-zadara.xml:21(td)
msgid "zadara_password = None"
msgstr ""
#: ./doc/common/tables/cinder-zadara.xml:22(td)
msgid "(StrOpt) Password for the VPSA"
msgstr ""
#: ./doc/common/tables/cinder-zadara.xml:25(td)
msgid "zadara_user = None"
msgstr ""
#: ./doc/common/tables/cinder-zadara.xml:26(td)
msgid "(StrOpt) User name for the VPSA"
msgstr ""
#: ./doc/common/tables/cinder-zadara.xml:29(td)
msgid "zadara_vol_encrypt = False"
msgstr ""
#: ./doc/common/tables/cinder-zadara.xml:30(td)
msgid "(BoolOpt) Default encryption policy for volumes"
msgstr ""
#: ./doc/common/tables/cinder-zadara.xml:33(td)
msgid "zadara_vol_name_template = OS_%s"
msgstr ""
#: ./doc/common/tables/cinder-zadara.xml:34(td)
msgid "(StrOpt) Default template for VPSA volume names"
msgstr ""
#: ./doc/common/tables/cinder-zadara.xml:37(td)
msgid "zadara_vol_thin = True"
msgstr ""
#: ./doc/common/tables/cinder-zadara.xml:38(td)
msgid "(BoolOpt) Default thin provisioning policy for volumes"
msgstr ""
#: ./doc/common/tables/cinder-zadara.xml:41(td)
msgid "zadara_vpsa_allow_nonexistent_delete = True"
msgstr ""
#: ./doc/common/tables/cinder-zadara.xml:42(td)
msgid "(BoolOpt) Don't halt on deletion of non-existing volumes"
msgstr ""
#: ./doc/common/tables/cinder-zadara.xml:45(td)
msgid "zadara_vpsa_auto_detach_on_delete = True"
msgstr ""
#: ./doc/common/tables/cinder-zadara.xml:46(td)
msgid "(BoolOpt) Automatically detach from servers on volume delete"
msgstr ""
#: ./doc/common/tables/cinder-zadara.xml:49(td)
msgid "zadara_vpsa_ip = None"
msgstr ""
#: ./doc/common/tables/cinder-zadara.xml:50(td)
msgid "(StrOpt) Management IP of Zadara VPSA"
msgstr ""
#: ./doc/common/tables/cinder-zadara.xml:53(td)
msgid "zadara_vpsa_poolname = None"
msgstr ""
#: ./doc/common/tables/cinder-zadara.xml:54(td)
msgid "(StrOpt) Name of VPSA storage pool for volumes"
msgstr ""
#: ./doc/common/tables/cinder-zadara.xml:57(td)
msgid "zadara_vpsa_port = None"
msgstr ""
#: ./doc/common/tables/cinder-zadara.xml:58(td)
msgid "(StrOpt) Zadara VPSA port number"
msgstr ""
#: ./doc/common/tables/cinder-zadara.xml:61(td)
msgid "zadara_vpsa_use_ssl = False"
msgstr ""
#: ./doc/common/tables/cinder-zadara.xml:62(td)
msgid "(BoolOpt) Use SSL connection"
msgstr ""
#: ./doc/common/tables/nova-conductor.xml:7(caption)
msgid "Description of conductor configuration options"
msgstr ""
#: ./doc/common/tables/nova-conductor.xml:21(td)
msgid "migrate_max_retries = -1"
msgstr ""
#: ./doc/common/tables/nova-conductor.xml:22(td)
msgid "(IntOpt) Number of times to retry live-migration before failing. If == -1, try until out of hosts. If == 0, only try once, no retries."
msgstr ""
#: ./doc/common/tables/nova-conductor.xml:25(th) ./doc/common/tables/sahara-common.xml:156(th)
msgid "[conductor]"
msgstr ""
#: ./doc/common/tables/nova-conductor.xml:28(td)
msgid "manager = nova.conductor.manager.ConductorManager"
msgstr ""
#: ./doc/common/tables/nova-conductor.xml:29(td)
msgid "(StrOpt) Full class name for the Manager for conductor"
msgstr ""
#: ./doc/common/tables/nova-conductor.xml:32(td)
msgid "topic = conductor"
msgstr ""
#: ./doc/common/tables/nova-conductor.xml:33(td)
msgid "(StrOpt) The topic on which conductor nodes listen"
msgstr ""
#: ./doc/common/tables/nova-conductor.xml:36(td)
msgid "use_local = False"
msgstr ""
#: ./doc/common/tables/nova-conductor.xml:37(td)
msgid "(BoolOpt) Perform nova-conductor operations locally"
msgstr ""
#: ./doc/common/tables/nova-conductor.xml:40(td)
msgid "workers = None"
msgstr ""
#: ./doc/common/tables/nova-conductor.xml:41(td)
msgid "(IntOpt) Number of workers for OpenStack Conductor service. The default will be the number of CPUs available."
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:8(literal)
msgid "[app-object-server]"
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:20(td)
msgid "allowed_headers = Content-Disposition, Content-Encoding, X-Delete-At, X-Object-Manifest, X-Static-Large-Object"
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:21(td)
msgid "Comma-separated list of headers that can be set in metadata of an object"
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:28(td)
msgid "keep_cache_private = false"
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:29(td)
msgid "Allow non-public objects to stay in kernel's buffer cache"
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:32(td)
msgid "keep_cache_size = 5424880"
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:33(td)
msgid "Largest object size to keep in buffer cache"
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:36(td)
msgid "max_upload_time = 86400"
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:37(td)
msgid "Maximum time allowed to upload an object"
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:40(td)
msgid "mb_per_sync = 512"
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:41(td)
msgid "On PUT requests, sync file every n MB"
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:44(td)
msgid "replication_concurrency = 4"
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:45(td)
msgid "Set to restrict the number of concurrent incoming REPLICATION requests; set to 0 for unlimited"
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:48(td)
msgid "replication_failure_ratio = 1.0"
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:49(td)
msgid "If the value of failures / successes of REPLICATION subrequests exceeds this ratio, the overall REPLICATION request will be aborted"
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:52(td)
msgid "replication_failure_threshold = 100"
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:53(td)
msgid "The number of subrequest failures before the replication_failure_ratio is checked"
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:56(td)
msgid "replication_lock_timeout = 15"
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:57(td)
msgid "Number of seconds to wait for an existing replication device lock before giving up."
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:60(td)
msgid "replication_one_per_device = True"
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:61(td)
msgid "Restricts incoming REPLICATION requests to one per device, replication_currency above allowing. This can help control I/O to each device, but you may wish to set this to False to allow multiple REPLICATION requests (up to the above replication_concurrency setting) per device."
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:64(td) ./doc/common/tables/swift-account-server-app-account-server.xml:24(td) ./doc/common/tables/swift-container-server-app-container-server.xml:36(td)
msgid "replication_server = false"
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:65(td) ./doc/common/tables/swift-account-server-app-account-server.xml:25(td) ./doc/common/tables/swift-container-server-app-container-server.xml:37(td)
msgid "If defined, tells server how to handle replication verbs in requests. When set to True (or 1), only replication verbs will be accepted. When set to False, replication verbs will be rejected. When undefined, server will accept any verb in the request."
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:80(td)
msgid "set log_name = object-server"
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:84(td) ./doc/common/tables/swift-account-server-app-account-server.xml:44(td) ./doc/common/tables/swift-container-server-app-container-server.xml:56(td)
msgid "set log_requests = true"
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:85(td) ./doc/common/tables/swift-account-server-app-account-server.xml:45(td) ./doc/common/tables/swift-container-server-app-container-server.xml:57(td)
msgid "Whether or not to log requests"
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:88(td)
msgid "slow = 0"
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:89(td)
msgid "If &gt; 0, Minimum time in seconds for a PUT or DELETE request to complete"
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:92(td)
msgid "threads_per_disk = 0"
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:93(td)
msgid "Size of the per-disk thread pool used for performing disk I/O. The default of 0 means to not use a per-disk thread pool. It is recommended to keep this value small, as large values can result in high read latencies due to large queue depths. A good starting point is 4 threads per disk."
msgstr ""
#: ./doc/common/tables/swift-object-server-app-object-server.xml:96(td)
msgid "use = egg:swift#object"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-catch_errors.xml:36(td)
msgid "set log_name = catch_errors"
msgstr ""
#: ./doc/common/tables/nova-livemigration.xml:7(caption)
msgid "Description of live migration configuration options"
msgstr ""
#: ./doc/common/tables/nova-livemigration.xml:21(td)
msgid "live_migration_retry_count = 30"
msgstr ""
#: ./doc/common/tables/nova-livemigration.xml:22(td)
msgid "(IntOpt) Number of 1 second retries needed in live_migration"
msgstr ""
#: ./doc/common/tables/nova-livemigration.xml:28(td)
msgid "live_migration_bandwidth = 0"
msgstr ""
#: ./doc/common/tables/nova-livemigration.xml:29(td)
msgid "(IntOpt) Maximum bandwidth to be used during migration, in Mbps"
msgstr ""
#: ./doc/common/tables/nova-livemigration.xml:32(td)
msgid "live_migration_flag = VIR_MIGRATE_UNDEFINE_SOURCE, VIR_MIGRATE_PEER2PEER, VIR_MIGRATE_LIVE, VIR_MIGRATE_TUNNELLED"
msgstr ""
#: ./doc/common/tables/nova-livemigration.xml:33(td)
msgid "(StrOpt) Migration flags to be set for live migration"
msgstr ""
#: ./doc/common/tables/nova-livemigration.xml:36(td)
msgid "live_migration_uri = qemu+tcp://%s/system"
msgstr ""
#: ./doc/common/tables/nova-livemigration.xml:37(td)
msgid "(StrOpt) Migration target URI (any included \"%s\" is replaced with the migration target hostname)"
msgstr ""
#: ./doc/common/tables/swift-container-reconciler-container-reconciler.xml:8(literal)
msgid "[container-reconciler]"
msgstr ""
#: ./doc/common/tables/swift-container-reconciler-container-reconciler.xml:20(td) ./doc/common/tables/swift-account-server-account-replicator.xml:36(td) ./doc/common/tables/swift-container-server-container-replicator.xml:28(td)
msgid "interval = 30"
msgstr ""
#: ./doc/common/tables/swift-container-reconciler-container-reconciler.xml:28(td)
msgid "request_tries = 3"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-keystoneauth.xml:8(literal)
msgid "[filter-keystoneauth]"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-keystoneauth.xml:20(td)
msgid "operator_roles = admin, swiftoperator"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-keystoneauth.xml:24(td)
msgid "reseller_admin_role = ResellerAdmin"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-keystoneauth.xml:28(td)
msgid "use = egg:swift#keystoneauth"
msgstr ""
#: ./doc/common/tables/keystone-amqp.xml:29(td)
msgid "control_exchange = keystone"
msgstr ""
#: ./doc/common/tables/keystone-rpc.xml:7(caption)
msgid "Description of configuration options for rpc"
msgstr ""
#: ./doc/common/tables/keystone-rpc.xml:21(td)
msgid "allowed_rpc_exception_modules = keystone.openstack.common.exception, nova.exception, cinder.exception, exceptions"
msgstr ""
#: ./doc/common/tables/swift-object-server-DEFAULT.xml:28(td)
msgid "bind_port = 6000"
msgstr ""
#: ./doc/common/tables/swift-object-server-DEFAULT.xml:52(td) ./doc/common/tables/swift-object-server-object-auditor.xml:28(td)
msgid "disk_chunk_size = 65536"
msgstr ""
#: ./doc/common/tables/swift-object-server-DEFAULT.xml:53(td) ./doc/common/tables/swift-object-server-object-auditor.xml:29(td)
msgid "Size of chunks to read/write to disk"
msgstr ""
#: ./doc/common/tables/swift-object-server-DEFAULT.xml:142(td)
msgid "network_chunk_size = 65536"
msgstr ""
#: ./doc/common/tables/swift-object-server-DEFAULT.xml:143(td)
msgid "Size of chunks to read/write over the network"
msgstr ""
#: ./doc/common/tables/swift-object-server-DEFAULT.xml:146(td) ./doc/common/tables/swift-container-server-container-updater.xml:53(td) ./doc/common/tables/swift-container-server-app-container-server.xml:32(td)
msgid "node_timeout = 3"
msgstr ""
#: ./doc/common/tables/cinder-zones.xml:7(caption)
msgid "Description of zones configuration options"
msgstr ""
#: ./doc/common/tables/cinder-zones.xml:21(td)
msgid "cloned_volume_same_az = True"
msgstr ""
#: ./doc/common/tables/cinder-zones.xml:22(td)
msgid "(BoolOpt) Ensure that the new volumes are the same AZ as snapshot or source volume"
msgstr ""
#: ./doc/common/tables/cinder-scality.xml:7(caption)
msgid "Description of Scality SOFS volume driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-scality.xml:29(td)
msgid "scality_sofs_volume_dir = cinder/volumes"
msgstr ""
#: ./doc/common/tables/cinder-scality.xml:30(td)
msgid "(StrOpt) Path from Scality SOFS root to volume dir"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:8(literal)
msgid "[filter-tempauth]"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:20(td)
msgid "allow_overrides = true"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:24(td)
msgid "auth_prefix = /auth/"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:25(td)
msgid "The HTTP request path prefix for the auth service. Swift itself reserves anything beginning with the letter `v`."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:28(td)
msgid "reseller_prefix = AUTH"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:29(td)
msgid "The naming scope for the auth service. Swift"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:48(td)
msgid "set log_name = tempauth"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:52(td)
msgid "storage_url_scheme = default"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:53(td)
msgid "Scheme to return with storage urls: http, https, or default (chooses based on what the server is running as) This can be useful with an SSL load balancer in front of a non-SSL server."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:56(td)
msgid "token_life = 86400"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:57(td)
msgid "The number of seconds a token is valid."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:60(td)
msgid "use = egg:swift#tempauth"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:64(td)
msgid "user_admin_admin = admin .admin .reseller_admin"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:68(td)
msgid "user_test2_tester2 = testing2 .admin"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:72(td)
msgid "user_test_tester = testing .admin"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-tempauth.xml:76(td)
msgid "user_test_tester3 = testing3"
msgstr ""
#: ./doc/common/tables/neutron-agent.xml:7(caption)
msgid "Description of agent configuration options"
msgstr ""
#: ./doc/common/tables/neutron-agent.xml:21(td)
msgid "external_pids = $state_path/external/pids"
msgstr ""
#: ./doc/common/tables/neutron-agent.xml:22(td)
msgid "(StrOpt) Location to store child pid files"
msgstr ""
#: ./doc/common/tables/neutron-agent.xml:25(td) ./doc/common/tables/nova-network.xml:169(td)
msgid "network_device_mtu = None"
msgstr ""
#: ./doc/common/tables/neutron-agent.xml:26(td)
msgid "(IntOpt) MTU setting for device."
msgstr ""
#: ./doc/common/tables/cinder-emc.xml:7(caption)
msgid "Description of EMC configuration options"
msgstr ""
#: ./doc/common/tables/cinder-emc.xml:21(td)
msgid "cinder_emc_config_file = /etc/cinder/cinder_emc_config.xml"
msgstr ""
#: ./doc/common/tables/cinder-emc.xml:22(td)
msgid "(StrOpt) use this file for cinder emc plugin config data"
msgstr ""
#: ./doc/common/tables/cinder-emc.xml:25(td)
msgid "destroy_empty_storage_group = False"
msgstr ""
#: ./doc/common/tables/cinder-emc.xml:26(td) ./doc/common/tables/cinder-conf-changes.xml:53(td)
msgid "(BoolOpt) To destroy storage group when the last LUN is removed from it. By default, the value is False."
msgstr ""
#: ./doc/common/tables/cinder-emc.xml:29(td)
msgid "initiator_auto_registration = False"
msgstr ""
#: ./doc/common/tables/cinder-emc.xml:30(td) ./doc/common/tables/cinder-conf-changes.xml:189(td)
msgid "(BoolOpt) Automatically register initiators. By default, the value is False."
msgstr ""
#: ./doc/common/tables/cinder-emc.xml:33(td)
msgid "iscsi_initiators ="
msgstr ""
#: ./doc/common/tables/cinder-emc.xml:34(td) ./doc/common/tables/cinder-conf-changes.xml:193(td)
msgid "(StrOpt) Mapping between hostname and its iSCSI initiator IP addresses."
msgstr ""
#: ./doc/common/tables/cinder-emc.xml:37(td)
msgid "max_luns_per_storage_group = 255"
msgstr ""
#: ./doc/common/tables/cinder-emc.xml:38(td)
msgid "(IntOpt) Default max number of LUNs in a storage group. By default, the value is 255."
msgstr ""
#: ./doc/common/tables/cinder-emc.xml:41(td)
msgid "naviseccli_path ="
msgstr ""
#: ./doc/common/tables/cinder-emc.xml:42(td)
msgid "(StrOpt) Naviseccli Path."
msgstr ""
#: ./doc/common/tables/cinder-emc.xml:45(td)
msgid "storage_vnx_authentication_type = global"
msgstr ""
#: ./doc/common/tables/cinder-emc.xml:46(td) ./doc/common/tables/cinder-conf-changes.xml:273(td)
msgid "(StrOpt) VNX authentication scope type."
msgstr ""
#: ./doc/common/tables/cinder-emc.xml:49(td)
msgid "storage_vnx_pool_name = None"
msgstr ""
#: ./doc/common/tables/cinder-emc.xml:53(td)
msgid "storage_vnx_security_file_dir = None"
msgstr ""
#: ./doc/common/tables/cinder-emc.xml:54(td) ./doc/common/tables/cinder-conf-changes.xml:277(td)
msgid "(StrOpt) Directory path that contains the VNX security file. Make sure the security file is generated first."
msgstr ""
#: ./doc/common/tables/cinder-vmware.xml:25(td)
msgid "vmware_host_ip = None"
msgstr ""
#: ./doc/common/tables/cinder-vmware.xml:26(td)
msgid "(StrOpt) IP address for connecting to VMware ESX/VC server."
msgstr ""
#: ./doc/common/tables/cinder-vmware.xml:29(td)
msgid "vmware_host_password = None"
msgstr ""
#: ./doc/common/tables/cinder-vmware.xml:33(td)
msgid "vmware_host_username = None"
msgstr ""
#: ./doc/common/tables/cinder-vmware.xml:37(td)
msgid "vmware_host_version = None"
msgstr ""
#: ./doc/common/tables/cinder-vmware.xml:38(td)
msgid "(StrOpt) Optional string specifying the VMware VC server version. The driver attempts to retrieve the version from VMware VC server. Set this configuration only if you want to override the VC server version."
msgstr ""
#: ./doc/common/tables/cinder-vmware.xml:41(td)
msgid "vmware_image_transfer_timeout_secs = 7200"
msgstr ""
#: ./doc/common/tables/cinder-vmware.xml:42(td)
msgid "(IntOpt) Timeout in seconds for VMDK volume transfer between Cinder and Glance."
msgstr ""
#: ./doc/common/tables/cinder-vmware.xml:45(td)
msgid "vmware_max_objects_retrieval = 100"
msgstr ""
#: ./doc/common/tables/cinder-vmware.xml:46(td)
msgid "(IntOpt) Max number of objects to be retrieved per batch. Query results will be obtained in batches from the server and not in one shot. Server may still limit the count to something less than the configured value."
msgstr ""
#: ./doc/common/tables/cinder-vmware.xml:49(td)
msgid "vmware_task_poll_interval = 0.5"
msgstr ""
#: ./doc/common/tables/cinder-vmware.xml:50(td)
msgid "(FloatOpt) The interval (in seconds) for polling remote tasks invoked on VMware ESX/VC server."
msgstr ""
#: ./doc/common/tables/cinder-vmware.xml:53(td)
msgid "vmware_volume_folder = cinder-volumes"
msgstr ""
#: ./doc/common/tables/cinder-vmware.xml:54(td)
msgid "(StrOpt) Name for the folder in the VC datacenter that will contain cinder volumes."
msgstr ""
#: ./doc/common/tables/cinder-vmware.xml:57(td)
msgid "vmware_wsdl_location = None"
msgstr ""
#: ./doc/common/tables/cinder-vmware.xml:58(td)
msgid "(StrOpt) Optional VIM service WSDL Location e.g http://&lt;server&gt;/vimService.wsdl. Optional over-ride to default location for bug work-arounds."
msgstr ""
#: ./doc/common/tables/neutron-ml2_flat.xml:7(caption)
msgid "Description of ML2 Flat mechanism driver configuration options"
msgstr ""
#: ./doc/common/tables/neutron-ml2_flat.xml:18(th)
msgid "[ml2_type_flat]"
msgstr ""
#: ./doc/common/tables/neutron-ml2_flat.xml:21(td)
msgid "flat_networks ="
msgstr ""
#: ./doc/common/tables/neutron-ml2_flat.xml:22(td)
msgid "(ListOpt) List of physical_network names with which flat networks can be created. Use * to allow flat networks with arbitrary physical_network names."
msgstr ""
#: ./doc/common/tables/heat-metadata_api.xml:7(caption)
msgid "Description of metadata API configuration options"
msgstr ""
#: ./doc/common/tables/heat-metadata_api.xml:21(td) ./doc/common/tables/heat-api.xml:25(td)
msgid "heat_metadata_server_url ="
msgstr ""
#: ./doc/common/tables/heat-metadata_api.xml:22(td) ./doc/common/tables/heat-api.xml:26(td)
msgid "(StrOpt) URL of the Heat metadata server."
msgstr ""
#: ./doc/common/tables/trove-rabbitmq.xml:22(td)
msgid "(BoolOpt) use H/A queues in RabbitMQ (x-ha-policy: all).You need to wipe RabbitMQ database when changing this option."
msgstr ""
#: ./doc/common/tables/trove-rabbitmq.xml:26(td)
msgid "(StrOpt) The RabbitMQ broker address where a single node is used"
msgstr ""
#: ./doc/common/tables/trove-rabbitmq.xml:30(td)
msgid "(ListOpt) RabbitMQ HA cluster host:port pairs"
msgstr ""
#: ./doc/common/tables/trove-rabbitmq.xml:34(td)
msgid "(IntOpt) maximum retries with trying to connect to RabbitMQ (the default of 0 implies an infinite retry count)"
msgstr ""
#: ./doc/common/tables/trove-rabbitmq.xml:38(td)
msgid "(StrOpt) the RabbitMQ password"
msgstr ""
#: ./doc/common/tables/trove-rabbitmq.xml:42(td)
msgid "(IntOpt) The RabbitMQ broker port where a single node is used"
msgstr ""
#: ./doc/common/tables/trove-rabbitmq.xml:46(td)
msgid "(IntOpt) how long to backoff for between retries when connecting to RabbitMQ"
msgstr ""
#: ./doc/common/tables/trove-rabbitmq.xml:50(td)
msgid "(IntOpt) how frequently to retry connecting with RabbitMQ"
msgstr ""
#: ./doc/common/tables/trove-rabbitmq.xml:54(td)
msgid "(BoolOpt) connect over SSL for RabbitMQ"
msgstr ""
#: ./doc/common/tables/trove-rabbitmq.xml:58(td)
msgid "(StrOpt) the RabbitMQ userid"
msgstr ""
#: ./doc/common/tables/trove-rabbitmq.xml:62(td)
msgid "(StrOpt) the RabbitMQ virtual host"
msgstr ""
#: ./doc/common/tables/nova-upgrade_levels.xml:7(caption)
msgid "Description of upgrade levels configuration options"
msgstr ""
#: ./doc/common/tables/nova-upgrade_levels.xml:21(td)
msgid "scheduler = nova.cells.scheduler.CellsScheduler"
msgstr ""
#: ./doc/common/tables/nova-upgrade_levels.xml:22(td)
msgid "(StrOpt) Cells scheduler to use"
msgstr ""
#: ./doc/common/tables/nova-upgrade_levels.xml:25(th) ./doc/common/tables/nova-rpc_all.xml:215(th) ./doc/common/tables/nova-rpc.xml:75(th)
msgid "[upgrade_levels]"
msgstr ""
#: ./doc/common/tables/nova-upgrade_levels.xml:28(td)
msgid "cells = None"
msgstr ""
#: ./doc/common/tables/nova-upgrade_levels.xml:29(td)
msgid "(StrOpt) Set a version cap for messages sent to local cells services"
msgstr ""
#: ./doc/common/tables/nova-upgrade_levels.xml:32(td)
msgid "cert = None"
msgstr ""
#: ./doc/common/tables/nova-upgrade_levels.xml:33(td)
msgid "(StrOpt) Set a version cap for messages sent to cert services"
msgstr ""
#: ./doc/common/tables/nova-upgrade_levels.xml:36(td)
msgid "compute = None"
msgstr ""
#: ./doc/common/tables/nova-upgrade_levels.xml:37(td)
msgid "(StrOpt) Set a version cap for messages sent to compute services. If you plan to do a live upgrade from havana to icehouse, you should set this option to \"icehouse-compat\" before beginning the live upgrade procedure."
msgstr ""
#: ./doc/common/tables/nova-upgrade_levels.xml:40(td)
msgid "conductor = None"
msgstr ""
#: ./doc/common/tables/nova-upgrade_levels.xml:41(td)
msgid "(StrOpt) Set a version cap for messages sent to conductor services"
msgstr ""
#: ./doc/common/tables/nova-upgrade_levels.xml:44(td)
msgid "console = None"
msgstr ""
#: ./doc/common/tables/nova-upgrade_levels.xml:45(td)
msgid "(StrOpt) Set a version cap for messages sent to console services"
msgstr ""
#: ./doc/common/tables/nova-upgrade_levels.xml:48(td)
msgid "consoleauth = None"
msgstr ""
#: ./doc/common/tables/nova-upgrade_levels.xml:49(td)
msgid "(StrOpt) Set a version cap for messages sent to consoleauth services"
msgstr ""
#: ./doc/common/tables/nova-upgrade_levels.xml:52(td)
msgid "intercell = None"
msgstr ""
#: ./doc/common/tables/nova-upgrade_levels.xml:53(td)
msgid "(StrOpt) Set a version cap for messages sent between cells services"
msgstr ""
#: ./doc/common/tables/nova-upgrade_levels.xml:56(td)
msgid "network = None"
msgstr ""
#: ./doc/common/tables/nova-upgrade_levels.xml:57(td)
msgid "(StrOpt) Set a version cap for messages sent to network services"
msgstr ""
#: ./doc/common/tables/nova-upgrade_levels.xml:60(td)
msgid "scheduler = None"
msgstr ""
#: ./doc/common/tables/nova-upgrade_levels.xml:61(td)
msgid "(StrOpt) Set a version cap for messages sent to scheduler services"
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_iscsi.xml:7(caption)
msgid "Description of NetApp cDOT iSCSI driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_iscsi.xml:37(td) ./doc/common/tables/cinder-netapp_7mode_iscsi.xml:37(td)
msgid "netapp_size_multiplier = 1.2"
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_iscsi.xml:38(td) ./doc/common/tables/cinder-netapp_7mode_iscsi.xml:38(td)
msgid "(FloatOpt) The quantity to be multiplied by the requested volume size to ensure enough space is available on the virtual storage server (Vserver) to fulfill the volume creation request."
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_iscsi.xml:53(td) ./doc/common/tables/cinder-netapp_cdot_nfs.xml:57(td)
msgid "netapp_vserver = None"
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_iscsi.xml:54(td) ./doc/common/tables/cinder-netapp_cdot_nfs.xml:58(td)
msgid "(StrOpt) This option specifies the virtual storage server (Vserver) name on the storage cluster on which provisioning of block storage volumes should occur. If using the NFS storage protocol, this parameter is mandatory for storage service catalog support (utilized by Cinder volume type extra_specs support). If this option is specified, the exports belonging to the Vserver will only be used for provisioning in the future. Block storage volumes on exports not belonging to the Vserver specified by this option will continue to function normally."
msgstr ""
#: ./doc/common/tables/neutron-ml2_ofa.xml:7(caption)
msgid "Description of ML2 ofagent mechanism driver configuration options"
msgstr ""
#: ./doc/common/tables/neutron-ml2_ofa.xml:21(td)
msgid "ofp_listen_host ="
msgstr ""
#: ./doc/common/tables/neutron-ml2_ofa.xml:22(td)
msgid "(StrOpt) openflow listen host"
msgstr ""
#: ./doc/common/tables/neutron-ml2_ofa.xml:25(td)
msgid "ofp_ssl_listen_port = 6633"
msgstr ""
#: ./doc/common/tables/neutron-ml2_ofa.xml:26(td)
msgid "(IntOpt) openflow ssl listen port"
msgstr ""
#: ./doc/common/tables/neutron-ml2_ofa.xml:29(td)
msgid "ofp_tcp_listen_port = 6633"
msgstr ""
#: ./doc/common/tables/neutron-ml2_ofa.xml:30(td)
msgid "(IntOpt) openflow tcp listen port"
msgstr ""
#: ./doc/common/tables/neutron-ml2_ofa.xml:40(td)
msgid "get_datapath_retry_times = 60"
msgstr ""
#: ./doc/common/tables/neutron-ml2_ofa.xml:41(td)
msgid "(IntOpt) Number of seconds to retry acquiring an Open vSwitch datapath"
msgstr ""
#: ./doc/common/tables/glance-api.xml:21(td)
msgid "admin_role = admin"
msgstr ""
#: ./doc/common/tables/glance-api.xml:22(td)
msgid "(StrOpt) Role used to identify an authenticated user as administrator."
msgstr ""
#: ./doc/common/tables/glance-api.xml:25(td)
msgid "allow_anonymous_access = False"
msgstr ""
#: ./doc/common/tables/glance-api.xml:26(td)
msgid "(BoolOpt) Allow unauthenticated users to access the API with read-only privileges. This only applies when using ContextMiddleware."
msgstr ""
#: ./doc/common/tables/glance-api.xml:29(td)
msgid "default_publisher_id = image.localhost"
msgstr ""
#: ./doc/common/tables/glance-api.xml:33(td) ./doc/common/tables/cinder-api.xml:37(td)
msgid "enable_v1_api = True"
msgstr ""
#: ./doc/common/tables/glance-api.xml:34(td)
msgid "(BoolOpt) Deploy the v1 OpenStack Images API."
msgstr ""
#: ./doc/common/tables/glance-api.xml:37(td)
msgid "enable_v1_registry = True"
msgstr ""
#: ./doc/common/tables/glance-api.xml:38(td)
msgid "(BoolOpt) Deploy the v1 OpenStack Registry API."
msgstr ""
#: ./doc/common/tables/glance-api.xml:41(td) ./doc/common/tables/cinder-api.xml:41(td)
msgid "enable_v2_api = True"
msgstr ""
#: ./doc/common/tables/glance-api.xml:42(td)
msgid "(BoolOpt) Deploy the v2 OpenStack Images API."
msgstr ""
#: ./doc/common/tables/glance-api.xml:45(td)
msgid "enable_v2_registry = True"
msgstr ""
#: ./doc/common/tables/glance-api.xml:46(td)
msgid "(BoolOpt) Deploy the v2 OpenStack Registry API."
msgstr ""
#: ./doc/common/tables/glance-api.xml:49(td)
msgid "image_size_cap = 1099511627776"
msgstr ""
#: ./doc/common/tables/glance-api.xml:50(td)
msgid "(IntOpt) Maximum size of image a user can upload in bytes. Defaults to 1099511627776 bytes (1 TB)."
msgstr ""
#: ./doc/common/tables/glance-api.xml:53(td)
msgid "location_strategy = location_order"
msgstr ""
#: ./doc/common/tables/glance-api.xml:54(td)
msgid "(StrOpt) This value sets what strategy will be used to determine the image location order. Currently two strategies are packaged with Glance 'location_order' and 'store_type'."
msgstr ""
#: ./doc/common/tables/glance-api.xml:57(td)
msgid "owner_is_tenant = True"
msgstr ""
#: ./doc/common/tables/glance-api.xml:58(td)
msgid "(BoolOpt) When true, this option sets the owner of an image to be the tenant. Otherwise, the owner of the image will be the authenticated user issuing the request."
msgstr ""
#: ./doc/common/tables/glance-api.xml:61(td)
msgid "send_identity_headers = False"
msgstr ""
#: ./doc/common/tables/glance-api.xml:62(td)
msgid "(BoolOpt) Whether to pass through headers containing user and tenant information when making requests to the registry. This allows the registry to use the context middleware without keystonemiddleware's auth_token middleware, removing calls to the keystone auth service. It is recommended that when using this option, secure communication between glance api and glance registry is ensured by means other than auth_token middleware."
msgstr ""
#: ./doc/common/tables/glance-api.xml:65(td)
msgid "show_multiple_locations = False"
msgstr ""
#: ./doc/common/tables/glance-api.xml:66(td)
msgid "(BoolOpt) Whether to include the backend image locations in image properties. Revealing storage location can be a security risk, so use this setting with caution! The overrides show_image_direct_url."
msgstr ""
#: ./doc/common/tables/glance-api.xml:69(td)
msgid "use_user_token = True"
msgstr ""
#: ./doc/common/tables/glance-api.xml:70(td)
msgid "(BoolOpt) Whether to pass through the user token when making requests to the registry."
msgstr ""
#: ./doc/common/tables/glance-api.xml:76(td)
msgid "default_store = file"
msgstr ""
#: ./doc/common/tables/glance-api.xml:77(td)
msgid "(StrOpt) Default scheme to use to store image data. The scheme must be registered by one of the stores defined by the 'stores' config option."
msgstr ""
#: ./doc/common/tables/glance-api.xml:80(td)
msgid "stores = file, http"
msgstr ""
#: ./doc/common/tables/glance-api.xml:81(td)
msgid "(ListOpt) List of stores enabled"
msgstr ""
#: ./doc/common/tables/glance-api.xml:84(th)
msgid "[store_type_location_strategy]"
msgstr ""
#: ./doc/common/tables/glance-api.xml:87(td)
msgid "store_type_preference ="
msgstr ""
#: ./doc/common/tables/glance-api.xml:88(td)
msgid "(ListOpt) The store names to use to get store preference order. The name must be registered by one of the stores defined by the 'known_stores' config option. This option will be applied when you using 'store_type' option as image location strategy defined by the 'location_strategy' config option."
msgstr ""
#: ./doc/common/tables/heat-waitcondition_api.xml:7(caption)
msgid "Description of waitcondition API configuration options"
msgstr ""
#: ./doc/common/tables/heat-waitcondition_api.xml:21(td) ./doc/common/tables/heat-api.xml:33(td)
msgid "heat_waitcondition_server_url ="
msgstr ""
#: ./doc/common/tables/heat-waitcondition_api.xml:22(td) ./doc/common/tables/heat-api.xml:34(td)
msgid "(StrOpt) URL of the Heat waitcondition server."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-gatekeeper.xml:8(literal)
msgid "[filter-gatekeeper]"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-gatekeeper.xml:36(td)
msgid "set log_name = gatekeeper"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-gatekeeper.xml:40(td)
msgid "use = egg:swift#gatekeeper"
msgstr ""
#: ./doc/common/tables/swift-rsyncd-container.xml:8(literal)
msgid "[container]"
msgstr ""
#: ./doc/common/tables/swift-rsyncd-container.xml:8(literal) ./doc/common/tables/swift-rsyncd-account.xml:8(literal) ./doc/common/tables/swift-rsyncd-object.xml:8(literal)
msgid "rsyncd.conf"
msgstr ""
#: ./doc/common/tables/swift-rsyncd-container.xml:20(td)
msgid "lock file = /var/lock/container.lock"
msgstr ""
#: ./doc/common/tables/swift-rsyncd-container.xml:24(td)
msgid "max connections = 4"
msgstr ""
#: ./doc/common/tables/swift-rsyncd-container.xml:28(td) ./doc/common/tables/swift-rsyncd-account.xml:28(td) ./doc/common/tables/swift-rsyncd-object.xml:28(td)
msgid "path = /srv/node"
msgstr ""
#: ./doc/common/tables/swift-rsyncd-container.xml:32(td) ./doc/common/tables/swift-rsyncd-account.xml:32(td) ./doc/common/tables/swift-rsyncd-object.xml:32(td)
msgid "read only = false"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:7(caption)
msgid "Description of IBM Storwise driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:21(td)
msgid "storwize_svc_allow_tenant_qos = False"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:25(td)
msgid "storwize_svc_connection_protocol = iSCSI"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:26(td)
msgid "(StrOpt) Connection protocol (iSCSI/FC)"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:29(td)
msgid "storwize_svc_flashcopy_timeout = 120"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:30(td)
msgid "(IntOpt) Maximum number of seconds to wait for FlashCopy to be prepared. Maximum value is 600 seconds (10 minutes)"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:33(td)
msgid "storwize_svc_iscsi_chap_enabled = True"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:34(td)
msgid "(BoolOpt) Configure CHAP authentication for iSCSI connections (Default: Enabled)"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:37(td)
msgid "storwize_svc_multihostmap_enabled = True"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:38(td)
msgid "(BoolOpt) Allows vdisk to multi host mapping"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:41(td)
msgid "storwize_svc_multipath_enabled = False"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:42(td)
msgid "(BoolOpt) Connect with multipath (FC only; iSCSI multipath is controlled by Nova)"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:45(td)
msgid "storwize_svc_npiv_compatibility_mode = False"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:46(td) ./doc/common/tables/cinder-conf-changes.xml:285(td)
msgid "(BoolOpt) Indicate whether svc driver is compatible for NPIV setup. If it is compatible, it will allow no wwpns being returned on get_conn_fc_wwpns during initialize_connection"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:49(td)
msgid "storwize_svc_stretched_cluster_partner = None"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:50(td) ./doc/common/tables/cinder-conf-changes.xml:289(td)
msgid "(StrOpt) If operating in stretched cluster mode, specify the name of the pool in which mirrored copies are stored.Example: \"pool2\""
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:53(td)
msgid "storwize_svc_vol_autoexpand = True"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:54(td)
msgid "(BoolOpt) Storage system autoexpand parameter for volumes (True/False)"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:57(td)
msgid "storwize_svc_vol_compression = False"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:58(td)
msgid "(BoolOpt) Storage system compression option for volumes"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:61(td)
msgid "storwize_svc_vol_easytier = True"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:62(td)
msgid "(BoolOpt) Enable Easy Tier for volumes"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:65(td)
msgid "storwize_svc_vol_grainsize = 256"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:66(td)
msgid "(IntOpt) Storage system grain size parameter for volumes (32/64/128/256)"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:69(td)
msgid "storwize_svc_vol_iogrp = 0"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:70(td)
msgid "(IntOpt) The I/O group in which to allocate volumes"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:73(td)
msgid "storwize_svc_vol_rsize = 2"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:74(td)
msgid "(IntOpt) Storage system space-efficiency parameter for volumes (percentage)"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:77(td)
msgid "storwize_svc_vol_warning = 0"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:78(td)
msgid "(IntOpt) Storage system threshold for volume capacity warnings (percentage)"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:81(td)
msgid "storwize_svc_volpool_name = volpool"
msgstr ""
#: ./doc/common/tables/cinder-storwize.xml:82(td)
msgid "(StrOpt) Storage system storage pool for volumes"
msgstr ""
#: ./doc/common/tables/cinder-hplefthand.xml:7(caption)
msgid "Description of HP LeftHand/StoreVirtual driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-hplefthand.xml:21(td)
msgid "hplefthand_api_url = None"
msgstr ""
#: ./doc/common/tables/cinder-hplefthand.xml:22(td)
msgid "(StrOpt) HP LeftHand WSAPI Server Url like https://&lt;LeftHand ip&gt;:8081/lhos"
msgstr ""
#: ./doc/common/tables/cinder-hplefthand.xml:25(td)
msgid "hplefthand_clustername = None"
msgstr ""
#: ./doc/common/tables/cinder-hplefthand.xml:26(td)
msgid "(StrOpt) HP LeftHand cluster name"
msgstr ""
#: ./doc/common/tables/cinder-hplefthand.xml:29(td)
msgid "hplefthand_debug = False"
msgstr ""
#: ./doc/common/tables/cinder-hplefthand.xml:30(td)
msgid "(BoolOpt) Enable HTTP debugging to LeftHand"
msgstr ""
#: ./doc/common/tables/cinder-hplefthand.xml:33(td)
msgid "hplefthand_iscsi_chap_enabled = False"
msgstr ""
#: ./doc/common/tables/cinder-hplefthand.xml:34(td)
msgid "(BoolOpt) Configure CHAP authentication for iSCSI connections (Default: Disabled)"
msgstr ""
#: ./doc/common/tables/cinder-hplefthand.xml:37(td)
msgid "hplefthand_password = None"
msgstr ""
#: ./doc/common/tables/cinder-hplefthand.xml:38(td)
msgid "(StrOpt) HP LeftHand Super user password"
msgstr ""
#: ./doc/common/tables/cinder-hplefthand.xml:41(td)
msgid "hplefthand_username = None"
msgstr ""
#: ./doc/common/tables/cinder-hplefthand.xml:42(td)
msgid "(StrOpt) HP LeftHand Super user username"
msgstr ""
#: ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:8(literal) ./doc/common/tables/swift-container-reconciler-filter-proxy-logging.xml:8(literal) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:8(literal)
msgid "[filter-proxy-logging]"
msgstr ""
#: ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:20(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:20(td)
msgid "access_log_address = /dev/log"
msgstr ""
#: ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:24(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:24(td)
msgid "access_log_facility = LOG_LOCAL0"
msgstr ""
#: ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:28(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:28(td)
msgid "access_log_headers = false"
msgstr ""
#: ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:32(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:32(td)
msgid "access_log_headers_only ="
msgstr ""
#: ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:33(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:33(td)
msgid "If access_log_headers is True and access_log_headers_only is set only these headers are logged. Multiple headers can be defined as comma separated list like this: access_log_headers_only = Host, X-Object-Meta-Mtime"
msgstr ""
#: ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:38(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:38(td)
msgid "access_log_level = INFO"
msgstr ""
#: ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:42(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:42(td)
msgid "access_log_name = swift"
msgstr ""
#: ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:46(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:46(td)
msgid "access_log_statsd_default_sample_rate = 1.0"
msgstr ""
#: ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:50(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:50(td)
msgid "access_log_statsd_host = localhost"
msgstr ""
#: ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:54(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:54(td)
msgid "access_log_statsd_metric_prefix ="
msgstr ""
#: ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:58(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:58(td)
msgid "access_log_statsd_port = 8125"
msgstr ""
#: ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:62(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:62(td)
msgid "access_log_statsd_sample_rate_factor = 1.0"
msgstr ""
#: ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:66(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:66(td)
msgid "access_log_udp_host ="
msgstr ""
#: ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:70(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:70(td)
msgid "access_log_udp_port = 514"
msgstr ""
#: ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:74(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:74(td)
msgid "log_statsd_valid_http_methods = GET,HEAD,POST,PUT,DELETE,COPY,OPTIONS"
msgstr ""
#: ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:78(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:78(td)
msgid "logged with access_log_headers = True."
msgstr ""
#: ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:82(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:82(td)
msgid "reveal_sensitive_prefix = 16"
msgstr ""
#: ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:83(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:83(td)
msgid "The X-Auth-Token is sensitive data. If revealed to an unauthorised person, they can now make requests against an account until the token expires. Set reveal_sensitive_prefix to the number of characters of the token that are logged. For example reveal_sensitive_prefix = 12 so only first 12 characters of the token are logged. Or, set to 0 to completely remove the token."
msgstr ""
#: ./doc/common/tables/swift-object-expirer-filter-proxy-logging.xml:92(td) ./doc/common/tables/swift-container-reconciler-filter-proxy-logging.xml:20(td) ./doc/common/tables/swift-proxy-server-filter-proxy-logging.xml:92(td)
msgid "use = egg:swift#proxy_logging"
msgstr ""
#: ./doc/common/tables/neutron-ipv6_ra.xml:7(caption)
msgid "Description of IPv6 router advertisement configuration options"
msgstr ""
#: ./doc/common/tables/neutron-ipv6_ra.xml:21(td)
msgid "ra_confs = $state_path/ra"
msgstr ""
#: ./doc/common/tables/glance-s3.xml:7(caption) ./doc/common/tables/nova-s3.xml:7(caption)
msgid "Description of S3 configuration options"
msgstr ""
#: ./doc/common/tables/glance-s3.xml:21(td)
msgid "s3_store_access_key = None"
msgstr ""
#: ./doc/common/tables/glance-s3.xml:22(td)
msgid "(StrOpt) The S3 query token access key."
msgstr ""
#: ./doc/common/tables/glance-s3.xml:25(td)
msgid "s3_store_bucket = None"
msgstr ""
#: ./doc/common/tables/glance-s3.xml:26(td)
msgid "(StrOpt) The S3 bucket to be used to store the Glance data."
msgstr ""
#: ./doc/common/tables/glance-s3.xml:29(td)
msgid "s3_store_bucket_url_format = subdomain"
msgstr ""
#: ./doc/common/tables/glance-s3.xml:30(td)
msgid "(StrOpt) The S3 calling format used to determine the bucket. Either subdomain or path can be used."
msgstr ""
#: ./doc/common/tables/glance-s3.xml:33(td)
msgid "s3_store_create_bucket_on_put = False"
msgstr ""
#: ./doc/common/tables/glance-s3.xml:34(td)
msgid "(BoolOpt) A boolean to determine if the S3 bucket should be created on upload if it does not exist or if an error should be returned to the user."
msgstr ""
#: ./doc/common/tables/glance-s3.xml:37(td)
msgid "s3_store_host = None"
msgstr ""
#: ./doc/common/tables/glance-s3.xml:38(td)
msgid "(StrOpt) The host where the S3 server is listening."
msgstr ""
#: ./doc/common/tables/glance-s3.xml:41(td)
msgid "s3_store_object_buffer_dir = None"
msgstr ""
#: ./doc/common/tables/glance-s3.xml:42(td)
msgid "(StrOpt) The local directory where uploads will be staged before they are transferred into S3."
msgstr ""
#: ./doc/common/tables/glance-s3.xml:45(td)
msgid "s3_store_secret_key = None"
msgstr ""
#: ./doc/common/tables/glance-s3.xml:46(td)
msgid "(StrOpt) The S3 query token secret key."
msgstr ""
#: ./doc/common/tables/nova-rootwrap.xml:21(td)
msgid "filters_path = /etc/nova/rootwrap.d,/usr/share/nova/rootwrap"
msgstr ""
#: ./doc/common/tables/heat-loadbalancer.xml:7(caption)
msgid "Description of load balancer configuration options"
msgstr ""
#: ./doc/common/tables/heat-loadbalancer.xml:21(td)
msgid "loadbalancer_template = None"
msgstr ""
#: ./doc/common/tables/heat-loadbalancer.xml:22(td)
msgid "(StrOpt) Custom template for the built-in loadbalancer nested stack."
msgstr ""
#: ./doc/common/tables/ceilometer-api.xml:21(td)
msgid "api_paste_config = api_paste.ini"
msgstr ""
#: ./doc/common/tables/ceilometer-api.xml:25(td)
msgid "pipeline_cfg_file = pipeline.yaml"
msgstr ""
#: ./doc/common/tables/ceilometer-api.xml:26(td)
msgid "(StrOpt) Configuration file for pipeline definition."
msgstr ""
#: ./doc/common/tables/ceilometer-api.xml:37(td)
msgid "reserved_metadata_length = 256"
msgstr ""
#: ./doc/common/tables/ceilometer-api.xml:38(td)
msgid "(IntOpt) Limit on length of reserved metadata values."
msgstr ""
#: ./doc/common/tables/ceilometer-api.xml:41(td)
msgid "reserved_metadata_namespace = metering."
msgstr ""
#: ./doc/common/tables/ceilometer-api.xml:42(td)
msgid "(ListOpt) List of metadata prefixes reserved for metering use."
msgstr ""
#: ./doc/common/tables/ceilometer-api.xml:45(th)
msgid "[api]"
msgstr ""
#: ./doc/common/tables/ceilometer-api.xml:48(td)
msgid "enable_reverse_dns_lookup = False"
msgstr ""
#: ./doc/common/tables/ceilometer-api.xml:53(td)
msgid "(StrOpt) The listen IP for the ceilometer API server."
msgstr ""
#: ./doc/common/tables/ceilometer-api.xml:56(td)
msgid "port = 8777"
msgstr ""
#: ./doc/common/tables/ceilometer-api.xml:57(td)
msgid "(IntOpt) The port for the ceilometer API server."
msgstr ""
#: ./doc/common/tables/ceilometer-exchange.xml:7(caption)
msgid "Description of exchange configuration options"
msgstr ""
#: ./doc/common/tables/ceilometer-exchange.xml:21(td)
msgid "cinder_control_exchange = cinder"
msgstr ""
#: ./doc/common/tables/ceilometer-exchange.xml:22(td)
msgid "(StrOpt) Exchange name for Cinder notifications."
msgstr ""
#: ./doc/common/tables/ceilometer-exchange.xml:29(td)
msgid "glance_control_exchange = glance"
msgstr ""
#: ./doc/common/tables/ceilometer-exchange.xml:30(td)
msgid "(StrOpt) Exchange name for Glance notifications."
msgstr ""
#: ./doc/common/tables/ceilometer-exchange.xml:33(td)
msgid "heat_control_exchange = heat"
msgstr ""
#: ./doc/common/tables/ceilometer-exchange.xml:34(td)
msgid "(StrOpt) Exchange name for Heat notifications"
msgstr ""
#: ./doc/common/tables/ceilometer-exchange.xml:37(td)
msgid "http_control_exchanges = ['nova', 'glance', 'neutron', 'cinder']"
msgstr ""
#: ./doc/common/tables/ceilometer-exchange.xml:38(td)
msgid "(MultiStrOpt) Exchanges name to listen for notifications."
msgstr ""
#: ./doc/common/tables/ceilometer-exchange.xml:41(td)
msgid "ironic_exchange = ironic"
msgstr ""
#: ./doc/common/tables/ceilometer-exchange.xml:45(td)
msgid "keystone_control_exchange = keystone"
msgstr ""
#: ./doc/common/tables/ceilometer-exchange.xml:49(td)
msgid "neutron_control_exchange = neutron"
msgstr ""
#: ./doc/common/tables/ceilometer-exchange.xml:50(td)
msgid "(StrOpt) Exchange name for Neutron notifications."
msgstr ""
#: ./doc/common/tables/ceilometer-exchange.xml:53(td)
msgid "nova_control_exchange = nova"
msgstr ""
#: ./doc/common/tables/ceilometer-exchange.xml:54(td)
msgid "(StrOpt) Exchange name for Nova notifications."
msgstr ""
#: ./doc/common/tables/ceilometer-exchange.xml:57(td)
msgid "sahara_control_exchange = sahara"
msgstr ""
#: ./doc/common/tables/ceilometer-exchange.xml:61(td)
msgid "sample_source = openstack"
msgstr ""
#: ./doc/common/tables/ceilometer-exchange.xml:62(td)
msgid "(StrOpt) Source for samples emitted on this instance."
msgstr ""
#: ./doc/common/tables/ceilometer-exchange.xml:65(td)
msgid "trove_control_exchange = trove"
msgstr ""
#: ./doc/common/tables/cinder-lvm.xml:7(caption)
msgid "Description of LVM configuration options"
msgstr ""
#: ./doc/common/tables/cinder-lvm.xml:21(td)
msgid "lvm_mirrors = 0"
msgstr ""
#: ./doc/common/tables/cinder-lvm.xml:22(td)
msgid "(IntOpt) If &gt;0, create LVs with multiple mirrors. Note that this requires lvm_mirrors + 2 PVs with available space"
msgstr ""
#: ./doc/common/tables/cinder-lvm.xml:25(td)
msgid "lvm_type = default"
msgstr ""
#: ./doc/common/tables/cinder-lvm.xml:26(td)
msgid "(StrOpt) Type of LVM volumes to deploy; (default or thin)"
msgstr ""
#: ./doc/common/tables/cinder-lvm.xml:29(td)
msgid "volume_group = cinder-volumes"
msgstr ""
#: ./doc/common/tables/cinder-lvm.xml:30(td)
msgid "(StrOpt) Name for the VG that will contain exported volumes"
msgstr ""
#: ./doc/common/tables/trove-dns.xml:7(caption)
msgid "Description of DNS configuration options"
msgstr ""
#: ./doc/common/tables/trove-dns.xml:21(td)
msgid "dns_account_id ="
msgstr ""
#: ./doc/common/tables/trove-dns.xml:25(td)
msgid "dns_auth_url ="
msgstr ""
#: ./doc/common/tables/trove-dns.xml:29(td)
msgid "dns_domain_id ="
msgstr ""
#: ./doc/common/tables/trove-dns.xml:33(td)
msgid "dns_domain_name ="
msgstr ""
#: ./doc/common/tables/trove-dns.xml:37(td)
msgid "dns_driver = trove.dns.driver.DnsDriver"
msgstr ""
#: ./doc/common/tables/trove-dns.xml:41(td)
msgid "dns_endpoint_url = 0.0.0.0"
msgstr ""
#: ./doc/common/tables/trove-dns.xml:45(td)
msgid "dns_hostname ="
msgstr ""
#: ./doc/common/tables/trove-dns.xml:49(td)
msgid "dns_instance_entry_factory = trove.dns.driver.DnsInstanceEntryFactory"
msgstr ""
#: ./doc/common/tables/trove-dns.xml:53(td)
msgid "dns_management_base_url ="
msgstr ""
#: ./doc/common/tables/trove-dns.xml:57(td)
msgid "dns_passkey ="
msgstr ""
#: ./doc/common/tables/trove-dns.xml:61(td)
msgid "dns_region ="
msgstr ""
#: ./doc/common/tables/trove-dns.xml:65(td)
msgid "dns_service_type ="
msgstr ""
#: ./doc/common/tables/trove-dns.xml:69(td)
msgid "dns_time_out = 120"
msgstr ""
#: ./doc/common/tables/trove-dns.xml:73(td)
msgid "dns_ttl = 300"
msgstr ""
#: ./doc/common/tables/trove-dns.xml:77(td)
msgid "dns_username ="
msgstr ""
#: ./doc/common/tables/trove-dns.xml:81(td)
msgid "trove_dns_support = False"
msgstr ""
#: ./doc/common/tables/sahara-amqp.xml:33(td)
msgid "notification_level = INFO"
msgstr ""
#: ./doc/common/tables/sahara-amqp.xml:34(td)
msgid "(StrOpt) Notification level for outgoing notifications"
msgstr ""
#: ./doc/common/tables/sahara-amqp.xml:37(td)
msgid "notification_publisher_id = None"
msgstr ""
#: ./doc/common/tables/sahara-amqp.xml:38(td)
msgid "(StrOpt) Notification publisher_id for outgoing notifications"
msgstr ""
#: ./doc/common/tables/nova-cells.xml:7(caption)
msgid "Description of cell configuration options"
msgstr ""
#: ./doc/common/tables/nova-cells.xml:33(td)
msgid "cells_config = None"
msgstr ""
#: ./doc/common/tables/nova-cells.xml:34(td)
msgid "(StrOpt) Configuration file from which to read cells configuration. If given, overrides reading cells from the database."
msgstr ""
#: ./doc/common/tables/nova-cells.xml:37(td)
msgid "db_check_interval = 60"
msgstr ""
#: ./doc/common/tables/nova-cells.xml:38(td)
msgid "(IntOpt) Interval, in seconds, for getting fresh cell information from the database."
msgstr ""
#: ./doc/common/tables/nova-cells.xml:41(td)
msgid "driver = nova.cells.rpc_driver.CellsRPCDriver"
msgstr ""
#: ./doc/common/tables/nova-cells.xml:42(td)
msgid "(StrOpt) Cells communication driver to use"
msgstr ""
#: ./doc/common/tables/nova-cells.xml:49(td)
msgid "instance_update_num_instances = 1"
msgstr ""
#: ./doc/common/tables/nova-cells.xml:50(td)
msgid "(IntOpt) Number of instances to update per periodic task run"
msgstr ""
#: ./doc/common/tables/nova-cells.xml:53(td)
msgid "instance_updated_at_threshold = 3600"
msgstr ""
#: ./doc/common/tables/nova-cells.xml:54(td)
msgid "(IntOpt) Number of seconds after an instance was updated or deleted to continue to update cells"
msgstr ""
#: ./doc/common/tables/nova-cells.xml:61(td)
msgid "max_hop_count = 10"
msgstr ""
#: ./doc/common/tables/nova-cells.xml:62(td)
msgid "(IntOpt) Maximum number of hops for cells routing."
msgstr ""
#: ./doc/common/tables/nova-cells.xml:69(td)
msgid "mute_weight_multiplier = -10.0"
msgstr ""
#: ./doc/common/tables/nova-cells.xml:70(td)
msgid "(FloatOpt) Multiplier used to weigh mute children. (The value should be negative.)"
msgstr ""
#: ./doc/common/tables/nova-cells.xml:73(td)
msgid "mute_weight_value = 1000.0"
msgstr ""
#: ./doc/common/tables/nova-cells.xml:74(td)
msgid "(FloatOpt) Weight value assigned to mute children. (The value should be positive.)"
msgstr ""
#: ./doc/common/tables/nova-cells.xml:81(td)
msgid "offset_weight_multiplier = 1.0"
msgstr ""
#: ./doc/common/tables/nova-cells.xml:82(td)
msgid "(FloatOpt) Multiplier used to weigh offset weigher."
msgstr ""
#: ./doc/common/tables/trove-volume.xml:7(caption)
msgid "Description of volume configuration options"
msgstr ""
#: ./doc/common/tables/trove-volume.xml:21(td)
msgid "block_device_mapping = vdb"
msgstr ""
#: ./doc/common/tables/trove-volume.xml:25(td)
msgid "cinder_service_type = volumev2"
msgstr ""
#: ./doc/common/tables/trove-volume.xml:29(td)
msgid "cinder_url = None"
msgstr ""
#: ./doc/common/tables/trove-volume.xml:33(td)
msgid "cinder_volume_type = None"
msgstr ""
#: ./doc/common/tables/trove-volume.xml:34(td) ./doc/common/tables/trove-conf-changes.xml:29(td)
msgid "(StrOpt) Volume type to use when provisioning a cinder volume."
msgstr ""
#: ./doc/common/tables/trove-volume.xml:41(td)
msgid "trove_volume_support = True"
msgstr ""
#: ./doc/common/tables/trove-volume.xml:45(td)
msgid "volume_format_timeout = 120"
msgstr ""
#: ./doc/common/tables/trove-volume.xml:49(td)
msgid "volume_fstype = ext3"
msgstr ""
#: ./doc/common/tables/trove-volume.xml:53(td)
msgid "volume_time_out = 60"
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:7(caption)
msgid "Description of quotas configuration options"
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:21(td)
msgid "max_routes = 30"
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:22(td)
msgid "(IntOpt) Maximum number of routes"
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:25(th)
msgid "[QUOTAS]"
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:28(td)
msgid "default_quota = -1"
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:29(td)
msgid "(IntOpt) Default number of resource allowed per tenant. A negative value means unlimited."
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:32(td)
msgid "quota_driver = neutron.db.quota_db.DbQuotaDriver"
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:36(td)
msgid "quota_firewall = 1"
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:37(td)
msgid "(IntOpt) Number of firewalls allowed per tenant. A negative value means unlimited."
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:40(td)
msgid "quota_firewall_policy = 1"
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:41(td)
msgid "(IntOpt) Number of firewall policies allowed per tenant. A negative value means unlimited."
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:44(td)
msgid "quota_firewall_rule = 100"
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:45(td)
msgid "(IntOpt) Number of firewall rules allowed per tenant. A negative value means unlimited."
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:48(td)
msgid "quota_floatingip = 50"
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:49(td)
msgid "(IntOpt) Number of floating IPs allowed per tenant. A negative value means unlimited."
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:52(td)
msgid "quota_health_monitor = -1"
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:53(td)
msgid "(IntOpt) Number of health monitors allowed per tenant. A negative value means unlimited."
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:56(td)
msgid "quota_items = network, subnet, port"
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:57(td)
msgid "(ListOpt) Resource name(s) that are supported in quota features"
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:60(td)
msgid "quota_member = -1"
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:61(td)
msgid "(IntOpt) Number of pool members allowed per tenant. A negative value means unlimited."
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:64(td)
msgid "quota_network = 10"
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:65(td)
msgid "(IntOpt) Number of networks allowed per tenant.A negative value means unlimited."
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:68(td)
msgid "quota_network_gateway = 5"
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:69(td)
msgid "(IntOpt) Number of network gateways allowed per tenant, -1 for unlimited"
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:72(td)
msgid "quota_packet_filter = 100"
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:73(td)
msgid "(IntOpt) Number of packet_filters allowed per tenant, -1 for unlimited"
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:76(td)
msgid "quota_pool = 10"
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:77(td)
msgid "(IntOpt) Number of pools allowed per tenant. A negative value means unlimited."
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:80(td)
msgid "quota_port = 50"
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:81(td)
msgid "(IntOpt) Number of ports allowed per tenant. A negative value means unlimited."
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:84(td)
msgid "quota_router = 10"
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:85(td)
msgid "(IntOpt) Number of routers allowed per tenant. A negative value means unlimited."
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:88(td)
msgid "quota_security_group = 10"
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:89(td)
msgid "(IntOpt) Number of security groups allowed per tenant. A negative value means unlimited."
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:92(td)
msgid "quota_security_group_rule = 100"
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:93(td)
msgid "(IntOpt) Number of security rules allowed per tenant. A negative value means unlimited."
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:96(td)
msgid "quota_subnet = 10"
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:97(td)
msgid "(IntOpt) Number of subnets allowed per tenant, A negative value means unlimited."
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:100(td)
msgid "quota_vip = 10"
msgstr ""
#: ./doc/common/tables/neutron-quotas.xml:101(td)
msgid "(IntOpt) Number of vips allowed per tenant. A negative value means unlimited."
msgstr ""
#: ./doc/common/tables/cinder-storage_nfs.xml:7(caption)
msgid "Description of NFS storage configuration options"
msgstr ""
#: ./doc/common/tables/cinder-storage_nfs.xml:22(td)
msgid "(StrOpt) Mount options passed to the nfs client. See section of the nfs man page for details."
msgstr ""
#: ./doc/common/tables/cinder-storage_nfs.xml:26(td)
msgid "(StrOpt) Base dir containing mount points for nfs shares."
msgstr ""
#: ./doc/common/tables/cinder-storage_nfs.xml:29(td)
msgid "nfs_oversub_ratio = 1.0"
msgstr ""
#: ./doc/common/tables/cinder-storage_nfs.xml:30(td) ./doc/common/tables/cinder-conf-changes.xml:253(td)
msgid "(FloatOpt) This will compare the allocated to available space on the volume destination. If the ratio exceeds this number, the destination will no longer be valid."
msgstr ""
#: ./doc/common/tables/cinder-storage_nfs.xml:33(td)
msgid "nfs_shares_config = /etc/cinder/nfs_shares"
msgstr ""
#: ./doc/common/tables/cinder-storage_nfs.xml:34(td) ./doc/common/tables/cinder-nexenta_nfs.xml:30(td)
msgid "(StrOpt) File with the list of available nfs shares"
msgstr ""
#: ./doc/common/tables/cinder-storage_nfs.xml:37(td)
msgid "nfs_sparsed_volumes = True"
msgstr ""
#: ./doc/common/tables/cinder-storage_nfs.xml:38(td) ./doc/common/tables/cinder-storage_glusterfs.xml:34(td)
msgid "(BoolOpt) Create volumes as sparsed files which take no space.If set to False volume is created as regular file.In such case volume creation takes a lot of time."
msgstr ""
#: ./doc/common/tables/cinder-storage_nfs.xml:41(td)
msgid "nfs_used_ratio = 0.95"
msgstr ""
#: ./doc/common/tables/cinder-storage_nfs.xml:42(td) ./doc/common/tables/cinder-conf-changes.xml:265(td)
msgid "(FloatOpt) Percent of ACTUAL usage of the underlying volume before no new volumes can be allocated to the volume destination."
msgstr ""
#: ./doc/common/tables/cinder-hds-hnas.xml:7(caption)
msgid "Description of HDS HNAS iSCSI and NFS driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-hds-hnas.xml:21(td)
msgid "hds_hnas_iscsi_config_file = /opt/hds/hnas/cinder_iscsi_conf.xml"
msgstr ""
#: ./doc/common/tables/cinder-hds-hnas.xml:22(td) ./doc/common/tables/cinder-conf-changes.xml:89(td)
msgid "(StrOpt) Configuration file for HDS iSCSI cinder plugin"
msgstr ""
#: ./doc/common/tables/cinder-hds-hnas.xml:25(td)
msgid "hds_hnas_nfs_config_file = /opt/hds/hnas/cinder_nfs_conf.xml"
msgstr ""
#: ./doc/common/tables/cinder-hds-hnas.xml:26(td) ./doc/common/tables/cinder-conf-changes.xml:93(td)
msgid "(StrOpt) Configuration file for HDS NFS cinder plugin"
msgstr ""
#: ./doc/common/tables/heat-api.xml:21(td)
msgid "action_retry_limit = 5"
msgstr ""
#: ./doc/common/tables/heat-api.xml:29(td)
msgid "heat_stack_user_role = heat_stack_user"
msgstr ""
#: ./doc/common/tables/heat-api.xml:30(td)
msgid "(StrOpt) Keystone role for heat template-defined users."
msgstr ""
#: ./doc/common/tables/heat-api.xml:37(td) ./doc/common/tables/heat-cloudwatch_api.xml:21(td)
msgid "heat_watch_server_url ="
msgstr ""
#: ./doc/common/tables/heat-api.xml:38(td) ./doc/common/tables/heat-cloudwatch_api.xml:22(td)
msgid "(StrOpt) URL of the Heat CloudWatch server."
msgstr ""
#: ./doc/common/tables/heat-api.xml:41(td)
msgid "max_json_body_size = 1048576"
msgstr ""
#: ./doc/common/tables/heat-api.xml:42(td)
msgid "(IntOpt) Maximum raw byte size of JSON request body. Should be larger than max_template_size."
msgstr ""
#: ./doc/common/tables/heat-api.xml:45(td)
msgid "num_engine_workers = 1"
msgstr ""
#: ./doc/common/tables/heat-api.xml:57(td)
msgid "secure_proxy_ssl_header = X-Forwarded-Proto"
msgstr ""
#: ./doc/common/tables/heat-api.xml:58(td)
msgid "(StrOpt) The HTTP Header that will be used to determine which the original request protocol scheme was, even if it was removed by an SSL terminator proxy."
msgstr ""
#: ./doc/common/tables/heat-api.xml:61(td)
msgid "stack_action_timeout = 3600"
msgstr ""
#: ./doc/common/tables/heat-api.xml:62(td)
msgid "(IntOpt) Timeout in seconds for stack action (ie. create or update)."
msgstr ""
#: ./doc/common/tables/heat-api.xml:65(td)
msgid "stack_domain_admin = None"
msgstr ""
#: ./doc/common/tables/heat-api.xml:66(td)
msgid "(StrOpt) Keystone username, a user with roles sufficient to manage users and projects in the stack_user_domain."
msgstr ""
#: ./doc/common/tables/heat-api.xml:69(td)
msgid "stack_domain_admin_password = None"
msgstr ""
#: ./doc/common/tables/heat-api.xml:70(td)
msgid "(StrOpt) Keystone password for stack_domain_admin user."
msgstr ""
#: ./doc/common/tables/heat-api.xml:73(td)
msgid "stack_user_domain_id = None"
msgstr ""
#: ./doc/common/tables/heat-api.xml:77(td)
msgid "stack_user_domain_name = None"
msgstr ""
#: ./doc/common/tables/heat-api.xml:81(td)
msgid "trusts_delegated_roles = heat_stack_owner"
msgstr ""
#: ./doc/common/tables/heat-api.xml:82(td)
msgid "(ListOpt) Subset of trustor roles to be delegated to heat."
msgstr ""
#: ./doc/common/tables/heat-api.xml:85(th)
msgid "[auth_password]"
msgstr ""
#: ./doc/common/tables/heat-api.xml:88(td) ./doc/common/tables/heat-api.xml:99(td)
msgid "allowed_auth_uris ="
msgstr ""
#: ./doc/common/tables/heat-api.xml:89(td) ./doc/common/tables/heat-api.xml:100(td)
msgid "(ListOpt) Allowed keystone endpoints for auth_uri when multi_cloud is enabled. At least one endpoint needs to be specified."
msgstr ""
#: ./doc/common/tables/heat-api.xml:92(td) ./doc/common/tables/heat-api.xml:107(td)
msgid "multi_cloud = False"
msgstr ""
#: ./doc/common/tables/heat-api.xml:93(td) ./doc/common/tables/heat-api.xml:108(td)
msgid "(BoolOpt) Allow orchestration of multiple clouds."
msgstr ""
#: ./doc/common/tables/heat-api.xml:96(th)
msgid "[ec2authtoken]"
msgstr ""
#: ./doc/common/tables/heat-api.xml:104(td)
msgid "(StrOpt) Authentication Endpoint URI."
msgstr ""
#: ./doc/common/tables/heat-api.xml:111(th)
msgid "[heat_api]"
msgstr ""
#: ./doc/common/tables/heat-api.xml:122(td)
msgid "bind_port = 8004"
msgstr ""
#: ./doc/common/tables/heat-api.xml:146(td)
msgid "(StrOpt) The API paste config file to use."
msgstr ""
#: ./doc/common/tables/heat-api.xml:149(td) ./doc/common/tables/glance-paste.xml:25(td)
msgid "flavor = None"
msgstr ""
#: ./doc/common/tables/heat-api.xml:150(td)
msgid "(StrOpt) The flavor to use."
msgstr ""
#. Warning: Do not edit this file. It is automatically generated and your changes will be overwritten. The tool to do so lives in the openstack-doc-tools repository.
#: ./doc/common/tables/trove-conf-changes.xml:4(title)
msgid "New, updated and deprecated options in Juno for Database Service"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:16(td)
msgid "[DEFAULT] bind_host = 0.0.0.0"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:20(td)
msgid "[DEFAULT] black_list_regex = None"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:21(td) ./doc/common/tables/trove-conf-changes.xml:81(td) ./doc/common/tables/trove-conf-changes.xml:101(td) ./doc/common/tables/trove-conf-changes.xml:113(td) ./doc/common/tables/trove-conf-changes.xml:117(td) ./doc/common/tables/trove-conf-changes.xml:125(td) ./doc/common/tables/trove-conf-changes.xml:157(td) ./doc/common/tables/trove-conf-changes.xml:189(td) ./doc/common/tables/trove-conf-changes.xml:193(td) ./doc/common/tables/trove-conf-changes.xml:213(td) ./doc/common/tables/trove-conf-changes.xml:225(td) ./doc/common/tables/trove-conf-changes.xml:229(td) ./doc/common/tables/trove-conf-changes.xml:249(td) ./doc/common/tables/trove-conf-changes.xml:257(td) ./doc/common/tables/trove-conf-changes.xml:265(td) ./doc/common/tables/trove-conf-changes.xml:281(td) ./doc/common/tables/trove-conf-changes.xml:301(td)
msgid "(StrOpt) None"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:24(td)
msgid "[DEFAULT] cinder_service_type = volumev2"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:28(td)
msgid "[DEFAULT] cinder_volume_type = None"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:32(td)
msgid "[DEFAULT] cluster_delete_time_out = 180"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:33(td) ./doc/common/tables/trove-conf-changes.xml:41(td) ./doc/common/tables/trove-conf-changes.xml:57(td)
msgid "(IntOpt) None"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:36(td)
msgid "[DEFAULT] cluster_usage_timeout = 675"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:37(td) ./doc/common/tables/trove-cluster.xml:26(td)
msgid "(IntOpt) Timeout to wait for a cluster to become active."
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:40(td)
msgid "[DEFAULT] clusters_page_size = 20"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:44(td)
msgid "[DEFAULT] conductor_manager = trove.conductor.manager.Manager"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:48(td)
msgid "[DEFAULT] heat_service_type = orchestration"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:52(td)
msgid "[DEFAULT] hostname_require_valid_ip = True"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:56(td)
msgid "[DEFAULT] http_mgmt_post_rate = 200"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:60(td)
msgid "[DEFAULT] network_driver = trove.network.nova.NovaNetwork"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:64(td)
msgid "[DEFAULT] neutron_service_type = network"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:68(td)
msgid "[DEFAULT] neutron_url = None"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:72(td)
msgid "[DEFAULT] nova_compute_service_type = compute"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:76(td)
msgid "[DEFAULT] os_region_name = None"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:80(td)
msgid "[DEFAULT] remote_neutron_client = trove.common.remote.neutron_client"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:84(td)
msgid "[DEFAULT] swift_service_type = object-store"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:88(td)
msgid "[DEFAULT] usage_timeout = 600"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:92(td)
msgid "[DEFAULT] use_nova_server_config_drive = False"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:93(td) ./doc/common/tables/trove-taskmanager.xml:74(td)
msgid "(BoolOpt) Use config drive for file injection when booting instance."
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:100(td)
msgid "[cassandra] device_path = /dev/vdb"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:104(td)
msgid "[cassandra] replication_strategy = None"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:108(td)
msgid "[cassandra] volume_support = True"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:112(td)
msgid "[couchbase] backup_namespace = trove.guestagent.strategies.backup.couchbase_impl"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:116(td)
msgid "[couchbase] device_path = /dev/vdb"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:120(td)
msgid "[couchbase] replication_strategy = None"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:124(td)
msgid "[couchbase] restore_namespace = trove.guestagent.strategies.restore.couchbase_impl"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:128(td)
msgid "[couchbase] root_on_create = True"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:132(td)
msgid "[couchbase] volume_support = True"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:148(td)
msgid "[mongodb] api_strategy = trove.common.strategies.mongodb.api.MongoDbAPIStrategy"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:149(td) ./doc/common/tables/trove-db_mongodb.xml:22(td)
msgid "(StrOpt) Class that implements datastore-specific API logic."
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:152(td)
msgid "[mongodb] cluster_support = True"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:153(td) ./doc/common/tables/trove-db_mongodb.xml:30(td)
msgid "(BoolOpt) Enable clusters to be created and managed."
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:156(td)
msgid "[mongodb] device_path = /dev/vdb"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:160(td)
msgid "[mongodb] guestagent_strategy = trove.common.strategies.mongodb.guestagent.MongoDbGuestAgentStrategy"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:161(td) ./doc/common/tables/trove-db_mongodb.xml:38(td)
msgid "(StrOpt) Class that implements datastore-specific guest agent API logic."
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:164(td)
msgid "[mongodb] num_config_servers_per_cluster = 3"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:165(td) ./doc/common/tables/trove-db_mongodb.xml:46(td)
msgid "(IntOpt) The number of config servers to create per cluster."
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:168(td)
msgid "[mongodb] num_query_routers_per_cluster = 1"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:169(td) ./doc/common/tables/trove-db_mongodb.xml:50(td)
msgid "(IntOpt) The number of query routers (mongos) to create per cluster."
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:172(td)
msgid "[mongodb] replication_strategy = None"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:176(td)
msgid "[mongodb] taskmanager_strategy = trove.common.strategies.mongodb.taskmanager.MongoDbTaskManagerStrategy"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:177(td) ./doc/common/tables/trove-db_mongodb.xml:58(td)
msgid "(StrOpt) Class that implements datastore-specific task manager logic."
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:180(td)
msgid "[mongodb] volume_support = True"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:184(td)
msgid "[mysql] backup_incremental_strategy = {'InnoBackupEx': 'InnoBackupExIncremental'}"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:188(td)
msgid "[mysql] backup_namespace = trove.guestagent.strategies.backup.mysql_impl"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:192(td)
msgid "[mysql] device_path = /dev/vdb"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:196(td)
msgid "[mysql] replication_namespace = trove.guestagent.strategies.replication.mysql_binlog"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:200(td)
msgid "[mysql] replication_password = NETOU7897NNLOU"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:204(td)
msgid "[mysql] replication_strategy = MysqlBinlogReplication"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:208(td)
msgid "[mysql] replication_user = slave_user"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:212(td)
msgid "[mysql] restore_namespace = trove.guestagent.strategies.restore.mysql_impl"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:216(td)
msgid "[mysql] volume_support = True"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:220(td)
msgid "[percona] backup_incremental_strategy = {'InnoBackupEx': 'InnoBackupExIncremental'}"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:224(td)
msgid "[percona] backup_namespace = trove.guestagent.strategies.backup.mysql_impl"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:228(td)
msgid "[percona] device_path = /dev/vdb"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:232(td)
msgid "[percona] replication_namespace = trove.guestagent.strategies.replication.mysql_binlog"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:236(td)
msgid "[percona] replication_password = NETOU7897NNLOU"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:240(td)
msgid "[percona] replication_strategy = MysqlBinlogReplication"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:244(td)
msgid "[percona] replication_user = slave_user"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:248(td)
msgid "[percona] restore_namespace = trove.guestagent.strategies.restore.mysql_impl"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:252(td)
msgid "[percona] volume_support = True"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:256(td)
msgid "[postgresql] backup_namespace = trove.guestagent.strategies.backup.postgresql_impl"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:260(td)
msgid "[postgresql] backup_strategy = PgDump"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:264(td)
msgid "[postgresql] device_path = /dev/vdb"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:268(td)
msgid "[postgresql] ignore_dbs = ['postgres']"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:269(td) ./doc/common/tables/trove-conf-changes.xml:273(td)
msgid "(ListOpt) None"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:272(td)
msgid "[postgresql] ignore_users = ['os_admin', 'postgres', 'root']"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:276(td)
msgid "[postgresql] mount_point = /var/lib/postgresql"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:280(td)
msgid "[postgresql] restore_namespace = trove.guestagent.strategies.restore.postgresql_impl"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:284(td)
msgid "[postgresql] root_on_create = False"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:288(td)
msgid "[postgresql] tcp_ports = ['5432']"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:292(td)
msgid "[postgresql] udp_ports = []"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:296(td)
msgid "[postgresql] volume_support = True"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:300(td)
msgid "[redis] device_path = None"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:304(td)
msgid "[redis] replication_strategy = None"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:308(td)
msgid "[redis] volume_support = False"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:325(td)
msgid "[DEFAULT] agent_call_high_timeout"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:327(td)
msgid "1000"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:330(td)
msgid "[DEFAULT] cinder_url"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:331(td)
msgid "http://localhost:8776/v2"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:337(td)
msgid "amqp=WARN, amqplib=WARN, boto=WARN, qpid=WARN, sqlalchemy=WARN, suds=INFO, oslo.messaging=INFO, iso8601=WARN, requests.packages.urllib3.connectionpool=WARN, urllib3.connectionpool=WARN, websocket=WARN"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:340(td)
msgid "[DEFAULT] heat_url"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:341(td)
msgid "http://localhost:8004/v1"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:345(td)
msgid "[DEFAULT] nova_compute_url"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:346(td)
msgid "http://localhost:8774/v2"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:350(td)
msgid "[DEFAULT] swift_url"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:351(td) ./doc/common/tables/cinder-conf-changes.xml:502(td)
msgid "http://localhost:8080/v1/AUTH_"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:355(td)
msgid "[DEFAULT] trove_conductor_workers"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:360(td)
msgid "[DEFAULT] update_status_on_fail"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:365(td)
msgid "[couchbase] backup_strategy"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:367(td)
msgid "CbBackup"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:386(td)
msgid "[DEFAULT] hostname_require_ipv4"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:387(td)
msgid "[DEFAULT] hostname_require_valid_ip"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:390(td) ./doc/common/tables/trove-conf-changes.xml:394(td)
msgid "[DEFAULT] backup_incremental_strategy"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:391(td)
msgid "[percona] backup_incremental_strategy"
msgstr ""
#: ./doc/common/tables/trove-conf-changes.xml:395(td)
msgid "[mysql] backup_incremental_strategy"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-tempurl.xml:8(literal)
msgid "[filter-tempurl]"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-tempurl.xml:20(td)
msgid "incoming_allow_headers ="
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-tempurl.xml:21(td)
msgid "Headers allowed as exceptions to incoming_remove_headers. Simply a whitespace delimited list of header names and names can optionally end with '*' to indicate a prefix match."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-tempurl.xml:26(td)
msgid "incoming_remove_headers = x-timestamp"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-tempurl.xml:27(td)
msgid "Headers to remove from incoming requests. Simply a whitespace delimited list of header names and names can optionally end with '*' to indicate a prefix match."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-tempurl.xml:31(td)
msgid "methods = GET HEAD PUT POST DELETE"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-tempurl.xml:32(td)
msgid "HTTP methods allowed with Temporary URLs"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-tempurl.xml:35(td)
msgid "outgoing_allow_headers = x-object-meta-public-*"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-tempurl.xml:36(td)
msgid "Headers allowed as exceptions to outgoing_allow_headers. Simply a whitespace delimited list of header names and names can optionally end with '*' to indicate a prefix match."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-tempurl.xml:40(td)
msgid "outgoing_remove_headers = x-object-meta-*"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-tempurl.xml:41(td)
msgid "Headers to remove from outgoing responses. Simply a whitespace delimited list of header names and names can optionally end with '*' to indicate a prefix match."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-tempurl.xml:46(td)
msgid "use = egg:swift#tempurl"
msgstr ""
#: ./doc/common/tables/heat-clients_ceilometer.xml:7(caption)
msgid "Description of ceilometer clients configuration options"
msgstr ""
#: ./doc/common/tables/heat-clients_ceilometer.xml:18(th)
msgid "[clients_ceilometer]"
msgstr ""
#: ./doc/common/tables/neutron-ryu.xml:7(caption)
msgid "Description of RYU configuration options"
msgstr ""
#: ./doc/common/tables/neutron-ryu.xml:21(td)
msgid "wsapi_host ="
msgstr ""
#: ./doc/common/tables/neutron-ryu.xml:22(td)
msgid "(StrOpt) webapp listen host"
msgstr ""
#: ./doc/common/tables/neutron-ryu.xml:25(td)
msgid "wsapi_port = 8080"
msgstr ""
#: ./doc/common/tables/neutron-ryu.xml:26(td)
msgid "(IntOpt) webapp listen port"
msgstr ""
#: ./doc/common/tables/neutron-ryu.xml:32(td)
msgid "openflow_rest_api = 127.0.0.1:8080"
msgstr ""
#: ./doc/common/tables/neutron-ryu.xml:33(td)
msgid "(StrOpt) OpenFlow REST API location."
msgstr ""
#: ./doc/common/tables/neutron-ryu.xml:36(td)
msgid "ovsdb_interface = None"
msgstr ""
#: ./doc/common/tables/neutron-ryu.xml:37(td)
msgid "(StrOpt) OVSDB interface to connect to."
msgstr ""
#: ./doc/common/tables/neutron-ryu.xml:40(td)
msgid "ovsdb_ip = None"
msgstr ""
#: ./doc/common/tables/neutron-ryu.xml:41(td)
msgid "(StrOpt) OVSDB IP to connect to."
msgstr ""
#: ./doc/common/tables/neutron-ryu.xml:44(td)
msgid "ovsdb_port = 6634"
msgstr ""
#: ./doc/common/tables/neutron-ryu.xml:45(td)
msgid "(IntOpt) OVSDB port to connect to."
msgstr ""
#: ./doc/common/tables/neutron-ryu.xml:48(td)
msgid "tunnel_interface = None"
msgstr ""
#: ./doc/common/tables/neutron-ryu.xml:49(td)
msgid "(StrOpt) Tunnel interface to use."
msgstr ""
#: ./doc/common/tables/neutron-ryu.xml:52(td)
msgid "tunnel_ip = None"
msgstr ""
#: ./doc/common/tables/neutron-ryu.xml:53(td)
msgid "(StrOpt) Tunnel IP to use."
msgstr ""
#: ./doc/common/tables/neutron-ryu.xml:56(td)
msgid "tunnel_key_max = 16777215"
msgstr ""
#: ./doc/common/tables/neutron-ryu.xml:57(td)
msgid "(IntOpt) Maximum tunnel ID to use."
msgstr ""
#: ./doc/common/tables/neutron-ryu.xml:60(td)
msgid "tunnel_key_min = 1"
msgstr ""
#: ./doc/common/tables/neutron-ryu.xml:61(td)
msgid "(IntOpt) Minimum tunnel ID to use."
msgstr ""
#: ./doc/common/tables/cinder-swift.xml:7(caption) ./doc/common/tables/glance-swift.xml:7(caption) ./doc/common/tables/ceilometer-swift.xml:7(caption) ./doc/common/tables/trove-swift.xml:7(caption)
msgid "Description of swift configuration options"
msgstr ""
#: ./doc/common/tables/cinder-swift.xml:21(td)
msgid "backup_swift_auth_version = 1"
msgstr ""
#: ./doc/common/tables/cinder-swift.xml:22(td) ./doc/common/tables/cinder-conf-changes.xml:21(td)
msgid "(StrOpt) Swift authentication version. Specify \"1\" for auth 1.0, or \"2\" for auth 2.0"
msgstr ""
#: ./doc/common/tables/cinder-swift.xml:25(td)
msgid "backup_swift_tenant = None"
msgstr ""
#: ./doc/common/tables/cinder-swift.xml:26(td) ./doc/common/tables/cinder-conf-changes.xml:25(td)
msgid "(StrOpt) Swift tenant/account name. Required when connecting to an auth 2.0 system"
msgstr ""
#: ./doc/common/tables/swift-rsyncd-account.xml:8(literal)
msgid "[account]"
msgstr ""
#: ./doc/common/tables/swift-rsyncd-account.xml:20(td)
msgid "lock file = /var/lock/account.lock"
msgstr ""
#: ./doc/common/tables/swift-rsyncd-account.xml:24(td)
msgid "max connections = 2"
msgstr ""
#: ./doc/common/tables/neutron-metering_agent.xml:7(caption)
msgid "Description of metering agent configuration options"
msgstr ""
#: ./doc/common/tables/neutron-metering_agent.xml:21(td)
msgid "driver = neutron.services.metering.drivers.noop.noop_driver.NoopMeteringDriver"
msgstr ""
#: ./doc/common/tables/neutron-metering_agent.xml:22(td)
msgid "(StrOpt) Metering driver"
msgstr ""
#: ./doc/common/tables/neutron-metering_agent.xml:25(td)
msgid "measure_interval = 30"
msgstr ""
#: ./doc/common/tables/neutron-metering_agent.xml:26(td)
msgid "(IntOpt) Interval between two metering measures"
msgstr ""
#: ./doc/common/tables/neutron-metering_agent.xml:32(td)
msgid "report_interval = 30"
msgstr ""
#: ./doc/common/tables/neutron-metering_agent.xml:33(td)
msgid "(FloatOpt) 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."
msgstr ""
#: ./doc/common/tables/heat-clients_glance.xml:7(caption)
msgid "Description of glance clients configuration options"
msgstr ""
#: ./doc/common/tables/heat-clients_glance.xml:18(th)
msgid "[clients_glance]"
msgstr ""
#: ./doc/common/tables/cinder-storage_glusterfs.xml:7(caption)
msgid "Description of GlusterFS storage configuration options"
msgstr ""
#: ./doc/common/tables/cinder-storage_glusterfs.xml:22(td)
msgid "(StrOpt) Base dir containing mount points for gluster shares."
msgstr ""
#: ./doc/common/tables/cinder-storage_glusterfs.xml:25(td)
msgid "glusterfs_qcow2_volumes = False"
msgstr ""
#: ./doc/common/tables/cinder-storage_glusterfs.xml:26(td)
msgid "(BoolOpt) Create volumes as QCOW2 files rather than raw files."
msgstr ""
#: ./doc/common/tables/cinder-storage_glusterfs.xml:29(td)
msgid "glusterfs_shares_config = /etc/cinder/glusterfs_shares"
msgstr ""
#: ./doc/common/tables/cinder-storage_glusterfs.xml:30(td)
msgid "(StrOpt) File with the list of available gluster shares"
msgstr ""
#: ./doc/common/tables/cinder-storage_glusterfs.xml:33(td)
msgid "glusterfs_sparsed_volumes = True"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:21(td)
msgid "compute_api_class = cinder.compute.nova.API"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:22(td)
msgid "(StrOpt) The full class name of the compute API class to use"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:25(td)
msgid "consistencygroup_api_class = cinder.consistencygroup.api.API"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:26(td) ./doc/common/tables/cinder-conf-changes.xml:33(td)
msgid "(StrOpt) The full class name of the consistencygroup API class"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:29(td)
msgid "default_availability_zone = None"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:30(td)
msgid "(StrOpt) Default availability zone for new volumes. If not set, the storage_availability_zone option value is used as the default for new volumes."
msgstr ""
#: ./doc/common/tables/cinder-common.xml:33(td)
msgid "default_volume_type = None"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:34(td)
msgid "(StrOpt) Default volume type to use"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:38(td) ./doc/common/tables/neutron-common.xml:130(td) ./doc/common/tables/trove-debug.xml:34(td)
msgid "(BoolOpt) Whether to disable inter-process locks"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:41(td) ./doc/common/tables/nova-api.xml:25(td)
msgid "enable_new_services = True"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:42(td) ./doc/common/tables/nova-api.xml:26(td)
msgid "(BoolOpt) Services to be added to the available pool on create"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:46(td)
msgid "(StrOpt) Name of this node. This can be an opaque identifier. It is not necessarily a host name, FQDN, or IP address."
msgstr ""
#: ./doc/common/tables/cinder-common.xml:49(td)
msgid "iet_conf = /etc/iet/ietd.conf"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:50(td)
msgid "(StrOpt) IET configuration file"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:53(td)
msgid "lio_initiator_iqns ="
msgstr ""
#: ./doc/common/tables/cinder-common.xml:54(td)
msgid "(StrOpt) Comma-separated list of initiator IQNs allowed to connect to the iSCSI target. (From Nova compute nodes.)"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:58(td)
msgid "(StrOpt) Directory to use for lock files. Default to a temp directory"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:62(td)
msgid "(BoolOpt) Enable monkey patching"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:65(td)
msgid "monkey_patch_modules ="
msgstr ""
#: ./doc/common/tables/cinder-common.xml:73(td)
msgid "no_snapshot_gb_quota = False"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:74(td)
msgid "(BoolOpt) Whether snapshots count against GigaByte quota"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:77(td)
msgid "num_shell_tries = 3"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:78(td)
msgid "(IntOpt) Number of times to attempt to run flakey shell commands"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:82(td)
msgid "(IntOpt) Range, in seconds, to randomly delay when starting the periodic task scheduler to reduce stampeding. (Disable by setting to 0)"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:86(td)
msgid "(IntOpt) Interval, in seconds, between running periodic tasks"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:97(td)
msgid "replication_api_class = cinder.replication.api.API"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:98(td) ./doc/common/tables/cinder-conf-changes.xml:233(td)
msgid "(StrOpt) The full class name of the volume replication API class"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:102(td)
msgid "(IntOpt) Interval, in seconds, between nodes reporting state to datastore"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:105(td)
msgid "reserved_percentage = 0"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:106(td)
msgid "(IntOpt) The percentage of backend capacity is reserved"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:109(td)
msgid "rootwrap_config = /etc/cinder/rootwrap.conf"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:118(td)
msgid "(IntOpt) Maximum time since last check-in for a service to be considered up"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:121(td)
msgid "ssh_hosts_key_file = $state_path/ssh_known_hosts"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:122(td) ./doc/common/tables/cinder-conf-changes.xml:269(td)
msgid "(StrOpt) File containing SSH host keys for the systems with which Cinder needs to communicate. OPTIONAL: Default=$state_path/known_hosts"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:125(td)
msgid "state_path = /var/lib/cinder"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:126(td)
msgid "(StrOpt) Top-level directory for maintaining cinder's state"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:129(td)
msgid "storage_availability_zone = nova"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:130(td)
msgid "(StrOpt) Availability zone of this node"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:133(td)
msgid "strict_ssh_host_key_policy = False"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:134(td) ./doc/common/tables/cinder-conf-changes.xml:293(td)
msgid "(BoolOpt) Option to enable strict host key checking. When set to \"True\" Cinder will only connect to systems with a host key present in the configured \"ssh_hosts_key_file\". When set to \"False\" the host key will be saved upon first connection and used for subsequent connections. Default=False"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:137(td)
msgid "tcp_keepalive = True"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:138(td) ./doc/common/tables/cinder-conf-changes.xml:301(td)
msgid "(BoolOpt) Sets the value of TCP_KEEPALIVE (True/False) for each server socket."
msgstr ""
#: ./doc/common/tables/cinder-common.xml:141(td)
msgid "tcp_keepalive_count = None"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:142(td) ./doc/common/tables/cinder-conf-changes.xml:305(td)
msgid "(IntOpt) Sets the value of TCP_KEEPCNT for each server socket. Not supported on OS X."
msgstr ""
#: ./doc/common/tables/cinder-common.xml:145(td)
msgid "tcp_keepalive_interval = None"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:146(td) ./doc/common/tables/cinder-conf-changes.xml:309(td)
msgid "(IntOpt) Sets the value of TCP_KEEPINTVL in seconds for each server socket. Not supported on OS X."
msgstr ""
#: ./doc/common/tables/cinder-common.xml:157(td) ./doc/common/tables/nova-api.xml:93(td)
msgid "use_forwarded_for = False"
msgstr ""
#: ./doc/common/tables/cinder-common.xml:158(td) ./doc/common/tables/nova-api.xml:94(td)
msgid "(BoolOpt) Treat X-Forwarded-For as the canonical remote address. Only enable this if you have a sanitizing proxy."
msgstr ""
#: ./doc/common/tables/glance-swift.xml:21(td) ./doc/common/tables/glance-swift.xml:44(td)
msgid "default_swift_reference = ref1"
msgstr ""
#: ./doc/common/tables/glance-swift.xml:25(td) ./doc/common/tables/glance-swift.xml:56(td)
msgid "swift_store_auth_address = None"
msgstr ""
#: ./doc/common/tables/glance-swift.xml:29(td) ./doc/common/tables/glance-swift.xml:68(td)
msgid "swift_store_config_file = None"
msgstr ""
#: ./doc/common/tables/glance-swift.xml:33(td) ./doc/common/tables/glance-swift.xml:84(td)
msgid "swift_store_key = None"
msgstr ""
#: ./doc/common/tables/glance-swift.xml:37(td) ./doc/common/tables/glance-swift.xml:116(td)
msgid "swift_store_user = None"
msgstr ""
#: ./doc/common/tables/glance-swift.xml:48(td)
msgid "swift_enable_snet = False"
msgstr ""
#: ./doc/common/tables/glance-swift.xml:49(td)
msgid "(BoolOpt) Whether to use ServiceNET to communicate with the Swift storage servers."
msgstr ""
#: ./doc/common/tables/glance-swift.xml:52(td)
msgid "swift_store_admin_tenants ="
msgstr ""
#: ./doc/common/tables/glance-swift.xml:53(td)
msgid "(ListOpt) A list of tenants that will be granted read/write access on all Swift containers created by Glance in multi-tenant mode."
msgstr ""
#: ./doc/common/tables/glance-swift.xml:60(td)
msgid "swift_store_auth_insecure = False"
msgstr ""
#: ./doc/common/tables/glance-swift.xml:61(td)
msgid "(BoolOpt) If True, swiftclient won't check for a valid SSL certificate when authenticating."
msgstr ""
#: ./doc/common/tables/glance-swift.xml:64(td)
msgid "swift_store_auth_version = 2"
msgstr ""
#: ./doc/common/tables/glance-swift.xml:65(td)
msgid "(StrOpt) Version of the authentication service to use. Valid versions are 2 for keystone and 1 for swauth and rackspace. (deprecated)"
msgstr ""
#: ./doc/common/tables/glance-swift.xml:72(td)
msgid "swift_store_container = glance"
msgstr ""
#: ./doc/common/tables/glance-swift.xml:73(td)
msgid "(StrOpt) Container within the account that the account should use for storing images in Swift."
msgstr ""
#: ./doc/common/tables/glance-swift.xml:76(td)
msgid "swift_store_create_container_on_put = False"
msgstr ""
#: ./doc/common/tables/glance-swift.xml:77(td)
msgid "(BoolOpt) A boolean value that determines if we create the container if it does not exist."
msgstr ""
#: ./doc/common/tables/glance-swift.xml:80(td)
msgid "swift_store_endpoint_type = publicURL"
msgstr ""
#: ./doc/common/tables/glance-swift.xml:81(td)
msgid "(StrOpt) A string giving the endpoint type of the swift service to use (publicURL, adminURL or internalURL). This setting is only used if swift_store_auth_version is 2."
msgstr ""
#: ./doc/common/tables/glance-swift.xml:88(td)
msgid "swift_store_large_object_chunk_size = 200"
msgstr ""
#: ./doc/common/tables/glance-swift.xml:89(td)
msgid "(IntOpt) The amount of data written to a temporary disk buffer during the process of chunking the image file."
msgstr ""
#: ./doc/common/tables/glance-swift.xml:92(td)
msgid "swift_store_large_object_size = 5120"
msgstr ""
#: ./doc/common/tables/glance-swift.xml:93(td)
msgid "(IntOpt) The size, in MB, that Glance will start chunking image files and do a large object manifest in Swift."
msgstr ""
#: ./doc/common/tables/glance-swift.xml:96(td)
msgid "swift_store_multi_tenant = False"
msgstr ""
#: ./doc/common/tables/glance-swift.xml:97(td)
msgid "(BoolOpt) If set to True, enables multi-tenant storage mode which causes Glance images to be stored in tenant specific Swift accounts."
msgstr ""
#: ./doc/common/tables/glance-swift.xml:100(td)
msgid "swift_store_region = None"
msgstr ""
#: ./doc/common/tables/glance-swift.xml:101(td)
msgid "(StrOpt) The region of the swift endpoint to be used for single tenant. This setting is only necessary if the tenant has multiple swift endpoints."
msgstr ""
#: ./doc/common/tables/glance-swift.xml:104(td)
msgid "swift_store_retry_get_count = 0"
msgstr ""
#: ./doc/common/tables/glance-swift.xml:105(td)
msgid "(IntOpt) The number of times a Swift download will be retried before the request fails."
msgstr ""
#: ./doc/common/tables/glance-swift.xml:108(td)
msgid "swift_store_service_type = object-store"
msgstr ""
#: ./doc/common/tables/glance-swift.xml:109(td)
msgid "(StrOpt) A string giving the service type of the swift service to use. This setting is only used if swift_store_auth_version is 2."
msgstr ""
#: ./doc/common/tables/glance-swift.xml:112(td)
msgid "swift_store_ssl_compression = True"
msgstr ""
#: ./doc/common/tables/glance-swift.xml:113(td)
msgid "(BoolOpt) If set to False, disables SSL layer compression of https swift requests. Setting to False may improve performance for images which are already in a compressed format, eg qcow2."
msgstr ""
#: ./doc/common/tables/trove-quota.xml:21(td)
msgid "max_accepted_volume_size = 5"
msgstr ""
#: ./doc/common/tables/trove-quota.xml:22(td)
msgid "(IntOpt) Default maximum volume size for an instance."
msgstr ""
#: ./doc/common/tables/trove-quota.xml:25(td)
msgid "max_backups_per_user = 50"
msgstr ""
#: ./doc/common/tables/trove-quota.xml:26(td)
msgid "(IntOpt) Default maximum number of backups created by a tenant."
msgstr ""
#: ./doc/common/tables/trove-quota.xml:29(td)
msgid "max_instances_per_user = 5"
msgstr ""
#: ./doc/common/tables/trove-quota.xml:30(td)
msgid "(IntOpt) Default maximum number of instances per tenant."
msgstr ""
#: ./doc/common/tables/trove-quota.xml:33(td)
msgid "max_volumes_per_user = 20"
msgstr ""
#: ./doc/common/tables/trove-quota.xml:34(td)
msgid "(IntOpt) Default maximum volume capacity (in GB) spanning across all trove volumes per tenant."
msgstr ""
#: ./doc/common/tables/trove-quota.xml:37(td)
msgid "quota_driver = trove.quota.quota.DbQuotaDriver"
msgstr ""
#: ./doc/common/tables/trove-quota.xml:38(td)
msgid "(StrOpt) Default driver to use for quota checks."
msgstr ""
#: ./doc/common/tables/trove-clients.xml:21(td)
msgid "remote_cinder_client = trove.common.remote.cinder_client"
msgstr ""
#: ./doc/common/tables/trove-clients.xml:25(td)
msgid "remote_dns_client = trove.common.remote.dns_client"
msgstr ""
#: ./doc/common/tables/trove-clients.xml:29(td)
msgid "remote_guest_client = trove.common.remote.guest_client"
msgstr ""
#: ./doc/common/tables/trove-clients.xml:33(td)
msgid "remote_heat_client = trove.common.remote.heat_client"
msgstr ""
#: ./doc/common/tables/trove-clients.xml:37(td)
msgid "remote_neutron_client = trove.common.remote.neutron_client"
msgstr ""
#: ./doc/common/tables/trove-clients.xml:41(td)
msgid "remote_nova_client = trove.common.remote.nova_client"
msgstr ""
#: ./doc/common/tables/trove-clients.xml:45(td)
msgid "remote_swift_client = trove.common.remote.swift_client"
msgstr ""
#: ./doc/common/tables/ceilometer-alarm.xml:7(caption)
msgid "Description of alarm configuration options"
msgstr ""
#: ./doc/common/tables/ceilometer-alarm.xml:18(th)
msgid "[alarm]"
msgstr ""
#: ./doc/common/tables/ceilometer-alarm.xml:21(td)
msgid "evaluation_interval = 60"
msgstr ""
#: ./doc/common/tables/ceilometer-alarm.xml:22(td)
msgid "(IntOpt) Period of evaluation cycle, should be &gt;= than configured pipeline interval for collection of underlying metrics."
msgstr ""
#: ./doc/common/tables/ceilometer-alarm.xml:25(td)
msgid "notifier_rpc_topic = alarm_notifier"
msgstr ""
#: ./doc/common/tables/ceilometer-alarm.xml:26(td)
msgid "(StrOpt) The topic that ceilometer uses for alarm notifier messages."
msgstr ""
#: ./doc/common/tables/ceilometer-alarm.xml:29(td)
msgid "partition_rpc_topic = alarm_partition_coordination"
msgstr ""
#: ./doc/common/tables/ceilometer-alarm.xml:30(td)
msgid "(StrOpt) The topic that ceilometer uses for alarm partition coordination messages. DEPRECATED: RPC-based partitionedalarm evaluation service will be removed in Kilo in favour of the default alarm evaluation service using tooz for partitioning."
msgstr ""
#: ./doc/common/tables/ceilometer-alarm.xml:33(td)
msgid "project_alarm_quota = None"
msgstr ""
#: ./doc/common/tables/ceilometer-alarm.xml:37(td)
msgid "record_history = True"
msgstr ""
#: ./doc/common/tables/ceilometer-alarm.xml:38(td)
msgid "(BoolOpt) Record alarm change events."
msgstr ""
#: ./doc/common/tables/ceilometer-alarm.xml:41(td)
msgid "rest_notifier_certificate_file ="
msgstr ""
#: ./doc/common/tables/ceilometer-alarm.xml:42(td)
msgid "(StrOpt) SSL Client certificate for REST notifier."
msgstr ""
#: ./doc/common/tables/ceilometer-alarm.xml:45(td)
msgid "rest_notifier_certificate_key ="
msgstr ""
#: ./doc/common/tables/ceilometer-alarm.xml:46(td)
msgid "(StrOpt) SSL Client private key for REST notifier."
msgstr ""
#: ./doc/common/tables/ceilometer-alarm.xml:49(td)
msgid "rest_notifier_max_retries = 0"
msgstr ""
#: ./doc/common/tables/ceilometer-alarm.xml:53(td)
msgid "rest_notifier_ssl_verify = True"
msgstr ""
#: ./doc/common/tables/ceilometer-alarm.xml:54(td)
msgid "(BoolOpt) Whether to verify the SSL Server certificate when calling alarm action."
msgstr ""
#: ./doc/common/tables/ceilometer-alarm.xml:57(td)
msgid "user_alarm_quota = None"
msgstr ""
#: ./doc/common/tables/ceilometer-events.xml:7(caption)
msgid "Description of events configuration options"
msgstr ""
#: ./doc/common/tables/ceilometer-events.xml:18(th)
msgid "[event]"
msgstr ""
#: ./doc/common/tables/ceilometer-events.xml:21(td)
msgid "definitions_cfg_file = event_definitions.yaml"
msgstr ""
#: ./doc/common/tables/ceilometer-events.xml:22(td)
msgid "(StrOpt) Configuration file for event definitions."
msgstr ""
#: ./doc/common/tables/ceilometer-events.xml:25(td)
msgid "drop_unmatched_notifications = False"
msgstr ""
#: ./doc/common/tables/ceilometer-events.xml:26(td)
msgid "(BoolOpt) Drop notifications if no event definition matches. (Otherwise, we convert them with just the default traits)"
msgstr ""
#: ./doc/common/tables/ceilometer-events.xml:29(th) ./doc/common/tables/ceilometer-rpc.xml:77(th)
msgid "[notification]"
msgstr ""
#: ./doc/common/tables/ceilometer-events.xml:32(td)
msgid "ack_on_event_error = True"
msgstr ""
#: ./doc/common/tables/ceilometer-events.xml:33(td)
msgid "(BoolOpt) Acknowledge message when event persistence fails."
msgstr ""
#: ./doc/common/tables/ceilometer-events.xml:36(td)
msgid "store_events = False"
msgstr ""
#: ./doc/common/tables/ceilometer-events.xml:37(td)
msgid "(BoolOpt) Save event details."
msgstr ""
#: ./doc/common/tables/neutron-lbaas_haproxy.xml:7(caption)
msgid "Description of LBaaS haproxy configuration options"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_haproxy.xml:18(th)
msgid "[haproxy]"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_haproxy.xml:21(td)
msgid "loadbalancer_state_path = $state_path/lbaas"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_haproxy.xml:22(td)
msgid "(StrOpt) Location to store config and state files"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_haproxy.xml:25(td)
msgid "send_gratuitous_arp = 3"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_haproxy.xml:29(td)
msgid "user_group = nogroup"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_haproxy.xml:30(td)
msgid "(StrOpt) The user group"
msgstr ""
#: ./doc/common/tables/cinder-xiv.xml:7(caption)
msgid "Description of IBM XIV and DS8000 volume driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-xiv.xml:21(td) ./doc/common/tables/cinder-san.xml:21(td)
msgid "san_clustername ="
msgstr ""
#: ./doc/common/tables/cinder-xiv.xml:22(td) ./doc/common/tables/cinder-san.xml:22(td)
msgid "(StrOpt) Cluster name to use for creating volumes"
msgstr ""
#: ./doc/common/tables/cinder-xiv.xml:25(td) ./doc/common/tables/cinder-prophetstor_dpl.xml:29(td) ./doc/common/tables/cinder-san.xml:25(td)
msgid "san_ip ="
msgstr ""
#: ./doc/common/tables/cinder-xiv.xml:26(td) ./doc/common/tables/cinder-prophetstor_dpl.xml:30(td) ./doc/common/tables/cinder-san.xml:26(td)
msgid "(StrOpt) IP address of SAN controller"
msgstr ""
#: ./doc/common/tables/cinder-xiv.xml:29(td) ./doc/common/tables/cinder-prophetstor_dpl.xml:33(td) ./doc/common/tables/cinder-san.xml:33(td)
msgid "san_login = admin"
msgstr ""
#: ./doc/common/tables/cinder-xiv.xml:30(td) ./doc/common/tables/cinder-prophetstor_dpl.xml:34(td) ./doc/common/tables/cinder-san.xml:34(td)
msgid "(StrOpt) Username for SAN controller"
msgstr ""
#: ./doc/common/tables/cinder-xiv.xml:33(td) ./doc/common/tables/cinder-prophetstor_dpl.xml:37(td) ./doc/common/tables/cinder-san.xml:37(td)
msgid "san_password ="
msgstr ""
#: ./doc/common/tables/cinder-xiv.xml:34(td) ./doc/common/tables/cinder-prophetstor_dpl.xml:38(td) ./doc/common/tables/cinder-san.xml:38(td)
msgid "(StrOpt) Password for SAN controller"
msgstr ""
#: ./doc/common/tables/cinder-xiv.xml:37(td)
msgid "xiv_chap = disabled"
msgstr ""
#: ./doc/common/tables/cinder-xiv.xml:38(td)
msgid "(StrOpt) CHAP authentication mode, effective only for iscsi (disabled|enabled)"
msgstr ""
#: ./doc/common/tables/cinder-xiv.xml:41(td)
msgid "xiv_ds8k_connection_type = iscsi"
msgstr ""
#: ./doc/common/tables/cinder-xiv.xml:42(td)
msgid "(StrOpt) Connection type to the IBM Storage Array (fibre_channel|iscsi)"
msgstr ""
#: ./doc/common/tables/cinder-xiv.xml:45(td)
msgid "xiv_ds8k_proxy = xiv_ds8k_openstack.nova_proxy.XIVDS8KNovaProxy"
msgstr ""
#: ./doc/common/tables/cinder-xiv.xml:46(td)
msgid "(StrOpt) Proxy driver that connects to the IBM Storage Array"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-name_check.xml:8(literal)
msgid "[filter-name_check]"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-name_check.xml:20(td)
msgid "forbidden_chars = '\"`&lt;&gt;"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-name_check.xml:21(td)
msgid "Characters that are not allowed in a name"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-name_check.xml:24(td)
msgid "forbidden_regexp = /\\./|/\\.\\./|/\\.$|/\\.\\.$"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-name_check.xml:25(td)
msgid "Substrings to forbid, using regular expression syntax"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-name_check.xml:28(td)
msgid "maximum_length = 255"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-name_check.xml:29(td)
msgid "Maximum length of a name"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-name_check.xml:32(td)
msgid "use = egg:swift#name_check"
msgstr ""
#: ./doc/common/tables/neutron-sriov.xml:7(caption)
msgid "Description of SR-IOV configuration options"
msgstr ""
#: ./doc/common/tables/neutron-sriov.xml:18(th)
msgid "[SRIOV_NIC]"
msgstr ""
#: ./doc/common/tables/neutron-sriov.xml:21(td)
msgid "exclude_devices ="
msgstr ""
#: ./doc/common/tables/neutron-sriov.xml:25(td)
msgid "physical_device_mappings ="
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:7(caption)
msgid "Description of ML2 BigSwitch mechanism driver configuration options"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:18(th) ./doc/common/tables/neutron-bigswitch.xml:18(th)
msgid "[NOVA]"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:21(td) ./doc/common/tables/neutron-bigswitch.xml:21(td)
msgid "node_override_vif_802.1qbg ="
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:22(td) ./doc/common/tables/neutron-bigswitch.xml:22(td)
msgid "(ListOpt) Nova compute nodes to manually set VIF type to 802.1qbg"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:25(td) ./doc/common/tables/neutron-bigswitch.xml:25(td)
msgid "node_override_vif_802.1qbh ="
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:26(td) ./doc/common/tables/neutron-bigswitch.xml:26(td)
msgid "(ListOpt) Nova compute nodes to manually set VIF type to 802.1qbh"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:29(td) ./doc/common/tables/neutron-bigswitch.xml:29(td)
msgid "node_override_vif_binding_failed ="
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:30(td) ./doc/common/tables/neutron-bigswitch.xml:30(td)
msgid "(ListOpt) Nova compute nodes to manually set VIF type to binding_failed"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:33(td) ./doc/common/tables/neutron-bigswitch.xml:33(td)
msgid "node_override_vif_bridge ="
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:34(td) ./doc/common/tables/neutron-bigswitch.xml:34(td)
msgid "(ListOpt) Nova compute nodes to manually set VIF type to bridge"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:37(td) ./doc/common/tables/neutron-bigswitch.xml:37(td)
msgid "node_override_vif_distributed ="
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:41(td) ./doc/common/tables/neutron-bigswitch.xml:41(td)
msgid "node_override_vif_dvs ="
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:45(td) ./doc/common/tables/neutron-bigswitch.xml:45(td)
msgid "node_override_vif_hostdev ="
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:46(td) ./doc/common/tables/neutron-bigswitch.xml:46(td)
msgid "(ListOpt) Nova compute nodes to manually set VIF type to hostdev"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:49(td) ./doc/common/tables/neutron-bigswitch.xml:49(td)
msgid "node_override_vif_hw_veb ="
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:53(td) ./doc/common/tables/neutron-bigswitch.xml:53(td)
msgid "node_override_vif_hyperv ="
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:54(td) ./doc/common/tables/neutron-bigswitch.xml:54(td)
msgid "(ListOpt) Nova compute nodes to manually set VIF type to hyperv"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:57(td) ./doc/common/tables/neutron-bigswitch.xml:57(td)
msgid "node_override_vif_ivs ="
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:58(td) ./doc/common/tables/neutron-bigswitch.xml:58(td)
msgid "(ListOpt) Nova compute nodes to manually set VIF type to ivs"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:61(td) ./doc/common/tables/neutron-bigswitch.xml:61(td)
msgid "node_override_vif_midonet ="
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:62(td) ./doc/common/tables/neutron-bigswitch.xml:62(td)
msgid "(ListOpt) Nova compute nodes to manually set VIF type to midonet"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:65(td) ./doc/common/tables/neutron-bigswitch.xml:65(td)
msgid "node_override_vif_mlnx_direct ="
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:66(td) ./doc/common/tables/neutron-bigswitch.xml:66(td)
msgid "(ListOpt) Nova compute nodes to manually set VIF type to mlnx_direct"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:69(td) ./doc/common/tables/neutron-bigswitch.xml:69(td)
msgid "node_override_vif_other ="
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:70(td) ./doc/common/tables/neutron-bigswitch.xml:70(td)
msgid "(ListOpt) Nova compute nodes to manually set VIF type to other"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:73(td) ./doc/common/tables/neutron-bigswitch.xml:73(td)
msgid "node_override_vif_ovs ="
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:74(td) ./doc/common/tables/neutron-bigswitch.xml:74(td)
msgid "(ListOpt) Nova compute nodes to manually set VIF type to ovs"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:77(td) ./doc/common/tables/neutron-bigswitch.xml:77(td)
msgid "node_override_vif_unbound ="
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:78(td) ./doc/common/tables/neutron-bigswitch.xml:78(td)
msgid "(ListOpt) Nova compute nodes to manually set VIF type to unbound"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:81(td) ./doc/common/tables/neutron-bigswitch.xml:81(td)
msgid "node_override_vif_vrouter ="
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:85(td) ./doc/common/tables/neutron-bigswitch.xml:85(td)
msgid "vif_type = ovs"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:86(td) ./doc/common/tables/neutron-bigswitch.xml:86(td)
msgid "(StrOpt) Virtual interface type to configure on Nova compute nodes"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:89(td) ./doc/common/tables/neutron-bigswitch.xml:89(td)
msgid "vif_types = unbound, binding_failed, ovs, ivs, bridge, 802.1qbg, 802.1qbh, hyperv, midonet, mlnx_direct, hostdev, hw_veb, dvs, other, distributed, vrouter"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:90(td) ./doc/common/tables/neutron-bigswitch.xml:90(td)
msgid "(ListOpt) List of allowed vif_type values."
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:93(th) ./doc/common/tables/neutron-nuage.xml:18(th) ./doc/common/tables/neutron-bigswitch.xml:93(th)
msgid "[RESTPROXY]"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:96(td) ./doc/common/tables/neutron-bigswitch.xml:96(td)
msgid "add_meta_server_route = True"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:97(td) ./doc/common/tables/neutron-bigswitch.xml:97(td)
msgid "(BoolOpt) Flag to decide if a route to the metadata server should be injected into the VM"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:100(td) ./doc/common/tables/neutron-bigswitch.xml:100(td)
msgid "auto_sync_on_failure = True"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:101(td) ./doc/common/tables/neutron-bigswitch.xml:101(td)
msgid "(BoolOpt) If neutron fails to create a resource because the backend controller doesn't know of a dependency, the plugin automatically triggers a full data synchronization to the controller."
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:104(td) ./doc/common/tables/neutron-bigswitch.xml:104(td)
msgid "cache_connections = True"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:105(td) ./doc/common/tables/neutron-bigswitch.xml:105(td)
msgid "(BoolOpt) Re-use HTTP/HTTPS connections to the controller."
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:108(td) ./doc/common/tables/neutron-bigswitch.xml:108(td)
msgid "consistency_interval = 60"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:109(td) ./doc/common/tables/neutron-bigswitch.xml:109(td)
msgid "(IntOpt) Time between verifications that the backend controller database is consistent with Neutron. (0 to disable)"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:112(td) ./doc/common/tables/neutron-bigswitch.xml:112(td)
msgid "neutron_id = neutron-linux-6dv9.site"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:113(td) ./doc/common/tables/neutron-bigswitch.xml:113(td)
msgid "(StrOpt) User defined identifier for this Neutron deployment"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:116(td) ./doc/common/tables/neutron-bigswitch.xml:116(td)
msgid "no_ssl_validation = False"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:117(td) ./doc/common/tables/neutron-bigswitch.xml:117(td)
msgid "(BoolOpt) Disables SSL certificate validation for controllers"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:120(td) ./doc/common/tables/neutron-bigswitch.xml:120(td)
msgid "server_auth = None"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:121(td) ./doc/common/tables/neutron-bigswitch.xml:121(td)
msgid "(StrOpt) The username and password for authenticating against the Big Switch or Floodlight controller."
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:124(td) ./doc/common/tables/neutron-bigswitch.xml:124(td)
msgid "server_ssl = True"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:125(td) ./doc/common/tables/neutron-bigswitch.xml:125(td)
msgid "(BoolOpt) If True, Use SSL when connecting to the Big Switch or Floodlight controller."
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:128(td) ./doc/common/tables/neutron-bigswitch.xml:128(td)
msgid "server_timeout = 10"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:129(td) ./doc/common/tables/neutron-bigswitch.xml:129(td)
msgid "(IntOpt) Maximum number of seconds to wait for proxy request to connect and complete."
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:132(td) ./doc/common/tables/neutron-bigswitch.xml:132(td)
msgid "servers = localhost:8800"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:133(td) ./doc/common/tables/neutron-bigswitch.xml:133(td)
msgid "(ListOpt) A comma separated list of Big Switch or Floodlight servers and port numbers. The plugin proxies the requests to the Big Switch/Floodlight server, which performs the networking configuration. Only oneserver is needed per deployment, but you may wish todeploy multiple servers to support failover."
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:136(td) ./doc/common/tables/neutron-bigswitch.xml:136(td)
msgid "ssl_cert_directory = /etc/neutron/plugins/bigswitch/ssl"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:137(td) ./doc/common/tables/neutron-bigswitch.xml:137(td)
msgid "(StrOpt) Directory containing ca_certs and host_certs certificate directories."
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:140(td) ./doc/common/tables/neutron-bigswitch.xml:140(td)
msgid "ssl_sticky = True"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:141(td) ./doc/common/tables/neutron-bigswitch.xml:141(td)
msgid "(BoolOpt) Trust and store the first certificate received for each controller address and use it to validate future connections to that address."
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:144(td) ./doc/common/tables/neutron-bigswitch.xml:144(td)
msgid "sync_data = False"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:145(td) ./doc/common/tables/neutron-bigswitch.xml:145(td)
msgid "(BoolOpt) Sync data on connect"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:148(td) ./doc/common/tables/neutron-bigswitch.xml:148(td)
msgid "thread_pool_size = 4"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:149(td) ./doc/common/tables/neutron-bigswitch.xml:149(td)
msgid "(IntOpt) Maximum number of threads to spawn to handle large volumes of port creations."
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:152(th) ./doc/common/tables/neutron-bigswitch.xml:152(th)
msgid "[RESTPROXYAGENT]"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:156(td) ./doc/common/tables/neutron-bigswitch.xml:156(td)
msgid "(StrOpt) Name of integration bridge on compute nodes used for security group insertion."
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:159(td) ./doc/common/tables/neutron-bigswitch.xml:159(td)
msgid "polling_interval = 5"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:160(td) ./doc/common/tables/neutron-bigswitch.xml:160(td)
msgid "(IntOpt) Seconds between agent checks for port changes"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:163(td) ./doc/common/tables/neutron-bigswitch.xml:163(td)
msgid "virtual_switch_type = ovs"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:164(td) ./doc/common/tables/neutron-bigswitch.xml:164(td)
msgid "(StrOpt) Virtual switch type."
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:167(th) ./doc/common/tables/neutron-bigswitch.xml:167(th)
msgid "[ROUTER]"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:170(td) ./doc/common/tables/neutron-bigswitch.xml:170(td)
msgid "max_router_rules = 200"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:171(td) ./doc/common/tables/neutron-bigswitch.xml:171(td)
msgid "(IntOpt) Maximum number of router rules"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:174(td) ./doc/common/tables/neutron-bigswitch.xml:174(td)
msgid "tenant_default_router_rule = ['*:any:any:permit']"
msgstr ""
#: ./doc/common/tables/neutron-ml2_bigswitch.xml:175(td) ./doc/common/tables/neutron-bigswitch.xml:175(td)
msgid "(MultiStrOpt) The default router rules installed in new tenant routers. Repeat the config option for each rule. Format is &lt;tenant&gt;:&lt;source&gt;:&lt;destination&gt;:&lt;action&gt; Use an * to specify default for all tenants."
msgstr ""
#: ./doc/common/tables/nova-glance.xml:7(caption) ./doc/common/tables/ceilometer-glance.xml:7(caption)
msgid "Description of glance configuration options"
msgstr ""
#: ./doc/common/tables/nova-glance.xml:21(td)
msgid "osapi_glance_link_prefix = None"
msgstr ""
#: ./doc/common/tables/nova-glance.xml:22(td)
msgid "(StrOpt) Base URL that will be presented to users in links to glance resources"
msgstr ""
#: ./doc/common/tables/nova-glance.xml:25(th)
msgid "[glance]"
msgstr ""
#: ./doc/common/tables/nova-glance.xml:28(td) ./doc/common/tables/cinder-images.xml:21(td)
msgid "allowed_direct_url_schemes ="
msgstr ""
#: ./doc/common/tables/nova-glance.xml:29(td) ./doc/common/tables/nova-conf-changes.xml:93(td)
msgid "(ListOpt) A list of url scheme that can be downloaded directly via the direct_url. Currently supported schemes: [file]."
msgstr ""
#: ./doc/common/tables/nova-glance.xml:33(td) ./doc/common/tables/nova-conf-changes.xml:97(td) ./doc/common/tables/cinder-images.xml:26(td)
msgid "(BoolOpt) Allow to perform insecure SSL (https) requests to glance"
msgstr ""
#: ./doc/common/tables/nova-glance.xml:36(td)
msgid "api_servers = None"
msgstr ""
#: ./doc/common/tables/nova-glance.xml:37(td) ./doc/common/tables/nova-conf-changes.xml:101(td)
msgid "(ListOpt) A list of the glance api servers available to nova. Prefix with https:// for ssl-based glance api servers. ([hostname|ip]:port)"
msgstr ""
#: ./doc/common/tables/nova-glance.xml:40(td)
msgid "host = $my_ip"
msgstr ""
#: ./doc/common/tables/nova-glance.xml:41(td) ./doc/common/tables/nova-conf-changes.xml:105(td)
msgid "(StrOpt) Default glance hostname or IP address"
msgstr ""
#: ./doc/common/tables/nova-glance.xml:44(td)
msgid "num_retries = 0"
msgstr ""
#: ./doc/common/tables/nova-glance.xml:45(td) ./doc/common/tables/nova-conf-changes.xml:109(td)
msgid "(IntOpt) Number of retries when downloading an image from glance"
msgstr ""
#: ./doc/common/tables/nova-glance.xml:48(td)
msgid "port = 9292"
msgstr ""
#: ./doc/common/tables/nova-glance.xml:49(td) ./doc/common/tables/nova-conf-changes.xml:113(td) ./doc/common/tables/cinder-images.xml:54(td)
msgid "(IntOpt) Default glance port"
msgstr ""
#: ./doc/common/tables/nova-glance.xml:52(td)
msgid "protocol = http"
msgstr ""
#: ./doc/common/tables/nova-glance.xml:53(td) ./doc/common/tables/nova-conf-changes.xml:117(td)
msgid "(StrOpt) Default protocol to use when connecting to glance. Set to https for SSL."
msgstr ""
#: ./doc/common/tables/nova-glance.xml:56(th)
msgid "[image_file_url]"
msgstr ""
#: ./doc/common/tables/nova-glance.xml:59(td)
msgid "filesystems ="
msgstr ""
#: ./doc/common/tables/nova-glance.xml:60(td)
msgid "(ListOpt) List of file systems that are configured in this file in the image_file_url:&lt;list entry name&gt; sections"
msgstr ""
#: ./doc/common/tables/nova-s3.xml:21(td)
msgid "buckets_path = $state_path/buckets"
msgstr ""
#: ./doc/common/tables/nova-s3.xml:22(td)
msgid "(StrOpt) Path to S3 buckets"
msgstr ""
#: ./doc/common/tables/nova-s3.xml:25(td)
msgid "image_decryption_dir = /tmp"
msgstr ""
#: ./doc/common/tables/nova-s3.xml:26(td)
msgid "(StrOpt) Parent directory for tempdir used for image decryption"
msgstr ""
#: ./doc/common/tables/nova-s3.xml:29(td)
msgid "s3_access_key = notchecked"
msgstr ""
#: ./doc/common/tables/nova-s3.xml:30(td)
msgid "(StrOpt) Access key to use for S3 server for images"
msgstr ""
#: ./doc/common/tables/nova-s3.xml:33(td)
msgid "s3_affix_tenant = False"
msgstr ""
#: ./doc/common/tables/nova-s3.xml:34(td)
msgid "(BoolOpt) Whether to affix the tenant id to the access key when downloading from S3"
msgstr ""
#: ./doc/common/tables/nova-s3.xml:37(td)
msgid "s3_host = $my_ip"
msgstr ""
#: ./doc/common/tables/nova-s3.xml:38(td)
msgid "(StrOpt) Hostname or IP for OpenStack to use when accessing the S3 api"
msgstr ""
#: ./doc/common/tables/nova-s3.xml:41(td)
msgid "s3_listen = 0.0.0.0"
msgstr ""
#: ./doc/common/tables/nova-s3.xml:42(td)
msgid "(StrOpt) IP address for S3 API to listen"
msgstr ""
#: ./doc/common/tables/nova-s3.xml:45(td)
msgid "s3_listen_port = 3333"
msgstr ""
#: ./doc/common/tables/nova-s3.xml:46(td)
msgid "(IntOpt) Port for S3 API to listen"
msgstr ""
#: ./doc/common/tables/nova-s3.xml:49(td)
msgid "s3_port = 3333"
msgstr ""
#: ./doc/common/tables/nova-s3.xml:50(td)
msgid "(IntOpt) Port used when accessing the S3 api"
msgstr ""
#: ./doc/common/tables/nova-s3.xml:53(td)
msgid "s3_secret_key = notchecked"
msgstr ""
#: ./doc/common/tables/nova-s3.xml:54(td)
msgid "(StrOpt) Secret key to use for S3 server for images"
msgstr ""
#: ./doc/common/tables/nova-s3.xml:57(td)
msgid "s3_use_ssl = False"
msgstr ""
#: ./doc/common/tables/nova-s3.xml:58(td)
msgid "(BoolOpt) Whether to use SSL when talking to S3"
msgstr ""
#: ./doc/common/tables/nova-serial_console.xml:7(caption)
msgid "Description of serial console configuration options"
msgstr ""
#: ./doc/common/tables/nova-serial_console.xml:18(th)
msgid "[serial_console]"
msgstr ""
#: ./doc/common/tables/nova-serial_console.xml:21(td)
msgid "base_url = http://127.0.0.1:6083/"
msgstr ""
#: ./doc/common/tables/nova-serial_console.xml:22(td) ./doc/common/tables/nova-conf-changes.xml:265(td)
msgid "(StrOpt) Location of serial console proxy."
msgstr ""
#: ./doc/common/tables/nova-serial_console.xml:26(td) ./doc/common/tables/nova-conf-changes.xml:269(td)
msgid "(BoolOpt) Enable serial console related features"
msgstr ""
#: ./doc/common/tables/nova-serial_console.xml:29(td)
msgid "listen = 127.0.0.1"
msgstr ""
#: ./doc/common/tables/nova-serial_console.xml:30(td) ./doc/common/tables/nova-conf-changes.xml:273(td)
msgid "(StrOpt) IP address on which instance serial console should listen"
msgstr ""
#: ./doc/common/tables/nova-serial_console.xml:33(td)
msgid "port_range = 10000:20000"
msgstr ""
#: ./doc/common/tables/nova-serial_console.xml:34(td) ./doc/common/tables/nova-conf-changes.xml:277(td)
msgid "(StrOpt) Range of TCP ports to use for serial ports on compute hosts"
msgstr ""
#: ./doc/common/tables/nova-serial_console.xml:37(td)
msgid "proxyclient_address = 127.0.0.1"
msgstr ""
#: ./doc/common/tables/nova-serial_console.xml:38(td) ./doc/common/tables/nova-conf-changes.xml:281(td)
msgid "(StrOpt) The address to which proxy clients (like nova-serialproxy) should connect"
msgstr ""
#: ./doc/common/tables/nova-pci.xml:7(caption)
msgid "Description of PCI configuration options"
msgstr ""
#: ./doc/common/tables/nova-pci.xml:21(td)
msgid "pci_alias = []"
msgstr ""
#: ./doc/common/tables/nova-pci.xml:22(td)
msgid "(MultiStrOpt) An alias for a PCI passthrough device requirement. This allows users to specify the alias in the extra_spec for a flavor, without needing to repeat all the PCI property requirements. For example: pci_alias = { \"name\": \"QuicAssist\", \"product_id\": \"0443\", \"vendor_id\": \"8086\", \"device_type\": \"ACCEL\" } defines an alias for the Intel QuickAssist card. (multi valued)"
msgstr ""
#: ./doc/common/tables/nova-pci.xml:25(td)
msgid "pci_passthrough_whitelist = []"
msgstr ""
#: ./doc/common/tables/nova-pci.xml:26(td)
msgid "(MultiStrOpt) White list of PCI devices available to VMs. For example: pci_passthrough_whitelist = [{\"vendor_id\": \"8086\", \"product_id\": \"0443\"}]"
msgstr ""
#: ./doc/common/tables/heat-clients_cinder.xml:7(caption)
msgid "Description of cinder clients configuration options"
msgstr ""
#: ./doc/common/tables/heat-clients_cinder.xml:18(th)
msgid "[clients_cinder]"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:8(literal)
msgid "[filter-ratelimit]"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:20(td)
msgid "account_blacklist = c,d"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:21(td)
msgid "Comma separated lists of account names that will not be allowed. Returns a 497 response. r: for containers of size x, limit requests per second to r. Will limit PUT, DELETE, and POST requests to /a/c/o. container_listing_ratelimit_x = r: for containers of size x, limit listing requests per second to r. Will limit GET requests to /a/c."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:24(td)
msgid "account_ratelimit = 0"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:25(td)
msgid "If set, will limit PUT and DELETE requests to /account_name/container_name. Number is in requests per second."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:28(td)
msgid "account_whitelist = a,b"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:29(td)
msgid "Comma separated lists of account names that will not be rate limited."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:32(td)
msgid "clock_accuracy = 1000"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:33(td)
msgid "Represents how accurate the proxy servers' system clocks are with each other. 1000 means that all the proxies' clock are accurate to each other within 1 millisecond. No ratelimit should be higher than the clock accuracy."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:36(td)
msgid "container_listing_ratelimit_0 = 100"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:40(td)
msgid "container_listing_ratelimit_10 = 50"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:44(td)
msgid "container_listing_ratelimit_50 = 20"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:48(td)
msgid "container_ratelimit_0 = 100"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:52(td)
msgid "container_ratelimit_10 = 50"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:56(td)
msgid "container_ratelimit_50 = 20"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:60(td)
msgid "log_sleep_time_seconds = 0"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:61(td)
msgid "To allow visibility into rate limiting set this value &gt; 0 and all sleeps greater than the number will be logged."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:64(td)
msgid "max_sleep_time_seconds = 60"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:65(td)
msgid "App will immediately return a 498 response if the necessary sleep time ever exceeds the given max_sleep_time_seconds."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:68(td)
msgid "rate_buffer_seconds = 5"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:69(td)
msgid "Number of seconds the rate counter can drop and be allowed to catch up (at a faster than listed rate). A larger number will result in larger spikes in rate but better average accuracy."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:88(td)
msgid "set log_name = ratelimit"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:92(td)
msgid "use = egg:swift#ratelimit"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-ratelimit.xml:96(td)
msgid "with container_limit_x = r"
msgstr ""
#: ./doc/common/tables/keystone-revoke.xml:7(caption)
msgid "Description of revoke configuration options"
msgstr ""
#: ./doc/common/tables/keystone-revoke.xml:18(th)
msgid "[revoke]"
msgstr ""
#: ./doc/common/tables/keystone-revoke.xml:22(td)
msgid "(BoolOpt) Toggle for revocation event cacheing. This has no effect unless global caching is enabled."
msgstr ""
#: ./doc/common/tables/keystone-revoke.xml:25(td)
msgid "driver = keystone.contrib.revoke.backends.kvs.Revoke"
msgstr ""
#: ./doc/common/tables/keystone-revoke.xml:26(td)
msgid "(StrOpt) An implementation of the backend for persisting revocation events."
msgstr ""
#: ./doc/common/tables/keystone-revoke.xml:29(td)
msgid "expiration_buffer = 1800"
msgstr ""
#: ./doc/common/tables/keystone-revoke.xml:30(td)
msgid "(IntOpt) This value (calculated in seconds) is added to token expiration before a revocation event may be removed from the backend."
msgstr ""
#: ./doc/common/tables/sahara-common.xml:21(td)
msgid "cluster_remote_threshold = 70"
msgstr ""
#: ./doc/common/tables/sahara-common.xml:22(td)
msgid "(IntOpt) The same as global_remote_threshold, but for a single cluster."
msgstr ""
#: ./doc/common/tables/sahara-common.xml:25(td)
msgid "compute_topology_file = etc/sahara/compute.topology"
msgstr ""
#: ./doc/common/tables/sahara-common.xml:26(td)
msgid "(StrOpt) File with nova compute topology. It should contain mapping between nova computes and racks. File format: compute1 /rack1 compute2 /rack2 compute3 /rack2"
msgstr ""
#: ./doc/common/tables/sahara-common.xml:38(td)
msgid "detach_volume_timeout = 300"
msgstr ""
#: ./doc/common/tables/sahara-common.xml:39(td)
msgid "(IntOpt) Timeout for detaching volumes from instance (in seconds)."
msgstr ""
#: ./doc/common/tables/sahara-common.xml:42(td)
msgid "enable_data_locality = False"
msgstr ""
#: ./doc/common/tables/sahara-common.xml:43(td)
msgid "(BoolOpt) Enables data locality for hadoop cluster. Also enables data locality for Swift used by hadoop. If enabled, 'compute_topology' and 'swift_topology' configuration parameters should point to OpenStack and Swift topology correspondingly."
msgstr ""
#: ./doc/common/tables/sahara-common.xml:50(td)
msgid "enable_hypervisor_awareness = True"
msgstr ""
#: ./doc/common/tables/sahara-common.xml:51(td)
msgid "(BoolOpt) Enables four-level topology for data locality. Works only if corresponding plugin supports such mode."
msgstr ""
#: ./doc/common/tables/sahara-common.xml:55(td)
msgid "enable_notifications = False"
msgstr ""
#: ./doc/common/tables/sahara-common.xml:56(td)
msgid "(BoolOpt) Enables sending notifications to Ceilometer"
msgstr ""
#: ./doc/common/tables/sahara-common.xml:59(td)
msgid "global_remote_threshold = 100"
msgstr ""
#: ./doc/common/tables/sahara-common.xml:60(td)
msgid "(IntOpt) Maximum number of remote operations that will be running at the same time. Note that each remote operation requires its own process to run."
msgstr ""
#: ./doc/common/tables/sahara-common.xml:63(td)
msgid "host ="
msgstr ""
#: ./doc/common/tables/sahara-common.xml:64(td)
msgid "(StrOpt) Hostname or IP address that will be used to listen on."
msgstr ""
#: ./doc/common/tables/sahara-common.xml:67(td)
msgid "infrastructure_engine = direct"
msgstr ""
#: ./doc/common/tables/sahara-common.xml:68(td)
msgid "(StrOpt) An engine which will be used to provision infrastructure for Hadoop cluster."
msgstr ""
#: ./doc/common/tables/sahara-common.xml:71(td)
msgid "job_binary_max_KB = 5120"
msgstr ""
#: ./doc/common/tables/sahara-common.xml:72(td)
msgid "(IntOpt) Maximum length of job binary data in kilobytes that may be stored or retrieved in a single operation."
msgstr ""
#: ./doc/common/tables/sahara-common.xml:75(td)
msgid "job_workflow_postfix ="
msgstr ""
#: ./doc/common/tables/sahara-common.xml:76(td)
msgid "(StrOpt) Postfix for storing jobs in hdfs. Will be added to /user/hadoop/."
msgstr ""
#: ./doc/common/tables/sahara-common.xml:87(td)
msgid "min_transient_cluster_active_time = 30"
msgstr ""
#: ./doc/common/tables/sahara-common.xml:88(td)
msgid "(IntOpt) Minimal \"lifetime\" in seconds for a transient cluster. Cluster is guaranteed to be \"alive\" within this time period."
msgstr ""
#: ./doc/common/tables/sahara-common.xml:91(td)
msgid "node_domain = novalocal"
msgstr ""
#: ./doc/common/tables/sahara-common.xml:92(td)
msgid "(StrOpt) The suffix of the node's FQDN. In nova-network that is the dhcp_domain config parameter."
msgstr ""
#: ./doc/common/tables/sahara-common.xml:96(td)
msgid "(StrOpt) Region name used to get services endpoints."
msgstr ""
#: ./doc/common/tables/sahara-common.xml:100(td)
msgid "(BoolOpt) Enable periodic tasks."
msgstr ""
#: ./doc/common/tables/sahara-common.xml:104(td)
msgid "(IntOpt) Range in seconds to randomly delay when starting the periodic task scheduler to reduce stampeding. (Disable by setting to 0)."
msgstr ""
#: ./doc/common/tables/sahara-common.xml:107(td)
msgid "periodic_interval_max = 60"
msgstr ""
#: ./doc/common/tables/sahara-common.xml:108(td)
msgid "(IntOpt) Max interval size between periodic tasks execution in seconds."
msgstr ""
#: ./doc/common/tables/sahara-common.xml:111(td)
msgid "plugins = vanilla, hdp"
msgstr ""
#: ./doc/common/tables/sahara-common.xml:112(td)
msgid "(ListOpt) List of plugins to be loaded. Sahara preserves the order of the list when returning it."
msgstr ""
#: ./doc/common/tables/sahara-common.xml:115(td)
msgid "port = 8386"
msgstr ""
#: ./doc/common/tables/sahara-common.xml:116(td)
msgid "(IntOpt) Port that will be used to listen on."
msgstr ""
#: ./doc/common/tables/sahara-common.xml:119(td)
msgid "remote = ssh"
msgstr ""
#: ./doc/common/tables/sahara-common.xml:120(td)
msgid "(StrOpt) A method for Sahara to execute commands on VMs."
msgstr ""
#: ./doc/common/tables/sahara-common.xml:127(td)
msgid "swift_topology_file = etc/sahara/swift.topology"
msgstr ""
#: ./doc/common/tables/sahara-common.xml:128(td)
msgid "(StrOpt) File with Swift topology. It should contain mapping between Swift nodes and racks. File format: node1 /rack1 node2 /rack2 node3 /rack2"
msgstr ""
#: ./doc/common/tables/sahara-common.xml:140(td)
msgid "use_floating_ips = True"
msgstr ""
#: ./doc/common/tables/sahara-common.xml:141(td)
msgid "(BoolOpt) If set to True, Sahara will use floating IPs to communicate with instances. To make sure that all instances have floating IPs assigned in Nova Network set \"auto_assign_floating_ip=True\" in nova.conf. If Neutron is used for networking, make sure that all Node Groups have \"floating_ip_pool\" parameter defined."
msgstr ""
#: ./doc/common/tables/sahara-common.xml:144(td)
msgid "use_identity_api_v3 = True"
msgstr ""
#: ./doc/common/tables/sahara-common.xml:145(td)
msgid "(BoolOpt) Enables Sahara to use Keystone API v3. If that flag is disabled, per-job clusters will not be terminated automatically."
msgstr ""
#: ./doc/common/tables/sahara-common.xml:148(td)
msgid "use_namespaces = False"
msgstr ""
#: ./doc/common/tables/sahara-common.xml:149(td)
msgid "(BoolOpt) Use network namespaces for communication (only valid to use in conjunction with use_neutron=True)."
msgstr ""
#: ./doc/common/tables/sahara-common.xml:152(td)
msgid "use_neutron = False"
msgstr ""
#: ./doc/common/tables/sahara-common.xml:153(td)
msgid "(BoolOpt) Use Neutron Networking (False indicates the use of Nova networking)."
msgstr ""
#: ./doc/common/tables/sahara-common.xml:159(td)
msgid "use_local = True"
msgstr ""
#: ./doc/common/tables/sahara-common.xml:160(td)
msgid "(BoolOpt) Perform sahara-conductor operations locally."
msgstr ""
#: ./doc/common/tables/cinder-api.xml:22(td)
msgid "(StrOpt) File name for the paste.deploy config for cinder-api"
msgstr ""
#: ./doc/common/tables/cinder-api.xml:25(td)
msgid "api_rate_limit = True"
msgstr ""
#: ./doc/common/tables/cinder-api.xml:26(td)
msgid "(BoolOpt) Enables or disables rate limit of the API."
msgstr ""
#: ./doc/common/tables/cinder-api.xml:29(td)
msgid "az_cache_duration = 3600"
msgstr ""
#: ./doc/common/tables/cinder-api.xml:30(td) ./doc/common/tables/cinder-conf-changes.xml:17(td)
msgid "(IntOpt) Cache volume availability zones in memory for the provided duration in seconds"
msgstr ""
#: ./doc/common/tables/cinder-api.xml:38(td)
msgid "(BoolOpt) Deploy v1 of the Cinder API."
msgstr ""
#: ./doc/common/tables/cinder-api.xml:42(td)
msgid "(BoolOpt) Deploy v2 of the Cinder API."
msgstr ""
#: ./doc/common/tables/cinder-api.xml:45(td)
msgid "extra_capabilities = {}"
msgstr ""
#: ./doc/common/tables/cinder-api.xml:46(td)
msgid "(StrOpt) User defined capabilities, a JSON formatted string specifying key/value pairs."
msgstr ""
#: ./doc/common/tables/cinder-api.xml:54(td)
msgid "(IntOpt) The maximum number of items that a collection resource returns in a single response"
msgstr ""
#: ./doc/common/tables/cinder-api.xml:58(td)
msgid "(IntOpt) Max size for body of a request"
msgstr ""
#: ./doc/common/tables/cinder-api.xml:61(td)
msgid "osapi_volume_base_URL = None"
msgstr ""
#: ./doc/common/tables/cinder-api.xml:62(td)
msgid "(StrOpt) Base URL that will be presented to users in links to the OpenStack Volume API"
msgstr ""
#: ./doc/common/tables/cinder-api.xml:65(td)
msgid "osapi_volume_ext_list ="
msgstr ""
#: ./doc/common/tables/cinder-api.xml:66(td)
msgid "(ListOpt) Specify list of extensions to load when using osapi_volume_extension option with cinder.api.contrib.select_extensions"
msgstr ""
#: ./doc/common/tables/cinder-api.xml:69(td)
msgid "osapi_volume_extension = ['cinder.api.contrib.standard_extensions']"
msgstr ""
#: ./doc/common/tables/cinder-api.xml:70(td)
msgid "(MultiStrOpt) osapi volume extension to load"
msgstr ""
#: ./doc/common/tables/cinder-api.xml:73(td)
msgid "osapi_volume_listen = 0.0.0.0"
msgstr ""
#: ./doc/common/tables/cinder-api.xml:74(td)
msgid "(StrOpt) IP address on which OpenStack Volume API listens"
msgstr ""
#: ./doc/common/tables/cinder-api.xml:77(td)
msgid "osapi_volume_listen_port = 8776"
msgstr ""
#: ./doc/common/tables/cinder-api.xml:78(td)
msgid "(IntOpt) Port on which OpenStack Volume API listens"
msgstr ""
#: ./doc/common/tables/cinder-api.xml:81(td)
msgid "osapi_volume_workers = None"
msgstr ""
#: ./doc/common/tables/cinder-api.xml:82(td)
msgid "(IntOpt) Number of workers for OpenStack Volume API service. The default is equal to the number of CPUs available."
msgstr ""
#: ./doc/common/tables/cinder-api.xml:85(td)
msgid "transfer_api_class = cinder.transfer.api.API"
msgstr ""
#: ./doc/common/tables/cinder-api.xml:86(td)
msgid "(StrOpt) The full class name of the volume transfer API class"
msgstr ""
#: ./doc/common/tables/cinder-api.xml:89(td)
msgid "volume_api_class = cinder.volume.api.API"
msgstr ""
#: ./doc/common/tables/cinder-api.xml:93(td)
msgid "volume_name_template = volume-%s"
msgstr ""
#: ./doc/common/tables/cinder-api.xml:94(td)
msgid "(StrOpt) Template string to be used to generate volume names"
msgstr ""
#: ./doc/common/tables/cinder-api.xml:97(td)
msgid "volume_number_multiplier = -1.0"
msgstr ""
#: ./doc/common/tables/cinder-api.xml:98(td) ./doc/common/tables/cinder-conf-changes.xml:321(td)
msgid "(FloatOpt) Multiplier used for weighing volume number. Negative numbers mean to spread vs stack."
msgstr ""
#: ./doc/common/tables/cinder-api.xml:101(td)
msgid "volume_transfer_key_length = 16"
msgstr ""
#: ./doc/common/tables/cinder-api.xml:102(td)
msgid "(IntOpt) The number of characters in the autogenerated auth key."
msgstr ""
#: ./doc/common/tables/cinder-api.xml:105(td)
msgid "volume_transfer_salt_length = 8"
msgstr ""
#: ./doc/common/tables/cinder-api.xml:106(td)
msgid "(IntOpt) The number of characters in the salt."
msgstr ""
#: ./doc/common/tables/trove-db_couchbase.xml:7(caption)
msgid "Description of Couchbase database configuration options"
msgstr ""
#: ./doc/common/tables/trove-db_couchbase.xml:18(th)
msgid "[couchbase]"
msgstr ""
#: ./doc/common/tables/trove-db_couchbase.xml:21(td)
msgid "backup_namespace = trove.guestagent.strategies.backup.couchbase_impl"
msgstr ""
#: ./doc/common/tables/trove-db_couchbase.xml:25(td)
msgid "backup_strategy = CbBackup"
msgstr ""
#: ./doc/common/tables/trove-db_couchbase.xml:33(td)
msgid "mount_point = /var/lib/couchbase"
msgstr ""
#: ./doc/common/tables/trove-db_couchbase.xml:41(td)
msgid "restore_namespace = trove.guestagent.strategies.restore.couchbase_impl"
msgstr ""
#: ./doc/common/tables/trove-db_couchbase.xml:45(td)
msgid "root_on_create = True"
msgstr ""
#: ./doc/common/tables/trove-db_couchbase.xml:49(td)
msgid "tcp_ports = 8091, 8092, 4369, 11209-11211, 21100-21199"
msgstr ""
#. Warning: Do not edit this file. It is automatically generated and your changes will be overwritten. The tool to do so lives in the openstack-doc-tools repository.
#: ./doc/common/tables/nova-conf-changes.xml:4(title)
msgid "New, updated and deprecated options in Juno for OpenStack Compute"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:16(td)
msgid "[DEFAULT] baremetal_scheduler_default_filters = ['RetryFilter', 'AvailabilityZoneFilter', 'ComputeFilter', 'ComputeCapabilitiesFilter', 'ImagePropertiesFilter', 'ExactRamFilter', 'ExactDiskFilter', 'ExactCoreFilter']"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:20(td)
msgid "[DEFAULT] block_device_allocate_retries = 60"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:24(td)
msgid "[DEFAULT] block_device_allocate_retries_interval = 3"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:28(td)
msgid "[DEFAULT] compute_resources = ['vcpu']"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:32(td)
msgid "[DEFAULT] quota_injected_file_path_length = 255"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:33(td) ./doc/common/tables/nova-quota.xml:50(td)
msgid "(IntOpt) Length of injected file path"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:36(td)
msgid "[DEFAULT] scheduler_use_baremetal_filters = False"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:40(td)
msgid "[DEFAULT] shutdown_timeout = 60"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:44(td)
msgid "[cinder] api_insecure = False"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:48(td)
msgid "[cinder] ca_certificates_file = None"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:52(td)
msgid "[cinder] catalog_info = volume:cinder:publicURL"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:56(td)
msgid "[cinder] cross_az_attach = True"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:60(td)
msgid "[cinder] endpoint_template = None"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:64(td)
msgid "[cinder] http_retries = 3"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:68(td)
msgid "[cinder] http_timeout = None"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:72(td)
msgid "[cinder] os_region_name = None"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:76(td)
msgid "[database] use_tpool = False"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:80(td)
msgid "[ephemeral_storage_encryption] cipher = aes-xts-plain64"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:81(td) ./doc/common/tables/nova-ephemeral_storage_encryption.xml:22(td)
msgid "(StrOpt) The cipher and mode to be used to encrypt ephemeral storage. Which ciphers are available ciphers depends on kernel support. See /proc/crypto for the list of available options."
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:84(td)
msgid "[ephemeral_storage_encryption] enabled = False"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:85(td) ./doc/common/tables/nova-ephemeral_storage_encryption.xml:26(td)
msgid "(BoolOpt) Whether to encrypt ephemeral storage"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:88(td)
msgid "[ephemeral_storage_encryption] key_size = 512"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:89(td) ./doc/common/tables/nova-ephemeral_storage_encryption.xml:30(td)
msgid "(IntOpt) The bit length of the encryption key to be used to encrypt ephemeral storage (in XTS mode only half of the bits are used for encryption key)"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:92(td)
msgid "[glance] allowed_direct_url_schemes = []"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:96(td)
msgid "[glance] api_insecure = False"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:100(td)
msgid "[glance] api_servers = None"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:104(td)
msgid "[glance] host = $my_ip"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:108(td)
msgid "[glance] num_retries = 0"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:112(td)
msgid "[glance] port = 9292"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:116(td)
msgid "[glance] protocol = http"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:120(td)
msgid "[hyperv] wait_soft_reboot_seconds = 60"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:121(td) ./doc/common/tables/nova-hyperv.xml:58(td) ./doc/common/tables/nova-libvirt.xml:189(td)
msgid "(IntOpt) Number of seconds to wait for instance to shut down after soft reboot request is made. We fall back to hard reboot if instance does not shutdown within this window."
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:124(td)
msgid "[ironic] admin_auth_token = None"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:128(td)
msgid "[ironic] admin_password = None"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:132(td)
msgid "[ironic] admin_tenant_name = None"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:136(td)
msgid "[ironic] admin_url = None"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:140(td)
msgid "[ironic] admin_username = None"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:144(td)
msgid "[ironic] api_endpoint = None"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:148(td)
msgid "[ironic] api_max_retries = 60"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:152(td)
msgid "[ironic] api_retry_interval = 2"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:156(td)
msgid "[ironic] api_version = 1"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:160(td)
msgid "[ironic] client_log_level = None"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:176(td)
msgid "[libvirt] gid_maps = []"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:177(td) ./doc/common/tables/nova-libvirt.xml:65(td)
msgid "(ListOpt) List of guid targets and ranges.Syntax is guest-gid:host-gid:countMaximum of 5 allowed."
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:180(td)
msgid "[libvirt] hw_machine_type = None"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:181(td) ./doc/common/tables/nova-libvirt.xml:69(td)
msgid "(ListOpt) For qemu or KVM guests, set this option to specify a default machine type per host architecture. You can find a list of supported machine types in your environment by checking the output of the \"virsh capabilities\"command. The format of the value for this config option is host-arch=machine-type. For example: x86_64=machinetype1,armv7l=machinetype2"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:184(td)
msgid "[libvirt] mem_stats_period_seconds = 10"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:185(td) ./doc/common/tables/nova-libvirt.xml:113(td)
msgid "(IntOpt) A number of seconds to memory usage statistics period. Zero or negative value mean to disable memory usage statistics."
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:188(td)
msgid "[libvirt] sysinfo_serial = auto"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:189(td) ./doc/common/tables/nova-libvirt.xml:157(td)
msgid "(StrOpt) The data source used to the populate the host \"serial\" UUID exposed to guest in the virtual BIOS. Permitted options are \"hardware\", \"os\", \"none\" or \"auto\" (default)."
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:192(td)
msgid "[libvirt] uid_maps = []"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:193(td) ./doc/common/tables/nova-libvirt.xml:161(td)
msgid "(ListOpt) List of uid targets and ranges.Syntax is guest-uid:host-uid:countMaximum of 5 allowed."
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:196(td)
msgid "[neutron] admin_auth_url = http://localhost:5000/v2.0"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:200(td)
msgid "[neutron] admin_password = None"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:204(td)
msgid "[neutron] admin_tenant_id = None"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:208(td)
msgid "[neutron] admin_tenant_name = None"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:212(td)
msgid "[neutron] admin_user_id = None"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:216(td)
msgid "[neutron] admin_username = None"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:220(td)
msgid "[neutron] allow_duplicate_networks = False"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:224(td)
msgid "[neutron] api_insecure = False"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:228(td)
msgid "[neutron] auth_strategy = keystone"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:232(td)
msgid "[neutron] ca_certificates_file = None"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:236(td)
msgid "[neutron] extension_sync_interval = 600"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:240(td)
msgid "[neutron] metadata_proxy_shared_secret ="
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:244(td)
msgid "[neutron] ovs_bridge = br-int"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:248(td)
msgid "[neutron] region_name = None"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:252(td)
msgid "[neutron] service_metadata_proxy = False"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:256(td)
msgid "[neutron] url = http://127.0.0.1:9696"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:260(td)
msgid "[neutron] url_timeout = 30"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:264(td)
msgid "[serial_console] base_url = http://127.0.0.1:6083/"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:268(td)
msgid "[serial_console] enabled = False"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:272(td)
msgid "[serial_console] listen = 127.0.0.1"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:276(td)
msgid "[serial_console] port_range = 10000:20000"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:280(td)
msgid "[serial_console] proxyclient_address = 127.0.0.1"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:284(td)
msgid "[vmware] host_port = 443"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:301(td)
msgid "[DEFAULT] auth_strategy"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:302(td)
msgid "noauth"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:307(td)
msgid "amqp=WARN, amqplib=WARN, boto=WARN, qpid=WARN, sqlalchemy=WARN, suds=INFO, oslo.messaging=INFO, iso8601=WARN"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:308(td) ./doc/common/tables/cinder-conf-changes.xml:508(td)
msgid "amqp=WARN, amqplib=WARN, boto=WARN, qpid=WARN, sqlalchemy=WARN, suds=INFO, oslo.messaging=INFO, iso8601=WARN, requests.packages.urllib3.connectionpool=WARN, urllib3.connectionpool=WARN, websocket=WARN, keystonemiddleware=WARN, routes.middleware=WARN"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:311(td)
msgid "[DEFAULT] dhcp_lease_time"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:312(td)
msgid "120"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:313(td)
msgid "86400"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:316(td)
msgid "[DEFAULT] logging_context_format_string"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:317(td)
msgid "%(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user)s %(tenant)s] %(instance)s%(message)s"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:318(td)
msgid "%(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:321(td)
msgid "[database] mysql_sql_mode"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:323(td)
msgid "TRADITIONAL"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:327(td)
msgid "nova.sqlite"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:336(td)
msgid "[libvirt] block_migration_flag"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:337(td)
msgid "VIR_MIGRATE_UNDEFINE_SOURCE, VIR_MIGRATE_PEER2PEER, VIR_MIGRATE_NON_SHARED_INC"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:338(td)
msgid "VIR_MIGRATE_UNDEFINE_SOURCE, VIR_MIGRATE_PEER2PEER, VIR_MIGRATE_LIVE, VIR_MIGRATE_TUNNELLED, VIR_MIGRATE_NON_SHARED_INC"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:341(td)
msgid "[libvirt] live_migration_flag"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:342(td)
msgid "VIR_MIGRATE_UNDEFINE_SOURCE, VIR_MIGRATE_PEER2PEER"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:343(td)
msgid "VIR_MIGRATE_UNDEFINE_SOURCE, VIR_MIGRATE_PEER2PEER, VIR_MIGRATE_LIVE, VIR_MIGRATE_TUNNELLED"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:357(td)
msgid "[DEFAULT] cinder_api_insecure"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:358(td)
msgid "[cinder] api_insecure"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:361(td)
msgid "[DEFAULT] quota_injected_file_path_bytes"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:362(td)
msgid "[DEFAULT] quota_injected_file_path_length"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:365(td)
msgid "[DEFAULT] neutron_url"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:366(td)
msgid "[neutron] url"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:369(td)
msgid "[DEFAULT] neutron_ca_certificates_file"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:370(td)
msgid "[neutron] ca_certificates_file"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:373(td)
msgid "[DEFAULT] cinder_ca_certificates_file"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:374(td)
msgid "[cinder] ca_certificates_file"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:377(td)
msgid "[DEFAULT] neutron_api_insecure"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:378(td)
msgid "[neutron] api_insecure"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:381(td)
msgid "[DEFAULT] neutron_admin_username"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:382(td)
msgid "[neutron] admin_username"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:385(td)
msgid "[DEFAULT] neutron_auth_strategy"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:386(td)
msgid "[neutron] auth_strategy"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:389(td)
msgid "[DEFAULT] glance_api_servers"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:390(td)
msgid "[glance] api_servers"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:393(td)
msgid "[DEFAULT] neutron_admin_tenant_id"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:394(td)
msgid "[neutron] admin_tenant_id"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:397(td)
msgid "[DEFAULT] neutron_admin_tenant_name"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:398(td)
msgid "[neutron] admin_tenant_name"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:401(td)
msgid "[DEFAULT] neutron_metadata_proxy_shared_secret"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:402(td)
msgid "[neutron] metadata_proxy_shared_secret"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:405(td)
msgid "[DEFAULT] cinder_cross_az_attach"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:406(td)
msgid "[cinder] cross_az_attach"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:409(td)
msgid "[DEFAULT] glance_port"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:410(td)
msgid "[glance] port"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:413(td)
msgid "[DEFAULT] neutron_region_name"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:414(td)
msgid "[neutron] region_name"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:417(td)
msgid "[DEFAULT] neutron_admin_password"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:418(td)
msgid "[neutron] admin_password"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:421(td)
msgid "[DEFAULT] glance_num_retries"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:422(td)
msgid "[glance] num_retries"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:425(td)
msgid "[DEFAULT] service_neutron_metadata_proxy"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:426(td)
msgid "[neutron] service_metadata_proxy"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:429(td)
msgid "[DEFAULT] glance_protocol"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:430(td)
msgid "[glance] protocol"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:433(td)
msgid "[DEFAULT] neutron_ovs_bridge"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:434(td)
msgid "[neutron] ovs_bridge"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:437(td)
msgid "[DEFAULT] glance_api_insecure"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:438(td)
msgid "[glance] api_insecure"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:441(td)
msgid "[DEFAULT] cinder_http_retries"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:442(td)
msgid "[cinder] http_retries"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:445(td)
msgid "[DEFAULT] glance_host"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:446(td)
msgid "[glance] host"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:449(td)
msgid "[DEFAULT] neutron_admin_auth_url"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:450(td)
msgid "[neutron] admin_auth_url"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:453(td)
msgid "[DEFAULT] cinder_endpoint_template"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:454(td)
msgid "[cinder] endpoint_template"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:457(td)
msgid "[DEFAULT] neutron_extension_sync_interval"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:458(td)
msgid "[neutron] extension_sync_interval"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:461(td)
msgid "[DEFAULT] neutron_url_timeout"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:462(td)
msgid "[neutron] url_timeout"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:465(td)
msgid "[DEFAULT] os_region_name"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:466(td)
msgid "[cinder] os_region_name"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:469(td)
msgid "[DEFAULT] cinder_catalog_info"
msgstr ""
#: ./doc/common/tables/nova-conf-changes.xml:470(td)
msgid "[cinder] catalog_info"
msgstr ""
#: ./doc/common/tables/heat-clients_trove.xml:7(caption)
msgid "Description of trove clients configuration options"
msgstr ""
#: ./doc/common/tables/heat-clients_trove.xml:18(th)
msgid "[clients_trove]"
msgstr ""
#: ./doc/common/tables/swift-account-server-account-replicator.xml:8(literal)
msgid "[account-replicator]"
msgstr ""
#: ./doc/common/tables/swift-account-server-account-replicator.xml:20(td) ./doc/common/tables/swift-container-server-container-replicator.xml:20(td)
msgid "concurrency = 8"
msgstr ""
#: ./doc/common/tables/swift-account-server-account-replicator.xml:52(td)
msgid "log_name = account-replicator"
msgstr ""
#: ./doc/common/tables/swift-account-server-account-replicator.xml:56(td) ./doc/common/tables/swift-container-server-container-replicator.xml:48(td)
msgid "max_diffs = 100"
msgstr ""
#: ./doc/common/tables/swift-account-server-account-replicator.xml:57(td) ./doc/common/tables/swift-container-server-container-replicator.xml:49(td)
msgid "Caps how long the replicator spends trying to sync a database per pass"
msgstr ""
#: ./doc/common/tables/swift-account-server-account-replicator.xml:64(td) ./doc/common/tables/swift-container-server-container-replicator.xml:56(td)
msgid "per_diff = 1000"
msgstr ""
#: ./doc/common/tables/swift-account-server-account-replicator.xml:65(td) ./doc/common/tables/swift-container-server-container-replicator.xml:57(td)
msgid "Limit number of items to get per diff"
msgstr ""
#: ./doc/common/tables/swift-account-server-account-replicator.xml:76(td) ./doc/common/tables/swift-object-server-object-replicator.xml:92(td) ./doc/common/tables/swift-container-server-container-replicator.xml:68(td)
msgid "run_pause = 30"
msgstr ""
#: ./doc/common/tables/swift-account-server-account-replicator.xml:77(td) ./doc/common/tables/swift-object-server-object-replicator.xml:93(td) ./doc/common/tables/swift-container-server-container-replicator.xml:69(td)
msgid "Time in seconds to wait between replication passes"
msgstr ""
#: ./doc/common/tables/swift-account-server-account-replicator.xml:80(td) ./doc/common/tables/swift-object-server-object-replicator.xml:104(td) ./doc/common/tables/swift-container-server-container-replicator.xml:72(td)
msgid "vm_test_mode = no"
msgstr ""
#: ./doc/common/tables/swift-account-server-account-replicator.xml:81(td) ./doc/common/tables/swift-object-server-object-replicator.xml:105(td) ./doc/common/tables/swift-container-server-container-replicator.xml:73(td)
msgid "Indicates that you are using a VM environment"
msgstr ""
#: ./doc/common/tables/neutron-plumgrid.xml:7(caption)
msgid "Description of PLUMgrid configuration options"
msgstr ""
#: ./doc/common/tables/neutron-plumgrid.xml:18(th)
msgid "[plumgriddirector]"
msgstr ""
#: ./doc/common/tables/neutron-plumgrid.xml:21(td)
msgid "director_server = localhost"
msgstr ""
#: ./doc/common/tables/neutron-plumgrid.xml:22(td)
msgid "(StrOpt) PLUMgrid Director server to connect to"
msgstr ""
#: ./doc/common/tables/neutron-plumgrid.xml:25(td)
msgid "director_server_port = 8080"
msgstr ""
#: ./doc/common/tables/neutron-plumgrid.xml:26(td)
msgid "(StrOpt) PLUMgrid Director server port to connect to"
msgstr ""
#: ./doc/common/tables/neutron-plumgrid.xml:29(td)
msgid "driver = neutron.plugins.plumgrid.drivers.plumlib.Plumlib"
msgstr ""
#: ./doc/common/tables/neutron-plumgrid.xml:33(td) ./doc/common/tables/neutron-ml2_brocade.xml:33(td)
msgid "password = password"
msgstr ""
#: ./doc/common/tables/neutron-plumgrid.xml:34(td)
msgid "(StrOpt) PLUMgrid Director admin password"
msgstr ""
#: ./doc/common/tables/neutron-plumgrid.xml:37(td)
msgid "servertimeout = 5"
msgstr ""
#: ./doc/common/tables/neutron-plumgrid.xml:38(td)
msgid "(IntOpt) PLUMgrid Director server timeout"
msgstr ""
#: ./doc/common/tables/neutron-plumgrid.xml:41(td)
msgid "username = username"
msgstr ""
#: ./doc/common/tables/neutron-plumgrid.xml:42(td)
msgid "(StrOpt) PLUMgrid Director admin username"
msgstr ""
#: ./doc/common/tables/trove-heat.xml:7(caption)
msgid "Description of Orchestration module configuration options"
msgstr ""
#: ./doc/common/tables/trove-heat.xml:21(td)
msgid "heat_service_type = orchestration"
msgstr ""
#: ./doc/common/tables/trove-heat.xml:25(td)
msgid "heat_time_out = 60"
msgstr ""
#: ./doc/common/tables/trove-heat.xml:29(td)
msgid "heat_url = None"
msgstr ""
#: ./doc/common/tables/glance-sheepdog.xml:7(caption)
msgid "Description of Sheepdog configuration options"
msgstr ""
#: ./doc/common/tables/glance-sheepdog.xml:21(td)
msgid "sheepdog_store_address = localhost"
msgstr ""
#: ./doc/common/tables/glance-sheepdog.xml:22(td)
msgid "(StrOpt) IP address of sheep daemon."
msgstr ""
#: ./doc/common/tables/glance-sheepdog.xml:25(td)
msgid "sheepdog_store_chunk_size = 64"
msgstr ""
#: ./doc/common/tables/glance-sheepdog.xml:26(td)
msgid "(IntOpt) Images will be chunked into objects of this size (in megabytes). For best performance, this should be a power of two."
msgstr ""
#: ./doc/common/tables/glance-sheepdog.xml:29(td)
msgid "sheepdog_store_port = 7000"
msgstr ""
#: ./doc/common/tables/glance-sheepdog.xml:30(td)
msgid "(IntOpt) Port of sheep daemon."
msgstr ""
#: ./doc/common/tables/keystone-mapping.xml:7(caption)
msgid "Description of mapping configuration options"
msgstr ""
#: ./doc/common/tables/keystone-mapping.xml:18(th)
msgid "[identity_mapping]"
msgstr ""
#: ./doc/common/tables/keystone-mapping.xml:21(td)
msgid "backward_compatible_ids = True"
msgstr ""
#: ./doc/common/tables/keystone-mapping.xml:25(td)
msgid "driver = keystone.identity.mapping_backends.sql.Mapping"
msgstr ""
#: ./doc/common/tables/keystone-mapping.xml:29(td)
msgid "generator = keystone.identity.id_generators.sha256.Generator"
msgstr ""
#: ./doc/common/tables/swift-container-sync-realms-DEFAULT.xml:8(literal) ./doc/common/tables/swift-container-sync-realms-realm2.xml:8(literal) ./doc/common/tables/swift-container-sync-realms-realm1.xml:8(literal)
msgid "container-sync-realms.conf"
msgstr ""
#: ./doc/common/tables/swift-container-sync-realms-DEFAULT.xml:20(td)
msgid "mtime_check_interval = 300"
msgstr ""
#: ./doc/common/tables/cinder-windows.xml:7(caption)
msgid "Description of Windows configuration options"
msgstr ""
#: ./doc/common/tables/cinder-windows.xml:21(td)
msgid "windows_iscsi_lun_path = C:\\iSCSIVirtualDisks"
msgstr ""
#: ./doc/common/tables/cinder-windows.xml:22(td)
msgid "(StrOpt) Path to store VHD backed volumes"
msgstr ""
#: ./doc/common/tables/cinder-san-solaris.xml:7(caption)
msgid "Description of Solaris SAN configuration options"
msgstr ""
#: ./doc/common/tables/cinder-san-solaris.xml:21(td)
msgid "san_zfs_volume_base = rpool/"
msgstr ""
#: ./doc/common/tables/cinder-san-solaris.xml:22(td)
msgid "(StrOpt) The ZFS path under which to create zvols for volumes."
msgstr ""
#: ./doc/common/tables/neutron-nuage.xml:7(caption)
msgid "Description of Nuage configuration options"
msgstr ""
#: ./doc/common/tables/neutron-nuage.xml:21(td)
msgid "auth_resource ="
msgstr ""
#: ./doc/common/tables/neutron-nuage.xml:22(td)
msgid "(StrOpt) Nuage provided uri for initial authorization to access VSD"
msgstr ""
#: ./doc/common/tables/neutron-nuage.xml:25(td)
msgid "base_uri = /"
msgstr ""
#: ./doc/common/tables/neutron-nuage.xml:26(td)
msgid "(StrOpt) Nuage provided base uri to reach out to VSD"
msgstr ""
#: ./doc/common/tables/neutron-nuage.xml:29(td)
msgid "default_floatingip_quota = 254"
msgstr ""
#: ./doc/common/tables/neutron-nuage.xml:30(td)
msgid "(IntOpt) Per Net Partition quota of floating ips"
msgstr ""
#: ./doc/common/tables/neutron-nuage.xml:33(td)
msgid "default_net_partition_name = OpenStackDefaultNetPartition"
msgstr ""
#: ./doc/common/tables/neutron-nuage.xml:34(td)
msgid "(StrOpt) Default Network partition in which VSD will orchestrate network resources using openstack"
msgstr ""
#: ./doc/common/tables/neutron-nuage.xml:37(td)
msgid "organization = system"
msgstr ""
#: ./doc/common/tables/neutron-nuage.xml:38(td)
msgid "(StrOpt) Organization name in which VSD will orchestrate network resources using openstack"
msgstr ""
#: ./doc/common/tables/neutron-nuage.xml:41(td)
msgid "server = localhost:8800"
msgstr ""
#: ./doc/common/tables/neutron-nuage.xml:42(td)
msgid "(StrOpt) IP Address and Port of Nuage's VSD server"
msgstr ""
#: ./doc/common/tables/neutron-nuage.xml:45(td)
msgid "serverauth = username:password"
msgstr ""
#: ./doc/common/tables/neutron-nuage.xml:46(td)
msgid "(StrOpt) Username and password for authentication"
msgstr ""
#: ./doc/common/tables/neutron-nuage.xml:49(td)
msgid "serverssl = False"
msgstr ""
#: ./doc/common/tables/neutron-nuage.xml:50(td)
msgid "(BoolOpt) Boolean for SSL connection with VSD server"
msgstr ""
#: ./doc/common/tables/neutron-bigswitch.xml:7(caption)
msgid "Description of BigSwitch configuration options"
msgstr ""
#: ./doc/common/tables/neutron-cfg_agent.xml:7(caption)
msgid "Description of cfg agent configuration options"
msgstr ""
#: ./doc/common/tables/neutron-cfg_agent.xml:21(td)
msgid "device_connection_timeout = 30"
msgstr ""
#: ./doc/common/tables/neutron-cfg_agent.xml:25(td)
msgid "hosting_device_dead_timeout = 300"
msgstr ""
#: ./doc/common/tables/neutron-cfg_agent.xml:29(td)
msgid "routing_svc_helper_class = neutron.plugins.cisco.cfg_agent.service_helpers.routing_svc_helper.RoutingServiceHelper"
msgstr ""
#: ./doc/common/tables/neutron-cfg_agent.xml:33(td)
msgid "rpc_loop_interval = 10"
msgstr ""
#: ./doc/common/tables/ceilometer-rpc.xml:21(td)
msgid "dispatcher = ['database']"
msgstr ""
#: ./doc/common/tables/ceilometer-rpc.xml:22(td)
msgid "(MultiStrOpt) Dispatcher to process data."
msgstr ""
#: ./doc/common/tables/ceilometer-rpc.xml:80(td)
msgid "messaging_urls = []"
msgstr ""
#: ./doc/common/tables/ceilometer-rpc.xml:84(th)
msgid "[publisher]"
msgstr ""
#: ./doc/common/tables/ceilometer-rpc.xml:87(td)
msgid "metering_secret = change this or be hacked"
msgstr ""
#: ./doc/common/tables/ceilometer-rpc.xml:88(td)
msgid "(StrOpt) Secret value for signing metering messages."
msgstr ""
#: ./doc/common/tables/ceilometer-rpc.xml:91(th)
msgid "[publisher_notifier]"
msgstr ""
#: ./doc/common/tables/ceilometer-rpc.xml:94(td)
msgid "metering_driver = messagingv2"
msgstr ""
#: ./doc/common/tables/ceilometer-rpc.xml:98(td) ./doc/common/tables/ceilometer-rpc.xml:105(td)
msgid "metering_topic = metering"
msgstr ""
#: ./doc/common/tables/ceilometer-rpc.xml:102(th)
msgid "[publisher_rpc]"
msgstr ""
#: ./doc/common/tables/ceilometer-rpc.xml:106(td)
msgid "(StrOpt) The topic that ceilometer uses for metering messages."
msgstr ""
#: ./doc/common/tables/swift-container-server-container-updater.xml:8(literal)
msgid "[container-updater]"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-updater.xml:20(td)
msgid "account_suppression_time = 60"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-updater.xml:21(td)
msgid "Seconds to suppress updating an account that has generated an error (timeout, not yet found, etc.)"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-updater.xml:25(td)
msgid "concurrency = 4"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-updater.xml:49(td)
msgid "log_name = container-updater"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-updater.xml:61(td) ./doc/common/tables/swift-object-server-object-updater.xml:52(td)
msgid "slowdown = 0.01"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-updater.xml:62(td) ./doc/common/tables/swift-object-server-object-updater.xml:53(td)
msgid "Time in seconds to wait between objects"
msgstr ""
#: ./doc/common/tables/trove-db_mongodb.xml:7(caption)
msgid "Description of MongoDB database configuration options"
msgstr ""
#: ./doc/common/tables/trove-db_mongodb.xml:18(th)
msgid "[mongodb]"
msgstr ""
#: ./doc/common/tables/trove-db_mongodb.xml:21(td)
msgid "api_strategy = trove.common.strategies.mongodb.api.MongoDbAPIStrategy"
msgstr ""
#: ./doc/common/tables/trove-db_mongodb.xml:29(td)
msgid "cluster_support = True"
msgstr ""
#: ./doc/common/tables/trove-db_mongodb.xml:37(td)
msgid "guestagent_strategy = trove.common.strategies.mongodb.guestagent.MongoDbGuestAgentStrategy"
msgstr ""
#: ./doc/common/tables/trove-db_mongodb.xml:41(td)
msgid "mount_point = /var/lib/mongodb"
msgstr ""
#: ./doc/common/tables/trove-db_mongodb.xml:45(td)
msgid "num_config_servers_per_cluster = 3"
msgstr ""
#: ./doc/common/tables/trove-db_mongodb.xml:49(td)
msgid "num_query_routers_per_cluster = 1"
msgstr ""
#: ./doc/common/tables/trove-db_mongodb.xml:57(td)
msgid "taskmanager_strategy = trove.common.strategies.mongodb.taskmanager.MongoDbTaskManagerStrategy"
msgstr ""
#: ./doc/common/tables/trove-db_mongodb.xml:61(td)
msgid "tcp_ports = 2500, 27017"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-replicator.xml:8(literal)
msgid "[object-replicator]"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-replicator.xml:24(td)
msgid "daemonize = on"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-replicator.xml:25(td)
msgid "Whether or not to run replication as a daemon"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-replicator.xml:28(td)
msgid "handoff_delete = auto"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-replicator.xml:29(td)
msgid "By default handoff partitions will be removed when it has successfully replicated to all the canonical nodes. If set to an integer n, it will remove the partition if it is successfully replicated to n nodes. The default setting should not be changed, except for extremem situations. This uses what's set here, or what's set in the DEFAULT section, or 10 (though other sections use 3 as the final default)."
msgstr ""
#: ./doc/common/tables/swift-object-server-object-replicator.xml:32(td)
msgid "handoffs_first = False"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-replicator.xml:33(td)
msgid "If set to True, partitions that are not supposed to be on the node will be replicated first. The default setting should not be changed, except for extreme situations."
msgstr ""
#: ./doc/common/tables/swift-object-server-object-replicator.xml:36(td)
msgid "http_timeout = 60"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-replicator.xml:37(td)
msgid "Maximum duration for an HTTP request"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-replicator.xml:40(td)
msgid "lockup_timeout = 1800"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-replicator.xml:41(td)
msgid "Attempts to kill all workers if nothing replications for lockup_timeout seconds"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-replicator.xml:56(td)
msgid "log_name = object-replicator"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-replicator.xml:60(td) ./doc/common/tables/swift-object-server-object-updater.xml:44(td)
msgid "node_timeout = &lt;whatever's in the DEFAULT section or 10&gt;"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-replicator.xml:72(td)
msgid "ring_check_interval = 15"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-replicator.xml:73(td)
msgid "How often (in seconds) to check the ring"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-replicator.xml:76(td)
msgid "rsync_bwlimit = 0"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-replicator.xml:80(td)
msgid "rsync_error_log_line_length = 0"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-replicator.xml:84(td)
msgid "rsync_io_timeout = 30"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-replicator.xml:85(td)
msgid "Passed to rsync for a max duration (seconds) of an I/O op"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-replicator.xml:88(td)
msgid "rsync_timeout = 900"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-replicator.xml:89(td)
msgid "Max duration (seconds) of a partition rsync"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-replicator.xml:96(td)
msgid "stats_interval = 300"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-replicator.xml:97(td)
msgid "Interval in seconds between logging replication statistics"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-replicator.xml:100(td)
msgid "sync_method = rsync"
msgstr ""
#: ./doc/common/tables/glance-filesystem.xml:7(caption)
msgid "Description of filesystem configuration options"
msgstr ""
#: ./doc/common/tables/glance-filesystem.xml:21(td)
msgid "filesystem_store_datadir = None"
msgstr ""
#: ./doc/common/tables/glance-filesystem.xml:22(td)
msgid "(StrOpt) Directory to which the Filesystem backend store writes images."
msgstr ""
#: ./doc/common/tables/glance-filesystem.xml:25(td)
msgid "filesystem_store_datadirs = None"
msgstr ""
#: ./doc/common/tables/glance-filesystem.xml:26(td)
msgid "(MultiStrOpt) List of directories and its priorities to which the Filesystem backend store writes images."
msgstr ""
#: ./doc/common/tables/glance-filesystem.xml:29(td)
msgid "filesystem_store_file_perm = 0"
msgstr ""
#: ./doc/common/tables/glance-filesystem.xml:30(td)
msgid "(IntOpt) The required permission for created image file. In this way the user other service used, e.g. Nova, who consumes the image could be the exclusive member of the group that owns the files created. Assigning it less then or equal to zero means don't change the default permission of the file. This value will be decoded as an octal digit."
msgstr ""
#: ./doc/common/tables/glance-filesystem.xml:33(td)
msgid "filesystem_store_metadata_file = None"
msgstr ""
#: ./doc/common/tables/glance-filesystem.xml:34(td)
msgid "(StrOpt) The path to a file which contains the metadata to be returned with any location associated with this store. The file must contain a valid JSON dict."
msgstr ""
#: ./doc/common/tables/trove-rpc.xml:21(td)
msgid "allowed_rpc_exception_modules = nova.exception, cinder.exception, exceptions"
msgstr ""
#: ./doc/common/tables/trove-rpc.xml:26(td)
msgid "(IntOpt) Heartbeat frequency"
msgstr ""
#: ./doc/common/tables/trove-rpc.xml:33(td)
msgid "num_tries = 3"
msgstr ""
#: ./doc/common/tables/trove-rpc.xml:42(td)
msgid "(IntOpt) The interval in seconds which periodic tasks are run."
msgstr ""
#: ./doc/common/tables/trove-rpc.xml:45(td)
msgid "rpc_backend = trove.openstack.common.rpc.impl_kombu"
msgstr ""
#: ./doc/common/tables/trove-rpc.xml:46(td)
msgid "(StrOpt) The messaging module to use, defaults to kombu."
msgstr ""
#: ./doc/common/tables/trove-rpc.xml:54(td)
msgid "(IntOpt) Size of RPC connection pool"
msgstr ""
#: ./doc/common/tables/trove-rpc.xml:58(td)
msgid "(IntOpt) Seconds to wait for a response from call or multicall"
msgstr ""
#: ./doc/common/tables/trove-rpc.xml:62(td)
msgid "(IntOpt) Size of RPC thread pool"
msgstr ""
#: ./doc/common/tables/trove-rpc.xml:65(th)
msgid "[rpc_notifier2]"
msgstr ""
#: ./doc/common/tables/trove-rpc.xml:68(td)
msgid "topics = notifications"
msgstr ""
#: ./doc/common/tables/trove-rpc.xml:69(td)
msgid "(ListOpt) AMQP topic(s) used for openstack notifications"
msgstr ""
#: ./doc/common/tables/trove-rpc.xml:72(th)
msgid "[secure_messages]"
msgstr ""
#: ./doc/common/tables/trove-rpc.xml:75(td) ./doc/common/tables/keystone-trust.xml:25(td) ./doc/common/tables/glance-profiler.xml:21(td)
msgid "enabled = True"
msgstr ""
#: ./doc/common/tables/trove-rpc.xml:76(td)
msgid "(BoolOpt) Whether Secure Messaging (Signing) is enabled, defaults to enabled"
msgstr ""
#: ./doc/common/tables/trove-rpc.xml:79(td)
msgid "encrypt = False"
msgstr ""
#: ./doc/common/tables/trove-rpc.xml:80(td)
msgid "(BoolOpt) Whether Secure Messaging (Encryption) is enabled, defaults to not enabled"
msgstr ""
#: ./doc/common/tables/trove-rpc.xml:83(td)
msgid "enforced = False"
msgstr ""
#: ./doc/common/tables/trove-rpc.xml:84(td)
msgid "(BoolOpt) Whether Secure Messaging (Signing) is enforced, defaults to not enforced"
msgstr ""
#: ./doc/common/tables/trove-rpc.xml:87(td)
msgid "kds_endpoint = None"
msgstr ""
#: ./doc/common/tables/trove-rpc.xml:88(td)
msgid "(StrOpt) KDS endpoint (ex: http://kds.example.com:35357/v3)"
msgstr ""
#: ./doc/common/tables/trove-rpc.xml:91(td)
msgid "secret_key = None"
msgstr ""
#: ./doc/common/tables/trove-rpc.xml:92(td)
msgid "(MultiStrOpt) A list of keys: (ex: name:&lt;base64 encoded key&gt;), ignored if secret_keys_file is set"
msgstr ""
#: ./doc/common/tables/trove-rpc.xml:95(td)
msgid "secret_keys_file = None"
msgstr ""
#: ./doc/common/tables/trove-rpc.xml:96(td)
msgid "(StrOpt) Path to the file containing the keys, takes precedence over secret_key"
msgstr ""
#: ./doc/common/tables/ceilometer-swift.xml:21(td)
msgid "reseller_prefix = AUTH_"
msgstr ""
#: ./doc/common/tables/ceilometer-swift.xml:22(td)
msgid "(StrOpt) Swift reseller prefix. Must be on par with reseller_prefix in proxy-server.conf."
msgstr ""
#: ./doc/common/tables/trove-backup.xml:7(caption)
msgid "Description of backup configuration options"
msgstr ""
#: ./doc/common/tables/trove-backup.xml:21(td)
msgid "backup_aes_cbc_key = default_aes_cbc_key"
msgstr ""
#: ./doc/common/tables/trove-backup.xml:22(td)
msgid "(StrOpt) Default OpenSSL aes_cbc key."
msgstr ""
#: ./doc/common/tables/trove-backup.xml:25(td)
msgid "backup_chunk_size = 65536"
msgstr ""
#: ./doc/common/tables/trove-backup.xml:26(td)
msgid "(IntOpt) Chunk size to stream to swift container. This should be in multiples of 128 bytes, since this is the size of an md5 digest block allowing the process to update the file checksum during streaming. See: http://stackoverflow.com/questions/1131220/"
msgstr ""
#: ./doc/common/tables/trove-backup.xml:30(td)
msgid "(StrOpt) Namespace to load backup strategies from."
msgstr ""
#: ./doc/common/tables/trove-backup.xml:33(td)
msgid "backup_runner = trove.guestagent.backup.backup_types.InnoBackupEx"
msgstr ""
#: ./doc/common/tables/trove-backup.xml:37(td)
msgid "backup_runner_options = {}"
msgstr ""
#: ./doc/common/tables/trove-backup.xml:38(td)
msgid "(DictOpt) Additional options to be passed to the backup runner."
msgstr ""
#: ./doc/common/tables/trove-backup.xml:41(td)
msgid "backup_segment_max_size = 2147483648"
msgstr ""
#: ./doc/common/tables/trove-backup.xml:42(td)
msgid "(IntOpt) Maximum size of each segment of the backup file."
msgstr ""
#: ./doc/common/tables/trove-backup.xml:49(td)
msgid "backup_swift_container = database_backups"
msgstr ""
#: ./doc/common/tables/trove-backup.xml:53(td)
msgid "backup_use_gzip_compression = True"
msgstr ""
#: ./doc/common/tables/trove-backup.xml:54(td)
msgid "(BoolOpt) Compress backups using gzip."
msgstr ""
#: ./doc/common/tables/trove-backup.xml:57(td)
msgid "backup_use_openssl_encryption = True"
msgstr ""
#: ./doc/common/tables/trove-backup.xml:58(td)
msgid "(BoolOpt) Encrypt backups using OpenSSL."
msgstr ""
#: ./doc/common/tables/trove-backup.xml:61(td)
msgid "backup_use_snet = False"
msgstr ""
#: ./doc/common/tables/trove-backup.xml:62(td)
msgid "(BoolOpt) Send backup files over snet."
msgstr ""
#: ./doc/common/tables/trove-backup.xml:65(td)
msgid "backups_page_size = 20"
msgstr ""
#: ./doc/common/tables/nova-network.xml:21(td)
msgid "allow_same_net_traffic = True"
msgstr ""
#: ./doc/common/tables/nova-network.xml:22(td)
msgid "(BoolOpt) Whether to allow network traffic from same network"
msgstr ""
#: ./doc/common/tables/nova-network.xml:25(td)
msgid "auto_assign_floating_ip = False"
msgstr ""
#: ./doc/common/tables/nova-network.xml:26(td)
msgid "(BoolOpt) Autoassigning floating IP to VM"
msgstr ""
#: ./doc/common/tables/nova-network.xml:29(td)
msgid "cnt_vpn_clients = 0"
msgstr ""
#: ./doc/common/tables/nova-network.xml:30(td)
msgid "(IntOpt) Number of addresses reserved for vpn clients"
msgstr ""
#: ./doc/common/tables/nova-network.xml:33(td)
msgid "create_unique_mac_address_attempts = 5"
msgstr ""
#: ./doc/common/tables/nova-network.xml:34(td)
msgid "(IntOpt) Number of attempts to create unique mac address"
msgstr ""
#: ./doc/common/tables/nova-network.xml:37(td)
msgid "default_access_ip_network_name = None"
msgstr ""
#: ./doc/common/tables/nova-network.xml:38(td)
msgid "(StrOpt) Name of network to use to set access IPs for instances"
msgstr ""
#: ./doc/common/tables/nova-network.xml:41(td)
msgid "default_floating_pool = nova"
msgstr ""
#: ./doc/common/tables/nova-network.xml:42(td)
msgid "(StrOpt) Default pool for floating IPs"
msgstr ""
#: ./doc/common/tables/nova-network.xml:45(td)
msgid "defer_iptables_apply = False"
msgstr ""
#: ./doc/common/tables/nova-network.xml:46(td)
msgid "(BoolOpt) Whether to batch up the application of IPTables rules during a host restart and apply all at the end of the init phase"
msgstr ""
#: ./doc/common/tables/nova-network.xml:49(td)
msgid "dhcp_domain = novalocal"
msgstr ""
#: ./doc/common/tables/nova-network.xml:53(td)
msgid "dhcp_lease_time = 86400"
msgstr ""
#: ./doc/common/tables/nova-network.xml:54(td)
msgid "(IntOpt) Lifetime of a DHCP lease in seconds"
msgstr ""
#: ./doc/common/tables/nova-network.xml:57(td)
msgid "dhcpbridge = $bindir/nova-dhcpbridge"
msgstr ""
#: ./doc/common/tables/nova-network.xml:58(td)
msgid "(StrOpt) Location of nova-dhcpbridge"
msgstr ""
#: ./doc/common/tables/nova-network.xml:61(td)
msgid "dhcpbridge_flagfile = ['/etc/nova/nova-dhcpbridge.conf']"
msgstr ""
#: ./doc/common/tables/nova-network.xml:62(td)
msgid "(MultiStrOpt) Location of flagfiles for dhcpbridge"
msgstr ""
#: ./doc/common/tables/nova-network.xml:65(td)
msgid "dns_server = []"
msgstr ""
#: ./doc/common/tables/nova-network.xml:66(td)
msgid "(MultiStrOpt) If set, uses specific DNS server for dnsmasq. Can be specified multiple times."
msgstr ""
#: ./doc/common/tables/nova-network.xml:69(td)
msgid "dns_update_periodic_interval = -1"
msgstr ""
#: ./doc/common/tables/nova-network.xml:70(td)
msgid "(IntOpt) Number of seconds to wait between runs of updates to DNS entries."
msgstr ""
#: ./doc/common/tables/nova-network.xml:73(td) ./doc/common/tables/neutron-dhcp_agent.xml:21(td)
msgid "dnsmasq_config_file ="
msgstr ""
#: ./doc/common/tables/nova-network.xml:74(td) ./doc/common/tables/neutron-dhcp_agent.xml:22(td)
msgid "(StrOpt) Override the default dnsmasq settings with this file"
msgstr ""
#: ./doc/common/tables/nova-network.xml:77(td) ./doc/common/tables/neutron-securitygroups.xml:25(td)
msgid "firewall_driver = None"
msgstr ""
#: ./doc/common/tables/nova-network.xml:78(td)
msgid "(StrOpt) Firewall driver (defaults to hypervisor specific iptables driver)"
msgstr ""
#: ./doc/common/tables/nova-network.xml:81(td)
msgid "fixed_ip_disassociate_timeout = 600"
msgstr ""
#: ./doc/common/tables/nova-network.xml:82(td)
msgid "(IntOpt) Seconds after which a deallocated IP is disassociated"
msgstr ""
#: ./doc/common/tables/nova-network.xml:85(td)
msgid "flat_injected = False"
msgstr ""
#: ./doc/common/tables/nova-network.xml:86(td)
msgid "(BoolOpt) Whether to attempt to inject network setup into guest"
msgstr ""
#: ./doc/common/tables/nova-network.xml:89(td)
msgid "flat_interface = None"
msgstr ""
#: ./doc/common/tables/nova-network.xml:90(td)
msgid "(StrOpt) FlatDhcp will bridge into this interface if set"
msgstr ""
#: ./doc/common/tables/nova-network.xml:93(td)
msgid "flat_network_bridge = None"
msgstr ""
#: ./doc/common/tables/nova-network.xml:94(td)
msgid "(StrOpt) Bridge for simple network instances"
msgstr ""
#: ./doc/common/tables/nova-network.xml:97(td)
msgid "flat_network_dns = 8.8.4.4"
msgstr ""
#: ./doc/common/tables/nova-network.xml:98(td)
msgid "(StrOpt) DNS server for simple network"
msgstr ""
#: ./doc/common/tables/nova-network.xml:101(td)
msgid "floating_ip_dns_manager = nova.network.noop_dns_driver.NoopDNSDriver"
msgstr ""
#: ./doc/common/tables/nova-network.xml:102(td)
msgid "(StrOpt) Full class name for the DNS Manager for floating IPs"
msgstr ""
#: ./doc/common/tables/nova-network.xml:105(td)
msgid "force_dhcp_release = True"
msgstr ""
#: ./doc/common/tables/nova-network.xml:106(td)
msgid "(BoolOpt) If True, send a dhcp release on instance termination"
msgstr ""
#: ./doc/common/tables/nova-network.xml:109(td)
msgid "force_snat_range = []"
msgstr ""
#: ./doc/common/tables/nova-network.xml:110(td)
msgid "(MultiStrOpt) Traffic to this range will always be snatted to the fallback ip, even if it would normally be bridged out of the node. Can be specified multiple times."
msgstr ""
#: ./doc/common/tables/nova-network.xml:113(td)
msgid "forward_bridge_interface = ['all']"
msgstr ""
#: ./doc/common/tables/nova-network.xml:114(td)
msgid "(MultiStrOpt) An interface that bridges can forward to. If this is set to all then all traffic will be forwarded. Can be specified multiple times."
msgstr ""
#: ./doc/common/tables/nova-network.xml:117(td)
msgid "gateway = None"
msgstr ""
#: ./doc/common/tables/nova-network.xml:118(td)
msgid "(StrOpt) Default IPv4 gateway"
msgstr ""
#: ./doc/common/tables/nova-network.xml:121(td)
msgid "injected_network_template = $pybasedir/nova/virt/interfaces.template"
msgstr ""
#: ./doc/common/tables/nova-network.xml:122(td)
msgid "(StrOpt) Template file for injected network"
msgstr ""
#: ./doc/common/tables/nova-network.xml:125(td)
msgid "instance_dns_domain ="
msgstr ""
#: ./doc/common/tables/nova-network.xml:126(td)
msgid "(StrOpt) Full class name for the DNS Zone for instance IPs"
msgstr ""
#: ./doc/common/tables/nova-network.xml:129(td)
msgid "instance_dns_manager = nova.network.noop_dns_driver.NoopDNSDriver"
msgstr ""
#: ./doc/common/tables/nova-network.xml:130(td)
msgid "(StrOpt) Full class name for the DNS Manager for instance IPs"
msgstr ""
#: ./doc/common/tables/nova-network.xml:133(td)
msgid "iptables_bottom_regex ="
msgstr ""
#: ./doc/common/tables/nova-network.xml:134(td)
msgid "(StrOpt) Regular expression to match iptables rule that should always be on the bottom."
msgstr ""
#: ./doc/common/tables/nova-network.xml:137(td)
msgid "iptables_drop_action = DROP"
msgstr ""
#: ./doc/common/tables/nova-network.xml:138(td)
msgid "(StrOpt) The table that iptables to jump to when a packet is to be dropped."
msgstr ""
#: ./doc/common/tables/nova-network.xml:141(td)
msgid "iptables_top_regex ="
msgstr ""
#: ./doc/common/tables/nova-network.xml:142(td)
msgid "(StrOpt) Regular expression to match iptables rule that should always be on the top."
msgstr ""
#: ./doc/common/tables/nova-network.xml:145(td)
msgid "l3_lib = nova.network.l3.LinuxNetL3"
msgstr ""
#: ./doc/common/tables/nova-network.xml:146(td)
msgid "(StrOpt) Indicates underlying L3 management library"
msgstr ""
#: ./doc/common/tables/nova-network.xml:149(td)
msgid "linuxnet_interface_driver = nova.network.linux_net.LinuxBridgeInterfaceDriver"
msgstr ""
#: ./doc/common/tables/nova-network.xml:150(td)
msgid "(StrOpt) Driver used to create ethernet devices."
msgstr ""
#: ./doc/common/tables/nova-network.xml:153(td)
msgid "linuxnet_ovs_integration_bridge = br-int"
msgstr ""
#: ./doc/common/tables/nova-network.xml:154(td)
msgid "(StrOpt) Name of Open vSwitch bridge used with linuxnet"
msgstr ""
#: ./doc/common/tables/nova-network.xml:157(td)
msgid "multi_host = False"
msgstr ""
#: ./doc/common/tables/nova-network.xml:158(td)
msgid "(BoolOpt) Default value for multi_host in networks. Also, if set, some rpc network calls will be sent directly to host."
msgstr ""
#: ./doc/common/tables/nova-network.xml:161(td)
msgid "network_allocate_retries = 0"
msgstr ""
#: ./doc/common/tables/nova-network.xml:162(td)
msgid "(IntOpt) Number of times to retry network allocation on failures"
msgstr ""
#: ./doc/common/tables/nova-network.xml:165(td)
msgid "network_api_class = nova.network.api.API"
msgstr ""
#: ./doc/common/tables/nova-network.xml:166(td)
msgid "(StrOpt) The full class name of the network API class to use"
msgstr ""
#: ./doc/common/tables/nova-network.xml:170(td)
msgid "(IntOpt) DEPRECATED: THIS VALUE SHOULD BE SET WHEN CREATING THE NETWORK. MTU setting for network interface."
msgstr ""
#: ./doc/common/tables/nova-network.xml:173(td)
msgid "network_driver = nova.network.linux_net"
msgstr ""
#: ./doc/common/tables/nova-network.xml:174(td)
msgid "(StrOpt) Driver to use for network creation"
msgstr ""
#: ./doc/common/tables/nova-network.xml:177(td)
msgid "network_manager = nova.network.manager.VlanManager"
msgstr ""
#: ./doc/common/tables/nova-network.xml:178(td)
msgid "(StrOpt) Full class name for the Manager for network"
msgstr ""
#: ./doc/common/tables/nova-network.xml:181(td)
msgid "network_size = 256"
msgstr ""
#: ./doc/common/tables/nova-network.xml:182(td)
msgid "(IntOpt) Number of addresses in each private subnet"
msgstr ""
#: ./doc/common/tables/nova-network.xml:185(td)
msgid "network_topic = network"
msgstr ""
#: ./doc/common/tables/nova-network.xml:186(td)
msgid "(StrOpt) The topic network nodes listen on"
msgstr ""
#: ./doc/common/tables/nova-network.xml:189(td)
msgid "networks_path = $state_path/networks"
msgstr ""
#: ./doc/common/tables/nova-network.xml:190(td)
msgid "(StrOpt) Location to keep network config files"
msgstr ""
#: ./doc/common/tables/nova-network.xml:193(td)
msgid "num_networks = 1"
msgstr ""
#: ./doc/common/tables/nova-network.xml:194(td)
msgid "(IntOpt) Number of networks to support"
msgstr ""
#: ./doc/common/tables/nova-network.xml:197(td)
msgid "ovs_vsctl_timeout = 120"
msgstr ""
#: ./doc/common/tables/nova-network.xml:198(td)
msgid "(IntOpt) Amount of time, in seconds, that ovs_vsctl should wait for a response from the database. 0 is to wait forever."
msgstr ""
#: ./doc/common/tables/nova-network.xml:201(td)
msgid "public_interface = eth0"
msgstr ""
#: ./doc/common/tables/nova-network.xml:202(td)
msgid "(StrOpt) Interface for public IP addresses"
msgstr ""
#: ./doc/common/tables/nova-network.xml:205(td)
msgid "routing_source_ip = $my_ip"
msgstr ""
#: ./doc/common/tables/nova-network.xml:206(td)
msgid "(StrOpt) Public IP of network host"
msgstr ""
#: ./doc/common/tables/nova-network.xml:209(td)
msgid "security_group_api = nova"
msgstr ""
#: ./doc/common/tables/nova-network.xml:210(td)
msgid "(StrOpt) The full class name of the security API class"
msgstr ""
#: ./doc/common/tables/nova-network.xml:213(td)
msgid "send_arp_for_ha = False"
msgstr ""
#: ./doc/common/tables/nova-network.xml:214(td)
msgid "(BoolOpt) Send gratuitous ARPs for HA setup"
msgstr ""
#: ./doc/common/tables/nova-network.xml:217(td)
msgid "send_arp_for_ha_count = 3"
msgstr ""
#: ./doc/common/tables/nova-network.xml:218(td)
msgid "(IntOpt) Send this many gratuitous ARPs for HA setup"
msgstr ""
#: ./doc/common/tables/nova-network.xml:221(td)
msgid "share_dhcp_address = False"
msgstr ""
#: ./doc/common/tables/nova-network.xml:222(td)
msgid "(BoolOpt) DEPRECATED: THIS VALUE SHOULD BE SET WHEN CREATING THE NETWORK. If True in multi_host mode, all compute hosts share the same dhcp address. The same IP address used for DHCP will be added on each nova-network node which is only visible to the vms on the same host."
msgstr ""
#: ./doc/common/tables/nova-network.xml:225(td)
msgid "teardown_unused_network_gateway = False"
msgstr ""
#: ./doc/common/tables/nova-network.xml:226(td)
msgid "(BoolOpt) If True, unused gateway devices (VLAN and bridge) are deleted in VLAN network mode with multi hosted networks"
msgstr ""
#: ./doc/common/tables/nova-network.xml:229(td)
msgid "update_dns_entries = False"
msgstr ""
#: ./doc/common/tables/nova-network.xml:230(td)
msgid "(BoolOpt) If True, when a DNS entry must be updated, it sends a fanout cast to all network hosts to update their DNS entries in multi host mode"
msgstr ""
#: ./doc/common/tables/nova-network.xml:233(td)
msgid "use_network_dns_servers = False"
msgstr ""
#: ./doc/common/tables/nova-network.xml:234(td)
msgid "(BoolOpt) If set, uses the dns1 and dns2 from the network ref. as dns servers."
msgstr ""
#: ./doc/common/tables/nova-network.xml:237(td)
msgid "use_neutron_default_nets = False"
msgstr ""
#: ./doc/common/tables/nova-network.xml:238(td)
msgid "(StrOpt) Control for checking for default networks"
msgstr ""
#: ./doc/common/tables/nova-network.xml:241(td)
msgid "use_single_default_gateway = False"
msgstr ""
#: ./doc/common/tables/nova-network.xml:242(td)
msgid "(BoolOpt) Use single default gateway. Only first nic of vm will get default gateway from dhcp server"
msgstr ""
#: ./doc/common/tables/nova-network.xml:245(td)
msgid "vlan_interface = None"
msgstr ""
#: ./doc/common/tables/nova-network.xml:246(td)
msgid "(StrOpt) VLANs will bridge into this interface if set"
msgstr ""
#: ./doc/common/tables/nova-network.xml:249(td)
msgid "vlan_start = 100"
msgstr ""
#: ./doc/common/tables/nova-network.xml:250(td)
msgid "(IntOpt) First VLAN for private networks"
msgstr ""
#: ./doc/common/tables/nova-network.xml:256(td)
msgid "vlan_interface = vmnic0"
msgstr ""
#: ./doc/common/tables/nova-network.xml:257(td)
msgid "(StrOpt) Physical ethernet adapter name for vlan networking"
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:7(caption)
msgid "Description of SSL configuration options"
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:18(th)
msgid "[signing]"
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:21(td) ./doc/common/tables/keystone-ssl.xml:56(td)
msgid "ca_certs = /etc/keystone/ssl/certs/ca.pem"
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:22(td)
msgid "(StrOpt) Path of the CA for token signing."
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:25(td) ./doc/common/tables/keystone-ssl.xml:60(td)
msgid "ca_key = /etc/keystone/ssl/private/cakey.pem"
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:26(td)
msgid "(StrOpt) Path of the CA key for token signing."
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:29(td)
msgid "cert_subject = /C=US/ST=Unset/L=Unset/O=Unset/CN=www.example.com"
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:30(td)
msgid "(StrOpt) Certificate subject (auto generated certificate) for token signing."
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:33(td)
msgid "certfile = /etc/keystone/ssl/certs/signing_cert.pem"
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:34(td)
msgid "(StrOpt) Path of the certfile for token signing. For non-production environments, you may be interested in using `keystone-manage pki_setup` to generate self-signed certificates."
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:37(td)
msgid "key_size = 2048"
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:38(td)
msgid "(IntOpt) Key size (in bits) for token signing cert (auto generated certificate)."
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:41(td)
msgid "keyfile = /etc/keystone/ssl/private/signing_key.pem"
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:42(td)
msgid "(StrOpt) Path of the keyfile for token signing."
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:45(td)
msgid "token_format = None"
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:46(td)
msgid "(StrOpt) Deprecated in favor of provider in the [token] section."
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:49(td) ./doc/common/tables/keystone-ssl.xml:88(td)
msgid "valid_days = 3650"
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:50(td)
msgid "(IntOpt) Days the token signing cert is valid for (auto generated certificate)."
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:57(td)
msgid "(StrOpt) Path of the ca cert file for SSL."
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:61(td)
msgid "(StrOpt) Path of the CA key file for SSL."
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:64(td)
msgid "cert_required = False"
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:65(td)
msgid "(BoolOpt) Require client certificate."
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:68(td)
msgid "cert_subject = /C=US/ST=Unset/L=Unset/O=Unset/CN=localhost"
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:69(td)
msgid "(StrOpt) SSL certificate subject (auto generated certificate)."
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:72(td)
msgid "certfile = /etc/keystone/ssl/certs/keystone.pem"
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:73(td)
msgid "(StrOpt) Path of the certfile for SSL. For non-production environments, you may be interested in using `keystone-manage ssl_setup` to generate self-signed certificates."
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:77(td)
msgid "(BoolOpt) Toggle for SSL support on the Keystone eventlet servers."
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:80(td)
msgid "key_size = 1024"
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:81(td)
msgid "(IntOpt) SSL key length (in bits) (auto generated certificate)."
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:84(td)
msgid "keyfile = /etc/keystone/ssl/private/keystonekey.pem"
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:85(td)
msgid "(StrOpt) Path of the keyfile for SSL."
msgstr ""
#: ./doc/common/tables/keystone-ssl.xml:89(td)
msgid "(IntOpt) Days the certificate is valid for once signed (auto generated certificate)."
msgstr ""
#: ./doc/common/tables/cinder-prophetstor_dpl.xml:7(caption)
msgid "Description of ProphetStor Fibre Channel and iSCSi drivers configuration options"
msgstr ""
#: ./doc/common/tables/cinder-prophetstor_dpl.xml:21(td)
msgid "dpl_pool ="
msgstr ""
#: ./doc/common/tables/cinder-prophetstor_dpl.xml:22(td) ./doc/common/tables/cinder-conf-changes.xml:57(td)
msgid "(StrOpt) DPL pool uuid in which DPL volumes are stored."
msgstr ""
#: ./doc/common/tables/cinder-prophetstor_dpl.xml:25(td)
msgid "dpl_port = 8357"
msgstr ""
#: ./doc/common/tables/cinder-prophetstor_dpl.xml:26(td) ./doc/common/tables/cinder-conf-changes.xml:61(td)
msgid "(IntOpt) DPL port number."
msgstr ""
#: ./doc/common/tables/cinder-prophetstor_dpl.xml:41(td) ./doc/common/tables/cinder-san.xml:53(td)
msgid "san_thin_provision = True"
msgstr ""
#: ./doc/common/tables/cinder-prophetstor_dpl.xml:42(td) ./doc/common/tables/cinder-san.xml:54(td)
msgid "(BoolOpt) Use thin provisioning for SAN volumes?"
msgstr ""
#: ./doc/common/tables/nova-ca.xml:7(caption)
msgid "Description of CA configuration options"
msgstr ""
#: ./doc/common/tables/nova-ca.xml:21(td)
msgid "ca_file = cacert.pem"
msgstr ""
#: ./doc/common/tables/nova-ca.xml:22(td)
msgid "(StrOpt) Filename of root CA"
msgstr ""
#: ./doc/common/tables/nova-ca.xml:25(td)
msgid "ca_path = $state_path/CA"
msgstr ""
#: ./doc/common/tables/nova-ca.xml:26(td)
msgid "(StrOpt) Where we keep our root CA"
msgstr ""
#: ./doc/common/tables/nova-ca.xml:29(td)
msgid "cert_manager = nova.cert.manager.CertManager"
msgstr ""
#: ./doc/common/tables/nova-ca.xml:30(td)
msgid "(StrOpt) Full class name for the Manager for cert"
msgstr ""
#: ./doc/common/tables/nova-ca.xml:33(td)
msgid "cert_topic = cert"
msgstr ""
#: ./doc/common/tables/nova-ca.xml:34(td)
msgid "(StrOpt) The topic cert nodes listen on"
msgstr ""
#: ./doc/common/tables/nova-ca.xml:37(td)
msgid "crl_file = crl.pem"
msgstr ""
#: ./doc/common/tables/nova-ca.xml:38(td)
msgid "(StrOpt) Filename of root Certificate Revocation List"
msgstr ""
#: ./doc/common/tables/nova-ca.xml:41(td)
msgid "key_file = private/cakey.pem"
msgstr ""
#: ./doc/common/tables/nova-ca.xml:42(td)
msgid "(StrOpt) Filename of private key"
msgstr ""
#: ./doc/common/tables/nova-ca.xml:45(td)
msgid "keys_path = $state_path/keys"
msgstr ""
#: ./doc/common/tables/nova-ca.xml:46(td)
msgid "(StrOpt) Where we keep our keys"
msgstr ""
#: ./doc/common/tables/nova-ca.xml:49(td)
msgid "project_cert_subject = /C=US/ST=California/O=OpenStack/OU=NovaDev/CN=project-ca-%.16s-%s"
msgstr ""
#: ./doc/common/tables/nova-ca.xml:50(td)
msgid "(StrOpt) Subject for certificate for projects, %s for project, timestamp"
msgstr ""
#: ./doc/common/tables/nova-ca.xml:53(td)
msgid "use_project_ca = False"
msgstr ""
#: ./doc/common/tables/nova-ca.xml:54(td)
msgid "(BoolOpt) Should we use a CA for each project?"
msgstr ""
#: ./doc/common/tables/nova-ca.xml:57(td)
msgid "user_cert_subject = /C=US/ST=California/O=OpenStack/OU=NovaDev/CN=%.16s-%.16s-%s"
msgstr ""
#: ./doc/common/tables/nova-ca.xml:58(td)
msgid "(StrOpt) Subject for certificate for users, %s for project, user, timestamp"
msgstr ""
#: ./doc/common/tables/neutron-l3_arista.xml:7(caption)
msgid "Description of Arista layer-3 service plug-in configuration options"
msgstr ""
#: ./doc/common/tables/neutron-l3_arista.xml:18(th)
msgid "[l3_arista]"
msgstr ""
#: ./doc/common/tables/neutron-l3_arista.xml:21(td)
msgid "l3_sync_interval = 180"
msgstr ""
#: ./doc/common/tables/neutron-l3_arista.xml:25(td)
msgid "mlag_config = False"
msgstr ""
#: ./doc/common/tables/neutron-l3_arista.xml:29(td)
msgid "primary_l3_host ="
msgstr ""
#: ./doc/common/tables/neutron-l3_arista.xml:33(td)
msgid "primary_l3_host_password ="
msgstr ""
#: ./doc/common/tables/neutron-l3_arista.xml:37(td)
msgid "primary_l3_host_username ="
msgstr ""
#: ./doc/common/tables/neutron-l3_arista.xml:41(td)
msgid "secondary_l3_host ="
msgstr ""
#: ./doc/common/tables/neutron-l3_arista.xml:45(td)
msgid "use_vrf = False"
msgstr ""
#: ./doc/common/tables/neutron-dhcp_agent.xml:7(caption)
msgid "Description of DHCP agent configuration options"
msgstr ""
#: ./doc/common/tables/neutron-dhcp_agent.xml:25(td)
msgid "dnsmasq_dns_servers = None"
msgstr ""
#: ./doc/common/tables/neutron-dhcp_agent.xml:26(td)
msgid "(ListOpt) Comma-separated list of the DNS servers which will be used as forwarders."
msgstr ""
#: ./doc/common/tables/neutron-dhcp_agent.xml:29(td)
msgid "dnsmasq_lease_max = 16777216"
msgstr ""
#: ./doc/common/tables/neutron-dhcp_agent.xml:30(td)
msgid "(IntOpt) Limit number of leases to prevent a denial-of-service."
msgstr ""
#: ./doc/common/tables/neutron-dhcp_agent.xml:33(td)
msgid "enable_isolated_metadata = False"
msgstr ""
#: ./doc/common/tables/neutron-dhcp_agent.xml:34(td)
msgid "(BoolOpt) Support Metadata requests on isolated networks."
msgstr ""
#: ./doc/common/tables/neutron-dhcp_agent.xml:37(td)
msgid "enable_metadata_network = False"
msgstr ""
#: ./doc/common/tables/neutron-dhcp_agent.xml:38(td)
msgid "(BoolOpt) Allows for serving metadata requests from a dedicated network. Requires enable_isolated_metadata = True"
msgstr ""
#: ./doc/common/tables/neutron-dhcp_agent.xml:41(td)
msgid "num_sync_threads = 4"
msgstr ""
#: ./doc/common/tables/neutron-dhcp_agent.xml:42(td)
msgid "(IntOpt) Number of threads to use during sync process."
msgstr ""
#: ./doc/common/tables/neutron-dhcp_agent.xml:45(td)
msgid "resync_interval = 5"
msgstr ""
#: ./doc/common/tables/neutron-dhcp_agent.xml:46(td)
msgid "(IntOpt) Interval to resync."
msgstr ""
#: ./doc/common/tables/neutron-dhcp_agent.xml:49(td)
msgid "use_namespaces = True"
msgstr ""
#: ./doc/common/tables/neutron-dhcp_agent.xml:50(td)
msgid "(BoolOpt) Allow overlapping IP."
msgstr ""
#: ./doc/common/tables/ceilometer-collector.xml:7(caption)
msgid "Description of collector configuration options"
msgstr ""
#: ./doc/common/tables/ceilometer-collector.xml:21(td)
msgid "collector_workers = 1"
msgstr ""
#: ./doc/common/tables/ceilometer-collector.xml:22(td)
msgid "(IntOpt) Number of workers for collector service. A single collector is enabled by default."
msgstr ""
#: ./doc/common/tables/ceilometer-collector.xml:25(th)
msgid "[collector]"
msgstr ""
#: ./doc/common/tables/ceilometer-collector.xml:28(td)
msgid "requeue_sample_on_dispatcher_error = False"
msgstr ""
#: ./doc/common/tables/ceilometer-collector.xml:32(td)
msgid "udp_address = 0.0.0.0"
msgstr ""
#: ./doc/common/tables/ceilometer-collector.xml:33(td)
msgid "(StrOpt) Address to which the UDP socket is bound. Set to an empty string to disable."
msgstr ""
#: ./doc/common/tables/ceilometer-collector.xml:36(td)
msgid "udp_port = 4952"
msgstr ""
#: ./doc/common/tables/ceilometer-collector.xml:37(td)
msgid "(IntOpt) Port to which the UDP socket is bound."
msgstr ""
#: ./doc/common/tables/ceilometer-collector.xml:40(th)
msgid "[dispatcher_file]"
msgstr ""
#: ./doc/common/tables/ceilometer-collector.xml:43(td)
msgid "backup_count = 0"
msgstr ""
#: ./doc/common/tables/ceilometer-collector.xml:44(td)
msgid "(IntOpt) The max number of the files to keep."
msgstr ""
#: ./doc/common/tables/ceilometer-collector.xml:47(td)
msgid "file_path = None"
msgstr ""
#: ./doc/common/tables/ceilometer-collector.xml:48(td)
msgid "(StrOpt) Name and the location of the file to record meters."
msgstr ""
#: ./doc/common/tables/ceilometer-collector.xml:51(td)
msgid "max_bytes = 0"
msgstr ""
#: ./doc/common/tables/ceilometer-collector.xml:52(td)
msgid "(IntOpt) The max size of the file."
msgstr ""
#: ./doc/common/tables/cinder-hds-hus.xml:7(caption)
msgid "Description of HDS HUS iSCSI driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-hds-hus.xml:21(td)
msgid "hds_cinder_config_file = /opt/hds/hus/cinder_hus_conf.xml"
msgstr ""
#: ./doc/common/tables/cinder-hds-hus.xml:22(td)
msgid "(StrOpt) The configuration file for the Cinder HDS driver for HUS"
msgstr ""
#: ./doc/common/tables/cinder-netapp_7mode_iscsi.xml:7(caption)
msgid "Description of NetApp 7-Mode iSCSI driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-netapp_7mode_iscsi.xml:53(td)
msgid "netapp_vfiler = None"
msgstr ""
#: ./doc/common/tables/cinder-netapp_7mode_iscsi.xml:54(td)
msgid "(StrOpt) The vFiler unit on which provisioning of block storage volumes will be done. This option is only used by the driver when connecting to an instance with a storage family of Data ONTAP operating in 7-Mode and the storage protocol selected is iSCSI. Only use this option when utilizing the MultiStore feature on the NetApp storage system."
msgstr ""
#: ./doc/common/tables/cinder-netapp_7mode_iscsi.xml:57(td)
msgid "netapp_volume_list = None"
msgstr ""
#: ./doc/common/tables/cinder-netapp_7mode_iscsi.xml:58(td)
msgid "(StrOpt) This option is only utilized when the storage protocol is configured to use iSCSI. This option is used to restrict provisioning to the specified controller volumes. Specify the value of this option to be a comma separated list of NetApp controller volume names to be used for provisioning."
msgstr ""
#: ./doc/common/tables/swift-swift-swift-hash.xml:8(literal)
msgid "[swift-hash]"
msgstr ""
#: ./doc/common/tables/swift-swift-swift-hash.xml:20(td)
msgid "swift_hash_path_prefix = changeme"
msgstr ""
#: ./doc/common/tables/swift-swift-swift-hash.xml:21(td)
msgid "A prefix used by hash_path to offer a bit more security when generating hashes for paths. It simply appends this value to all paths; if someone knows this suffix, it's easier for them to guess the hash a path will end up with. New installations are advised to set this parameter to a random secret, which would not be disclosed ouside the organization. The same secret needs to be used by all swift servers of the same cluster. Existing installations should set this parameter to an empty string."
msgstr ""
#: ./doc/common/tables/swift-swift-swift-hash.xml:32(td)
msgid "swift_hash_path_suffix = changeme"
msgstr ""
#: ./doc/common/tables/swift-swift-swift-hash.xml:33(td)
msgid "A suffix used by hash_path to offer a bit more security when generating hashes for paths. It simply appends this value to all paths; if someone knows this suffix, it's easier for them to guess the hash a path will end up with. New installations are advised to set this parameter to a random secret, which would not be disclosed ouside the organization. The same secret needs to be used by all swift servers of the same cluster. Existing installations should set this parameter to an empty string."
msgstr ""
#: ./doc/common/tables/neutron-ml2_gre.xml:7(caption)
msgid "Description of ML2 GRE configuration options"
msgstr ""
#: ./doc/common/tables/neutron-ml2_gre.xml:18(th)
msgid "[ml2_type_gre]"
msgstr ""
#: ./doc/common/tables/neutron-ml2_gre.xml:22(td)
msgid "(ListOpt) Comma-separated list of &lt;tun_min&gt;:&lt;tun_max&gt; tuples enumerating ranges of GRE tunnel IDs that are available for tenant network allocation"
msgstr ""
#: ./doc/common/tables/neutron-varmour.xml:7(caption)
msgid "Description of vArmour configuration options"
msgstr ""
#: ./doc/common/tables/neutron-varmour.xml:18(th)
msgid "[vArmour]"
msgstr ""
#: ./doc/common/tables/neutron-varmour.xml:21(td)
msgid "director = localhost"
msgstr ""
#: ./doc/common/tables/neutron-varmour.xml:22(td)
msgid "(StrOpt) vArmour director ip"
msgstr ""
#: ./doc/common/tables/neutron-varmour.xml:25(td)
msgid "director_port = 443"
msgstr ""
#: ./doc/common/tables/neutron-varmour.xml:26(td)
msgid "(StrOpt) vArmour director port"
msgstr ""
#: ./doc/common/tables/neutron-varmour.xml:29(td)
msgid "password = varmour"
msgstr ""
#: ./doc/common/tables/neutron-varmour.xml:30(td)
msgid "(StrOpt) vArmour director password"
msgstr ""
#: ./doc/common/tables/neutron-varmour.xml:33(td)
msgid "username = varmour"
msgstr ""
#: ./doc/common/tables/neutron-varmour.xml:34(td)
msgid "(StrOpt) vArmour director username"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-dlo.xml:8(literal)
msgid "[filter-dlo]"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-dlo.xml:28(td)
msgid "rate_limit_segments_per_sec = 1"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-dlo.xml:32(td)
msgid "use = egg:swift#dlo"
msgstr ""
#: ./doc/common/tables/nova-kombu.xml:7(caption)
msgid "Description of kombu configuration options"
msgstr ""
#: ./doc/common/tables/trove-guestagent.xml:7(caption)
msgid "Description of guest agent configuration options"
msgstr ""
#: ./doc/common/tables/trove-guestagent.xml:21(td)
msgid "agent_call_high_timeout = 1000"
msgstr ""
#: ./doc/common/tables/trove-guestagent.xml:25(td)
msgid "agent_call_low_timeout = 5"
msgstr ""
#: ./doc/common/tables/trove-guestagent.xml:29(td)
msgid "agent_heartbeat_time = 10"
msgstr ""
#: ./doc/common/tables/trove-guestagent.xml:33(td)
msgid "guest_config = $pybasedir/etc/trove/trove-guestagent.conf.sample"
msgstr ""
#: ./doc/common/tables/trove-guestagent.xml:34(td)
msgid "(StrOpt) Path to guestagent config file."
msgstr ""
#: ./doc/common/tables/trove-guestagent.xml:37(td)
msgid "guest_id = None"
msgstr ""
#: ./doc/common/tables/trove-guestagent.xml:41(td)
msgid "ignore_dbs = lost+found, mysql, information_schema"
msgstr ""
#: ./doc/common/tables/trove-guestagent.xml:45(td)
msgid "ignore_users = os_admin, root"
msgstr ""
#: ./doc/common/tables/trove-guestagent.xml:49(td)
msgid "mount_options = defaults,noatime"
msgstr ""
#: ./doc/common/tables/trove-guestagent.xml:54(td)
msgid "(StrOpt) Namespace to load restore strategies from."
msgstr ""
#: ./doc/common/tables/trove-guestagent.xml:57(td)
msgid "storage_namespace = trove.guestagent.strategies.storage.swift"
msgstr ""
#: ./doc/common/tables/trove-guestagent.xml:58(td)
msgid "(StrOpt) Namespace to load the default storage strategy from."
msgstr ""
#: ./doc/common/tables/trove-guestagent.xml:61(td)
msgid "storage_strategy = SwiftStorage"
msgstr ""
#: ./doc/common/tables/trove-guestagent.xml:62(td)
msgid "(StrOpt) Default strategy to store backups."
msgstr ""
#: ./doc/common/tables/trove-guestagent.xml:65(td) ./doc/common/tables/trove-taskmanager.xml:65(td)
msgid "usage_sleep_time = 5"
msgstr ""
#: ./doc/common/tables/trove-guestagent.xml:66(td) ./doc/common/tables/trove-taskmanager.xml:66(td)
msgid "(IntOpt) Time to sleep during the check active guest."
msgstr ""
#: ./doc/common/tables/nova-qpid.xml:45(td) ./doc/common/tables/nova-rpc_all.xml:85(td)
msgid "qpid_receiver_capacity = 1"
msgstr ""
#: ./doc/common/tables/nova-qpid.xml:46(td) ./doc/common/tables/nova-rpc_all.xml:86(td)
msgid "(IntOpt) The number of prefetched messages held by receiver."
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:7(caption)
msgid "Description of LBaaS Radware configuration options"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:18(th)
msgid "[radware]"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:21(td)
msgid "actions_to_skip = setup_l2_l3"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:22(td)
msgid "(ListOpt) List of actions that are not pushed to the completion queue."
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:25(td)
msgid "ha_secondary_address = None"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:29(td)
msgid "l2_l3_ctor_params = {'ha_network_name': 'HA-Network', 'service': '_REPLACE_', 'ha_ip_pool_name': 'default', 'twoleg_enabled': '_REPLACE_', 'allocate_ha_ips': True, 'allocate_ha_vrrp': True}"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:30(td)
msgid "(DictOpt) Parameter for l2_l3 workflow constructor."
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:33(td)
msgid "l2_l3_setup_params = {'data_ip_address': '192.168.200.99', 'data_port': 1, 'gateway': '192.168.200.1', 'ha_port': 2, 'data_ip_mask': '255.255.255.0'}"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:34(td)
msgid "(DictOpt) Parameter for l2_l3 workflow setup."
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:37(td)
msgid "l2_l3_workflow_name = openstack_l2_l3"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:38(td)
msgid "(StrOpt) Name of l2_l3 workflow. Default: openstack_l2_l3."
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:41(td)
msgid "l4_action_name = BaseCreate"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:42(td)
msgid "(StrOpt) Name of the l4 workflow action. Default: BaseCreate."
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:45(td)
msgid "l4_workflow_name = openstack_l4"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:46(td)
msgid "(StrOpt) Name of l4 workflow. Default: openstack_l4."
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:49(td)
msgid "service_adc_type = VA"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:50(td)
msgid "(StrOpt) Service ADC type. Default: VA."
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:53(td)
msgid "service_adc_version ="
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:54(td)
msgid "(StrOpt) Service ADC version."
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:57(td)
msgid "service_cache = 20"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:58(td)
msgid "(IntOpt) Size of service cache. Default: 20."
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:61(td)
msgid "service_compression_throughput = 100"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:62(td)
msgid "(IntOpt) Service compression throughput. Default: 100."
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:65(td)
msgid "service_ha_pair = False"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:66(td)
msgid "(BoolOpt) Enables or disables the Service HA pair. Default: False."
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:69(td)
msgid "service_isl_vlan = -1"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:70(td)
msgid "(IntOpt) A required VLAN for the interswitch link to use."
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:73(td)
msgid "service_resource_pool_ids ="
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:74(td)
msgid "(ListOpt) Resource pool IDs."
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:77(td)
msgid "service_session_mirroring_enabled = False"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:78(td)
msgid "(BoolOpt) Enable or disable Alteon interswitch link for stateful session failover. Default: False."
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:81(td)
msgid "service_ssl_throughput = 100"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:82(td)
msgid "(IntOpt) Service SSL throughput. Default: 100."
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:85(td)
msgid "service_throughput = 1000"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:86(td)
msgid "(IntOpt) Service throughput. Default: 1000."
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:89(td)
msgid "vdirect_address = None"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:90(td)
msgid "(StrOpt) IP address of vDirect server."
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:93(td)
msgid "vdirect_password = radware"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:94(td)
msgid "(StrOpt) vDirect user password."
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:97(td)
msgid "vdirect_user = vDirect"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_radware.xml:98(td)
msgid "(StrOpt) vDirect user name."
msgstr ""
#: ./doc/common/tables/neutron-ml2_sriov.xml:7(caption)
msgid "Description of ML2 ML2 SR-IOV driver configuration options"
msgstr ""
#: ./doc/common/tables/neutron-ml2_sriov.xml:18(th)
msgid "[ml2_sriov]"
msgstr ""
#: ./doc/common/tables/neutron-ml2_sriov.xml:21(td)
msgid "agent_required = False"
msgstr ""
#: ./doc/common/tables/neutron-ml2_sriov.xml:25(td)
msgid "supported_pci_vendor_devs = 15b3:1004, 8086:10c9"
msgstr ""
#: ./doc/common/tables/neutron-ml2_l2pop.xml:7(caption)
msgid "Description of ML2 L2 population configuration options"
msgstr ""
#: ./doc/common/tables/neutron-ml2_l2pop.xml:18(th)
msgid "[l2pop]"
msgstr ""
#: ./doc/common/tables/neutron-ml2_l2pop.xml:21(td)
msgid "agent_boot_time = 180"
msgstr ""
#: ./doc/common/tables/neutron-ml2_l2pop.xml:22(td)
msgid "(IntOpt) Delay within which agent is expected to update existing ports whent it restarts"
msgstr ""
#: ./doc/common/tables/cinder-ibmnas.xml:7(caption)
msgid "Description of IBM NAS volume driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-ibmnas.xml:21(td)
msgid "ibmnas_platform_type = v7ku"
msgstr ""
#: ./doc/common/tables/cinder-ibmnas.xml:22(td) ./doc/common/tables/cinder-conf-changes.xml:185(td)
msgid "(StrOpt) IBMNAS platform type to be used as backend storage; valid values are - v7ku : for using IBM Storwize V7000 Unified, sonas : for using IBM Scale Out NAS, gpfs-nas : for using NFS based IBM GPFS deployments."
msgstr ""
#: ./doc/common/tables/neutron-embrane_lb.xml:7(caption)
msgid "Description of Embrane LBaaS driver configuration options"
msgstr ""
#: ./doc/common/tables/neutron-embrane_lb.xml:18(th)
msgid "[heleoslb]"
msgstr ""
#: ./doc/common/tables/neutron-embrane_lb.xml:22(td) ./doc/common/tables/neutron-common.xml:235(td)
msgid "(StrOpt) ESM admin password."
msgstr ""
#: ./doc/common/tables/neutron-embrane_lb.xml:29(td)
msgid "async_requests = None"
msgstr ""
#: ./doc/common/tables/neutron-embrane_lb.xml:34(td)
msgid "(StrOpt) Dummy user traffic Security Zone id for LBs"
msgstr ""
#: ./doc/common/tables/neutron-embrane_lb.xml:42(td)
msgid "(StrOpt) In band Security Zone id for LBs"
msgstr ""
#: ./doc/common/tables/neutron-embrane_lb.xml:45(td)
msgid "lb_flavor = small"
msgstr ""
#: ./doc/common/tables/neutron-embrane_lb.xml:46(td)
msgid "(StrOpt) choose LB image flavor to use, accepted values: small, medium"
msgstr ""
#: ./doc/common/tables/neutron-embrane_lb.xml:49(td)
msgid "lb_image = None"
msgstr ""
#: ./doc/common/tables/neutron-embrane_lb.xml:50(td)
msgid "(StrOpt) Load Balancer image id (Embrane LB)"
msgstr ""
#: ./doc/common/tables/neutron-embrane_lb.xml:54(td)
msgid "(StrOpt) Management Security Zone id for LBs"
msgstr ""
#: ./doc/common/tables/neutron-embrane_lb.xml:58(td)
msgid "(StrOpt) Out of band Security Zone id for LBs"
msgstr ""
#: ./doc/common/tables/neutron-embrane_lb.xml:65(td)
msgid "sync_interval = 60"
msgstr ""
#: ./doc/common/tables/neutron-embrane_lb.xml:66(td)
msgid "(IntOpt) resource synchronization interval in seconds"
msgstr ""
#: ./doc/common/tables/cinder-fujitsu_eternus_dx.xml:7(caption)
msgid "Description of Fujitsu ETERNUS DX volume driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-fujitsu_eternus_dx.xml:21(td)
msgid "cinder_smis_config_file = /etc/cinder/cinder_fujitsu_eternus_dx.xml"
msgstr ""
#: ./doc/common/tables/cinder-fujitsu_eternus_dx.xml:22(td) ./doc/common/tables/cinder-conf-changes.xml:29(td)
msgid "(StrOpt) The configuration file for the Cinder SMI-S driver"
msgstr ""
#: ./doc/common/tables/sahara-logging.xml:21(td)
msgid "default_log_levels = amqplib=WARN, qpid.messaging=INFO, stevedore=INFO, eventlet.wsgi.server=WARN, sqlalchemy=WARN, boto=WARN, suds=INFO, keystone=INFO, paramiko=WARN, requests=WARN, iso8601=WARN"
msgstr ""
#: ./doc/common/tables/sahara-logging.xml:49(td)
msgid "log_exchange = False"
msgstr ""
#: ./doc/common/tables/sahara-logging.xml:50(td)
msgid "(BoolOpt) Log request/response exchange details: environ, headers and bodies."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-authtoken.xml:8(literal)
msgid "[filter-authtoken]"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-authtoken.xml:20(td)
msgid "admin_password = password"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-authtoken.xml:24(td)
msgid "admin_tenant_name = service"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-authtoken.xml:28(td)
msgid "admin_user = swift"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-authtoken.xml:32(td)
msgid "auth_host = keystonehost"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-authtoken.xml:40(td)
msgid "auth_protocol = http"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-authtoken.xml:44(td)
msgid "auth_uri = http://keystonehost:5000/"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-authtoken.xml:48(td)
msgid "cache = swift.cache"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-authtoken.xml:52(td)
msgid "delay_auth_decision = 1"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-authtoken.xml:56(td)
msgid "include_service_catalog = False"
msgstr ""
#: ./doc/common/tables/swift-object-server-pipeline-main.xml:20(td)
msgid "pipeline = healthcheck recon object-server"
msgstr ""
#: ./doc/common/tables/swift-memcache-memcache.xml:8(literal) ./doc/common/tables/keystone-memcache.xml:18(th)
msgid "[memcache]"
msgstr ""
#: ./doc/common/tables/swift-memcache-memcache.xml:8(literal)
msgid "memcache.conf"
msgstr ""
#: ./doc/common/tables/neutron-ca.xml:21(td) ./doc/common/tables/cinder-ca.xml:21(td) ./doc/common/tables/nova-wsgi.xml:25(td)
msgid "ssl_ca_file = None"
msgstr ""
#: ./doc/common/tables/neutron-ca.xml:25(td) ./doc/common/tables/cinder-ca.xml:25(td) ./doc/common/tables/nova-wsgi.xml:29(td)
msgid "ssl_cert_file = None"
msgstr ""
#: ./doc/common/tables/neutron-ca.xml:29(td) ./doc/common/tables/cinder-ca.xml:29(td) ./doc/common/tables/nova-wsgi.xml:33(td)
msgid "ssl_key_file = None"
msgstr ""
#: ./doc/common/tables/ceilometer-debug.xml:25(td)
msgid "nova_http_log_debug = False"
msgstr ""
#: ./doc/common/tables/swift-account-server-app-account-server.xml:8(literal)
msgid "[app-account-server]"
msgstr ""
#: ./doc/common/tables/swift-account-server-app-account-server.xml:40(td)
msgid "set log_name = account-server"
msgstr ""
#: ./doc/common/tables/swift-account-server-app-account-server.xml:48(td)
msgid "use = egg:swift#account"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-formpost.xml:8(literal)
msgid "[filter-formpost]"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-formpost.xml:20(td)
msgid "use = egg:swift#formpost"
msgstr ""
#: ./doc/common/tables/trove-compute.xml:21(td)
msgid "ip_regex = None"
msgstr ""
#: ./doc/common/tables/trove-compute.xml:25(td)
msgid "nova_compute_service_type = compute"
msgstr ""
#: ./doc/common/tables/trove-compute.xml:29(td)
msgid "nova_compute_url = None"
msgstr ""
#: ./doc/common/tables/trove-compute.xml:33(td)
msgid "root_grant = ALL"
msgstr ""
#: ./doc/common/tables/trove-compute.xml:37(td)
msgid "root_grant_option = True"
msgstr ""
#. Warning: Do not edit this file. It is automatically generated and your changes will be overwritten. The tool to do so lives in the openstack-doc-tools repository.
#: ./doc/common/tables/swift-conf-changes.xml:4(title)
msgid "New, updated and deprecated options in Juno for OpenStack Object Storage"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:16(td)
msgid "account-server.conf: [DEFAULT] log_max_line_length = 0"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:17(td) ./doc/common/tables/swift-conf-changes.xml:144(td) ./doc/common/tables/swift-conf-changes.xml:180(td) ./doc/common/tables/swift-conf-changes.xml:184(td) ./doc/common/tables/swift-conf-changes.xml:272(td) ./doc/common/tables/swift-conf-changes.xml:316(td)
msgid "(StrOpt) Caps the length of log lines to the value given; no limit if set to 0, the default."
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:20(td)
msgid "account-server.conf: [filter-xprofile] dump_interval = 5.0"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:24(td)
msgid "account-server.conf: [filter-xprofile] dump_timestamp = false"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:28(td)
msgid "account-server.conf: [filter-xprofile] flush_at_shutdown = false"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:32(td)
msgid "account-server.conf: [filter-xprofile] log_filename_prefix = /tmp/log/swift/profile/default.profile"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:36(td)
msgid "account-server.conf: [filter-xprofile] path = /__profile__"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:40(td)
msgid "account-server.conf: [filter-xprofile] profile_module = eventlet.green.profile"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:44(td)
msgid "account-server.conf: [filter-xprofile] unwind = false"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:48(td)
msgid "account-server.conf: [filter-xprofile] use = egg:swift#xprofile"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:49(td) ./doc/common/tables/swift-conf-changes.xml:112(td) ./doc/common/tables/swift-conf-changes.xml:128(td) ./doc/common/tables/swift-conf-changes.xml:132(td) ./doc/common/tables/swift-conf-changes.xml:136(td) ./doc/common/tables/swift-conf-changes.xml:176(td) ./doc/common/tables/swift-conf-changes.xml:260(td) ./doc/common/tables/swift-conf-changes.xml:304(td) ./doc/common/tables/swift-conf-changes.xml:356(td)
msgid "(StrOpt) Entry point of paste.deploy in the server"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:52(td)
msgid "container-reconciler.conf: [DEFAULT] log_address = /dev/log"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:53(td)
msgid "(StrOpt) Location where syslog sends the logs to"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:56(td)
msgid "container-reconciler.conf: [DEFAULT] log_custom_handlers ="
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:57(td)
msgid "(StrOpt) Comma-separated list of functions to call to setup custom log handlers."
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:60(td)
msgid "container-reconciler.conf: [DEFAULT] log_facility = LOG_LOCAL0"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:61(td)
msgid "(StrOpt) Syslog log facility"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:64(td)
msgid "container-reconciler.conf: [DEFAULT] log_level = INFO"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:65(td)
msgid "(StrOpt) Logging level"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:68(td)
msgid "container-reconciler.conf: [DEFAULT] log_name = swift"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:69(td)
msgid "(StrOpt) Label used when logging"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:72(td)
msgid "container-reconciler.conf: [DEFAULT] log_statsd_default_sample_rate = 1.0"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:73(td)
msgid "(StrOpt) Defines the probability of sending a sample for any given event or timing measurement."
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:77(td)
msgid "container-reconciler.conf: [DEFAULT] log_statsd_host = localhost"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:78(td)
msgid "(StrOpt) If not set, the StatsD feature is disabled."
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:81(td)
msgid "container-reconciler.conf: [DEFAULT] log_statsd_metric_prefix ="
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:82(td)
msgid "(StrOpt) Value will be prepended to every metric sent to the StatsD server."
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:85(td)
msgid "container-reconciler.conf: [DEFAULT] log_statsd_port = 8125"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:86(td)
msgid "(StrOpt) Port value for the StatsD server."
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:89(td)
msgid "container-reconciler.conf: [DEFAULT] log_statsd_sample_rate_factor = 1.0"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:90(td)
msgid "(StrOpt) Not recommended to set this to a value less than 1.0, if frequency of logging is too high, tune the log_statsd_default_sample_rate instead."
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:95(td)
msgid "container-reconciler.conf: [DEFAULT] log_udp_host ="
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:96(td)
msgid "(StrOpt) If not set, the UDP receiver for syslog is disabled."
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:99(td)
msgid "container-reconciler.conf: [DEFAULT] log_udp_port = 514"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:100(td)
msgid "(StrOpt) Port value for UDP receiver, if enabled."
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:103(td)
msgid "container-reconciler.conf: [DEFAULT] swift_dir = /etc/swift"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:104(td)
msgid "(StrOpt) Swift configuration directory"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:107(td)
msgid "container-reconciler.conf: [DEFAULT] user = swift"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:108(td)
msgid "(StrOpt) User to run as"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:111(td)
msgid "container-reconciler.conf: [app-proxy-server] use = egg:swift#proxy"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:115(td)
msgid "container-reconciler.conf: [container-reconciler] interval = 30"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:116(td)
msgid "(StrOpt) Minimum time for a pass to take"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:119(td)
msgid "container-reconciler.conf: [container-reconciler] reclaim_age = 604800"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:120(td) ./doc/common/tables/swift-conf-changes.xml:264(td)
msgid "(StrOpt) Time elapsed in seconds before an object can be reclaimed"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:123(td)
msgid "container-reconciler.conf: [container-reconciler] request_tries = 3"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:127(td)
msgid "container-reconciler.conf: [filter-cache] use = egg:swift#memcache"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:131(td)
msgid "container-reconciler.conf: [filter-catch_errors] use = egg:swift#catch_errors"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:135(td)
msgid "container-reconciler.conf: [filter-proxy-logging] use = egg:swift#proxy_logging"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:139(td)
msgid "container-reconciler.conf: [pipeline-main] pipeline = catch_errors proxy-logging cache proxy-server"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:143(td)
msgid "container-server.conf: [DEFAULT] log_max_line_length = 0"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:147(td)
msgid "container-server.conf: [filter-xprofile] dump_interval = 5.0"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:151(td)
msgid "container-server.conf: [filter-xprofile] dump_timestamp = false"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:155(td)
msgid "container-server.conf: [filter-xprofile] flush_at_shutdown = false"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:159(td)
msgid "container-server.conf: [filter-xprofile] log_filename_prefix = /tmp/log/swift/profile/default.profile"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:163(td)
msgid "container-server.conf: [filter-xprofile] path = /__profile__"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:167(td)
msgid "container-server.conf: [filter-xprofile] profile_module = eventlet.green.profile"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:171(td)
msgid "container-server.conf: [filter-xprofile] unwind = false"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:175(td)
msgid "container-server.conf: [filter-xprofile] use = egg:swift#xprofile"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:179(td)
msgid "drive-audit.conf: [drive-audit] log_max_line_length = 0"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:183(td)
msgid "object-expirer.conf: [DEFAULT] log_max_line_length = 0"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:187(td)
msgid "object-expirer.conf: [filter-proxy-logging] access_log_address = /dev/log"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:191(td)
msgid "object-expirer.conf: [filter-proxy-logging] access_log_facility = LOG_LOCAL0"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:195(td)
msgid "object-expirer.conf: [filter-proxy-logging] access_log_headers = false"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:199(td)
msgid "object-expirer.conf: [filter-proxy-logging] access_log_headers_only ="
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:200(td)
msgid "(StrOpt) If access_log_headers is True and access_log_headers_only is set only these headers are logged. Multiple headers can be defined as comma separated list like this: access_log_headers_only = Host, X-Object-Meta-Mtime"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:205(td)
msgid "object-expirer.conf: [filter-proxy-logging] access_log_level = INFO"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:209(td)
msgid "object-expirer.conf: [filter-proxy-logging] access_log_name = swift"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:213(td)
msgid "object-expirer.conf: [filter-proxy-logging] access_log_statsd_default_sample_rate = 1.0"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:217(td)
msgid "object-expirer.conf: [filter-proxy-logging] access_log_statsd_host = localhost"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:221(td)
msgid "object-expirer.conf: [filter-proxy-logging] access_log_statsd_metric_prefix ="
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:225(td)
msgid "object-expirer.conf: [filter-proxy-logging] access_log_statsd_port = 8125"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:229(td)
msgid "object-expirer.conf: [filter-proxy-logging] access_log_statsd_sample_rate_factor = 1.0"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:233(td)
msgid "object-expirer.conf: [filter-proxy-logging] access_log_udp_host ="
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:237(td)
msgid "object-expirer.conf: [filter-proxy-logging] access_log_udp_port = 514"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:241(td)
msgid "object-expirer.conf: [filter-proxy-logging] log_statsd_valid_http_methods = GET,HEAD,POST,PUT,DELETE,COPY,OPTIONS"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:245(td)
msgid "object-expirer.conf: [filter-proxy-logging] logged with access_log_headers = True."
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:249(td)
msgid "object-expirer.conf: [filter-proxy-logging] reveal_sensitive_prefix = 16"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:250(td)
msgid "(StrOpt) The X-Auth-Token is sensitive data. If revealed to an unauthorised person, they can now make requests against an account until the token expires. Set reveal_sensitive_prefix to the number of characters of the token that are logged. For example reveal_sensitive_prefix = 12 so only first 12 characters of the token are logged. Or, set to 0 to completely remove the token."
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:259(td)
msgid "object-expirer.conf: [filter-proxy-logging] use = egg:swift#proxy_logging"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:263(td)
msgid "object-expirer.conf: [object-expirer] reclaim_age = 604800"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:267(td)
msgid "object-expirer.conf: [object-expirer] recon_cache_path = /var/cache/swift"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:268(td)
msgid "(StrOpt) Directory where stats for a few items will be stored"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:271(td)
msgid "object-server.conf: [DEFAULT] log_max_line_length = 0"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:275(td)
msgid "object-server.conf: [filter-xprofile] dump_interval = 5.0"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:279(td)
msgid "object-server.conf: [filter-xprofile] dump_timestamp = false"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:283(td)
msgid "object-server.conf: [filter-xprofile] flush_at_shutdown = false"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:287(td)
msgid "object-server.conf: [filter-xprofile] log_filename_prefix = /tmp/log/swift/profile/default.profile"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:291(td)
msgid "object-server.conf: [filter-xprofile] path = /__profile__"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:295(td)
msgid "object-server.conf: [filter-xprofile] profile_module = eventlet.green.profile"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:299(td)
msgid "object-server.conf: [filter-xprofile] unwind = false"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:303(td)
msgid "object-server.conf: [filter-xprofile] use = egg:swift#xprofile"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:307(td)
msgid "object-server.conf: [object-auditor] concurrency = 1"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:308(td)
msgid "(StrOpt) Number of replication workers to spawn"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:311(td)
msgid "object-server.conf: [object-auditor] disk_chunk_size = 65536"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:312(td)
msgid "(StrOpt) Size of chunks to read/write to disk"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:315(td)
msgid "proxy-server.conf: [DEFAULT] log_max_line_length = 0"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:319(td)
msgid "proxy-server.conf: [DEFAULT] strict_cors_mode = True"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:323(td)
msgid "proxy-server.conf: [filter-container_sync] current = //REALM/CLUSTER"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:327(td)
msgid "proxy-server.conf: [filter-xprofile] dump_interval = 5.0"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:331(td)
msgid "proxy-server.conf: [filter-xprofile] dump_timestamp = false"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:335(td)
msgid "proxy-server.conf: [filter-xprofile] flush_at_shutdown = false"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:339(td)
msgid "proxy-server.conf: [filter-xprofile] log_filename_prefix = /tmp/log/swift/profile/default.profile"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:343(td)
msgid "proxy-server.conf: [filter-xprofile] path = /__profile__"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:347(td)
msgid "proxy-server.conf: [filter-xprofile] profile_module = eventlet.green.profile"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:351(td)
msgid "proxy-server.conf: [filter-xprofile] unwind = false"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:355(td)
msgid "proxy-server.conf: [filter-xprofile] use = egg:swift#xprofile"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:359(td)
msgid "swift.conf: [storage-policy-0] default = yes"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:360(td)
msgid "(StrOpt) 0 means to not use a per-disk thread pool. It is recommended to keep this value small, as large values can result in high read latencies due to large queue depths. A good starting point is 4 threads per disk."
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:363(td)
msgid "swift.conf: [storage-policy-0] name = Policy-0"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:367(td)
msgid "swift.conf: [storage-policy-1] name = silver"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:384(td)
msgid "dispersion.conf: [dispersion] auth_version"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:385(td)
msgid "2.0"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:386(td)
msgid "1.0"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:389(td)
msgid "drive-audit.conf: [drive-audit] log_file_pattern"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:390(td)
msgid "/var/log/kern*"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:391(td)
msgid "/var/log/kern.*[!.][!g][!z]"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:394(td)
msgid "object-expirer.conf: [pipeline-main] pipeline"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:395(td)
msgid "catch_errors cache proxy-server"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:396(td)
msgid "catch_errors proxy-logging cache proxy-server"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:399(td)
msgid "proxy-server.conf: [DEFAULT] disallowed_sections"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:400(td)
msgid "container_quotas, tempurl"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:401(td)
msgid "container_quotas, tempurl, bulk_delete.max_failed_deletes"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:404(td)
msgid "proxy-server.conf: [app-proxy-server] client_chunk_size"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:406(td) ./doc/common/tables/swift-conf-changes.xml:411(td)
msgid "65536"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:409(td)
msgid "proxy-server.conf: [app-proxy-server] object_chunk_size"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:414(td)
msgid "proxy-server.conf: [filter-proxy-logging] reveal_sensitive_prefix"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:416(td)
msgid "16"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:419(td)
msgid "proxy-server.conf: [filter-tempurl] methods"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:420(td)
msgid "GET HEAD PUT"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:421(td)
msgid "GET HEAD PUT POST DELETE"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:424(td)
msgid "proxy-server.conf: [pipeline-main] pipeline"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:425(td)
msgid "catch_errors gatekeeper healthcheck proxy-logging cache container_sync bulk tempurl slo dlo ratelimit tempauth container-quotas account-quotas proxy-logging proxy-server"
msgstr ""
#: ./doc/common/tables/swift-conf-changes.xml:426(td)
msgid "catch_errors gatekeeper healthcheck proxy-logging cache container_sync bulk tempurl ratelimit tempauth container-quotas account-quotas slo dlo proxy-logging proxy-server"
msgstr ""
#: ./doc/common/tables/trove-db_redis.xml:7(caption)
msgid "Description of Redis database configuration options"
msgstr ""
#: ./doc/common/tables/trove-db_redis.xml:18(th)
msgid "[redis]"
msgstr ""
#: ./doc/common/tables/trove-db_redis.xml:25(td)
msgid "device_path = None"
msgstr ""
#: ./doc/common/tables/trove-db_redis.xml:29(td)
msgid "mount_point = /var/lib/redis"
msgstr ""
#: ./doc/common/tables/trove-db_redis.xml:37(td)
msgid "tcp_ports = 6379"
msgstr ""
#: ./doc/common/tables/trove-db_redis.xml:45(td)
msgid "volume_support = False"
msgstr ""
#: ./doc/common/tables/cinder-rpc.xml:33(td)
msgid "default_timeout = 525600"
msgstr ""
#: ./doc/common/tables/cinder-rpc.xml:34(td)
msgid "(IntOpt) Default timeout for CLI operations in minutes. For example, LUN migration is a typical long running operation, which depends on the LUN size and the load of the array. An upper bound in the specific deployment can be set to avoid unnecessary long wait. By default, it is 365 days long."
msgstr ""
#: ./doc/common/tables/cinder-rpc.xml:217(td)
msgid "volume_topic = cinder-volume"
msgstr ""
#: ./doc/common/tables/cinder-rpc.xml:218(td)
msgid "(StrOpt) The topic that volume nodes listen on"
msgstr ""
#: ./doc/common/tables/swift-container-sync-realms-realm2.xml:8(literal)
msgid "[realm2]"
msgstr ""
#: ./doc/common/tables/swift-container-sync-realms-realm2.xml:20(td)
msgid "cluster_name3 = https://host3/v1/"
msgstr ""
#: ./doc/common/tables/swift-container-sync-realms-realm2.xml:24(td)
msgid "cluster_name4 = https://host4/v1/"
msgstr ""
#: ./doc/common/tables/swift-container-sync-realms-realm2.xml:28(td)
msgid "key = realm2key"
msgstr ""
#: ./doc/common/tables/swift-container-sync-realms-realm2.xml:32(td)
msgid "key2 = realm2key2"
msgstr ""
#: ./doc/common/tables/cinder-hpmsa.xml:7(caption)
msgid "Description of HP MSA Fiber Channel driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-hpmsa.xml:21(td)
msgid "msa_vdisk = OpenStack"
msgstr ""
#: ./doc/common/tables/cinder-hpmsa.xml:22(td)
msgid "(StrOpt) The VDisk to use for volume creation."
msgstr ""
#: ./doc/common/tables/nova-apiv3.xml:7(caption)
msgid "Description of API v3 configuration options"
msgstr ""
#: ./doc/common/tables/nova-apiv3.xml:18(th)
msgid "[osapi_v3]"
msgstr ""
#: ./doc/common/tables/nova-apiv3.xml:22(td)
msgid "(BoolOpt) Whether the V3 API is enabled or not"
msgstr ""
#: ./doc/common/tables/nova-apiv3.xml:25(td)
msgid "extensions_blacklist ="
msgstr ""
#: ./doc/common/tables/nova-apiv3.xml:26(td)
msgid "(ListOpt) A list of v3 API extensions to never load. Specify the extension aliases here."
msgstr ""
#: ./doc/common/tables/nova-apiv3.xml:29(td)
msgid "extensions_whitelist ="
msgstr ""
#: ./doc/common/tables/nova-apiv3.xml:30(td)
msgid "(ListOpt) If the list is not empty then a v3 API extension will only be loaded if it exists in this list. Specify the extension aliases here."
msgstr ""
#: ./doc/common/tables/keystone-oauth.xml:7(caption)
msgid "Description of OAuth configuration options"
msgstr ""
#: ./doc/common/tables/keystone-oauth.xml:18(th)
msgid "[oauth1]"
msgstr ""
#: ./doc/common/tables/keystone-oauth.xml:21(td)
msgid "access_token_duration = 86400"
msgstr ""
#: ./doc/common/tables/keystone-oauth.xml:22(td)
msgid "(IntOpt) Duration (in seconds) for the OAuth Access Token."
msgstr ""
#: ./doc/common/tables/keystone-oauth.xml:25(td)
msgid "driver = keystone.contrib.oauth1.backends.sql.OAuth1"
msgstr ""
#: ./doc/common/tables/keystone-oauth.xml:26(td) ./doc/common/tables/keystone-credential.xml:22(td)
msgid "(StrOpt) Credential backend driver."
msgstr ""
#: ./doc/common/tables/keystone-oauth.xml:29(td)
msgid "request_token_duration = 28800"
msgstr ""
#: ./doc/common/tables/keystone-oauth.xml:30(td)
msgid "(IntOpt) Duration (in seconds) for the OAuth Request Token."
msgstr ""
#: ./doc/common/tables/cinder-storage_gpfs.xml:7(caption)
msgid "Description of GPFS storage configuration options"
msgstr ""
#: ./doc/common/tables/cinder-storage_gpfs.xml:21(td)
msgid "gpfs_images_dir = None"
msgstr ""
#: ./doc/common/tables/cinder-storage_gpfs.xml:22(td)
msgid "(StrOpt) Specifies the path of the Image service repository in GPFS. Leave undefined if not storing images in GPFS."
msgstr ""
#: ./doc/common/tables/cinder-storage_gpfs.xml:25(td)
msgid "gpfs_images_share_mode = None"
msgstr ""
#: ./doc/common/tables/cinder-storage_gpfs.xml:26(td)
msgid "(StrOpt) Specifies the type of image copy to be used. Set this when the Image service repository also uses GPFS so that image files can be transferred efficiently from the Image service to the Block Storage service. There are two valid values: \"copy\" specifies that a full copy of the image is made; \"copy_on_write\" specifies that copy-on-write optimization strategy is used and unmodified blocks of the image file are shared efficiently."
msgstr ""
#: ./doc/common/tables/cinder-storage_gpfs.xml:29(td)
msgid "gpfs_max_clone_depth = 0"
msgstr ""
#: ./doc/common/tables/cinder-storage_gpfs.xml:30(td)
msgid "(IntOpt) Specifies an upper limit on the number of indirections required to reach a specific block due to snapshots or clones. A lengthy chain of copy-on-write snapshots or clones can have a negative impact on performance, but improves space utilization. 0 indicates unlimited clone depth."
msgstr ""
#: ./doc/common/tables/cinder-storage_gpfs.xml:33(td)
msgid "gpfs_mount_point_base = None"
msgstr ""
#: ./doc/common/tables/cinder-storage_gpfs.xml:34(td)
msgid "(StrOpt) Specifies the path of the GPFS directory where Block Storage volume and snapshot files are stored."
msgstr ""
#: ./doc/common/tables/cinder-storage_gpfs.xml:37(td)
msgid "gpfs_sparse_volumes = True"
msgstr ""
#: ./doc/common/tables/cinder-storage_gpfs.xml:38(td)
msgid "(BoolOpt) Specifies that volumes are created as sparse files which initially consume no space. If set to False, the volume is created as a fully allocated file, in which case, creation may take a significantly longer time."
msgstr ""
#: ./doc/common/tables/cinder-storage_gpfs.xml:41(td)
msgid "gpfs_storage_pool = None"
msgstr ""
#: ./doc/common/tables/cinder-storage_gpfs.xml:42(td)
msgid "(StrOpt) Specifies the storage pool that volumes are assigned to. By default, the system storage pool is used."
msgstr ""
#: ./doc/common/tables/neutron-ml2_vlan.xml:7(caption)
msgid "Description of ML2 VLAN configuration options"
msgstr ""
#: ./doc/common/tables/neutron-ml2_vlan.xml:18(th)
msgid "[ml2_type_vlan]"
msgstr ""
#: ./doc/common/tables/neutron-ml2_vlan.xml:22(td)
msgid "(ListOpt) List of &lt;physical_network&gt;:&lt;vlan_min&gt;:&lt;vlan_max&gt; or &lt;physical_network&gt; specifying physical_network names usable for VLAN provider and tenant networks, as well as ranges of VLAN tags on each available for allocation to tenant networks."
msgstr ""
#: ./doc/common/tables/swift-object-server-object-auditor.xml:8(literal)
msgid "[object-auditor]"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-auditor.xml:20(td)
msgid "bytes_per_second = 10000000"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-auditor.xml:21(td)
msgid "Maximum bytes audited per second. Should be tuned according to individual system specs. 0 is unlimited. mounted to prevent accidentally writing to the root device process simultaneously (it will actually accept(2) N + 1). Setting this to one (1) will only handle one request at a time, without accepting another request concurrently. By increasing the number of workers to a much higher value, one can reduce the impact of slow file system operations in one request from negatively impacting other requests. underlying filesystem does not support it. to setup custom log handlers. bytes you'd like fallocate to reserve, whether there is space for the given file size or not. This is useful for systems that behave badly when they completely run out of space; you can make the services pretend they're out of space early. container server. For most cases, this should be `egg:swift#container`."
msgstr ""
#: ./doc/common/tables/swift-object-server-object-auditor.xml:32(td)
msgid "files_per_second = 20"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-auditor.xml:33(td)
msgid "Maximum files audited per second. Should be tuned according to individual system specs. 0 is unlimited."
msgstr ""
#: ./doc/common/tables/swift-object-server-object-auditor.xml:48(td)
msgid "log_name = object-auditor"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-auditor.xml:52(td)
msgid "log_time = 3600"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-auditor.xml:53(td)
msgid "Frequency of status logs in seconds."
msgstr ""
#: ./doc/common/tables/swift-object-server-object-auditor.xml:56(td)
msgid "object_size_stats ="
msgstr ""
#: ./doc/common/tables/swift-object-server-object-auditor.xml:64(td)
msgid "zero_byte_files_per_second = 50"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-auditor.xml:65(td)
msgid "Maximum zero byte files audited per second."
msgstr ""
#: ./doc/common/tables/trove-zeromq.xml:26(td)
msgid "(IntOpt) Number of ZeroMQ contexts, defaults to 1"
msgstr ""
#: ./doc/common/tables/trove-zeromq.xml:34(td)
msgid "(StrOpt) Directory for holding IPC sockets"
msgstr ""
#: ./doc/common/tables/trove-zeromq.xml:37(td)
msgid "rpc_zmq_matchmaker = trove.openstack.common.rpc.matchmaker.MatchMakerLocalhost"
msgstr ""
#: ./doc/common/tables/trove-zeromq.xml:38(td)
msgid "(StrOpt) MatchMaker driver"
msgstr ""
#: ./doc/common/tables/trove-zeromq.xml:42(td)
msgid "(IntOpt) ZeroMQ receiver listening port"
msgstr ""
#: ./doc/common/tables/neutron-lbaas.xml:7(caption)
msgid "Description of LBaaS configuration options"
msgstr ""
#: ./doc/common/tables/neutron-lbaas.xml:21(td)
msgid "device_driver = ['neutron.services.loadbalancer.drivers.haproxy.namespace_driver.HaproxyNSDriver']"
msgstr ""
#: ./doc/common/tables/neutron-lbaas.xml:22(td)
msgid "(MultiStrOpt) Drivers used to manage loadbalancing devices"
msgstr ""
#: ./doc/common/tables/neutron-lbaas.xml:25(td)
msgid "loadbalancer_pool_scheduler_driver = neutron.services.loadbalancer.agent_scheduler.ChanceScheduler"
msgstr ""
#: ./doc/common/tables/neutron-lbaas.xml:26(td)
msgid "(StrOpt) Driver to use for scheduling pool to a default loadbalancer agent"
msgstr ""
#: ./doc/common/tables/cinder-backups_swift.xml:7(caption)
msgid "Description of Swift backup driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-backups_swift.xml:21(td)
msgid "backup_swift_auth = per_user"
msgstr ""
#: ./doc/common/tables/cinder-backups_swift.xml:22(td)
msgid "(StrOpt) Swift authentication mechanism"
msgstr ""
#: ./doc/common/tables/cinder-backups_swift.xml:25(td)
msgid "backup_swift_container = volumebackups"
msgstr ""
#: ./doc/common/tables/cinder-backups_swift.xml:26(td)
msgid "(StrOpt) The default Swift container to use"
msgstr ""
#: ./doc/common/tables/cinder-backups_swift.xml:29(td)
msgid "backup_swift_key = None"
msgstr ""
#: ./doc/common/tables/cinder-backups_swift.xml:30(td)
msgid "(StrOpt) Swift key for authentication"
msgstr ""
#: ./doc/common/tables/cinder-backups_swift.xml:33(td)
msgid "backup_swift_object_size = 52428800"
msgstr ""
#: ./doc/common/tables/cinder-backups_swift.xml:34(td)
msgid "(IntOpt) The size in bytes of Swift backup objects"
msgstr ""
#: ./doc/common/tables/cinder-backups_swift.xml:37(td)
msgid "backup_swift_retry_attempts = 3"
msgstr ""
#: ./doc/common/tables/cinder-backups_swift.xml:38(td)
msgid "(IntOpt) The number of retries to make for Swift operations"
msgstr ""
#: ./doc/common/tables/cinder-backups_swift.xml:41(td)
msgid "backup_swift_retry_backoff = 2"
msgstr ""
#: ./doc/common/tables/cinder-backups_swift.xml:42(td)
msgid "(IntOpt) The backoff time in seconds between Swift retries"
msgstr ""
#: ./doc/common/tables/cinder-backups_swift.xml:45(td)
msgid "backup_swift_url = None"
msgstr ""
#: ./doc/common/tables/cinder-backups_swift.xml:46(td)
msgid "(StrOpt) The URL of the Swift endpoint"
msgstr ""
#: ./doc/common/tables/cinder-backups_swift.xml:49(td)
msgid "backup_swift_user = None"
msgstr ""
#: ./doc/common/tables/cinder-backups_swift.xml:50(td)
msgid "(StrOpt) Swift user name"
msgstr ""
#: ./doc/common/tables/cinder-backups_swift.xml:53(td)
msgid "swift_catalog_info = object-store:swift:publicURL"
msgstr ""
#: ./doc/common/tables/cinder-backups_swift.xml:54(td) ./doc/common/tables/cinder-conf-changes.xml:297(td)
msgid "(StrOpt) Info to match when looking for swift in the service catalog. Format is: separated values of the form: &lt;service_type&gt;:&lt;service_name&gt;:&lt;endpoint_type&gt; - Only used if backup_swift_url is unset"
msgstr ""
#: ./doc/common/tables/trove-database.xml:21(td)
msgid "sql_connection = sqlite:///trove_test.sqlite"
msgstr ""
#: ./doc/common/tables/trove-database.xml:22(td)
msgid "(StrOpt) SQL Connection."
msgstr ""
#: ./doc/common/tables/trove-database.xml:25(td)
msgid "sql_idle_timeout = 3600"
msgstr ""
#: ./doc/common/tables/trove-database.xml:29(td)
msgid "sql_query_log = False"
msgstr ""
#: ./doc/common/tables/trove-database.xml:33(td)
msgid "sql_query_logging = False"
msgstr ""
#: ./doc/common/tables/trove-database.xml:34(td)
msgid "(BoolOpt) Allow insecure logging while executing queries through SQLAlchemy."
msgstr ""
#: ./doc/common/tables/swift-container-server-app-container-server.xml:8(literal)
msgid "[app-container-server]"
msgstr ""
#: ./doc/common/tables/swift-container-server-app-container-server.xml:20(td)
msgid "allow_versions = false"
msgstr ""
#: ./doc/common/tables/swift-container-server-app-container-server.xml:21(td)
msgid "Enable/Disable object versioning feature"
msgstr ""
#: ./doc/common/tables/swift-container-server-app-container-server.xml:52(td)
msgid "set log_name = container-server"
msgstr ""
#: ./doc/common/tables/swift-container-server-app-container-server.xml:60(td)
msgid "use = egg:swift#container"
msgstr ""
#: ./doc/common/tables/nova-authentication.xml:7(caption)
msgid "Description of authentication configuration options"
msgstr ""
#: ./doc/common/tables/nova-authentication.xml:22(td)
msgid "(StrOpt) The strategy to use for auth: noauth or keystone."
msgstr ""
#: ./doc/common/tables/neutron-nvsd.xml:7(caption)
msgid "Description of NVSD driver configuration options"
msgstr ""
#: ./doc/common/tables/neutron-nvsd.xml:22(td)
msgid "(StrOpt) integration bridge"
msgstr ""
#: ./doc/common/tables/neutron-nvsd.xml:25(th)
msgid "[nvsd]"
msgstr ""
#: ./doc/common/tables/neutron-nvsd.xml:28(td)
msgid "nvsd_ip = 127.0.0.1"
msgstr ""
#: ./doc/common/tables/neutron-nvsd.xml:29(td)
msgid "(StrOpt) NVSD Controller IP address"
msgstr ""
#: ./doc/common/tables/neutron-nvsd.xml:32(td)
msgid "nvsd_passwd = oc123"
msgstr ""
#: ./doc/common/tables/neutron-nvsd.xml:33(td)
msgid "(StrOpt) NVSD Controller password"
msgstr ""
#: ./doc/common/tables/neutron-nvsd.xml:36(td)
msgid "nvsd_port = 8082"
msgstr ""
#: ./doc/common/tables/neutron-nvsd.xml:37(td)
msgid "(IntOpt) NVSD Controller Port number"
msgstr ""
#: ./doc/common/tables/neutron-nvsd.xml:40(td)
msgid "nvsd_retries = 0"
msgstr ""
#: ./doc/common/tables/neutron-nvsd.xml:41(td)
msgid "(IntOpt) Number of login retries to NVSD controller"
msgstr ""
#: ./doc/common/tables/neutron-nvsd.xml:44(td)
msgid "nvsd_user = ocplugin"
msgstr ""
#: ./doc/common/tables/neutron-nvsd.xml:45(td)
msgid "(StrOpt) NVSD Controller username"
msgstr ""
#: ./doc/common/tables/neutron-nvsd.xml:48(td)
msgid "request_timeout = 30"
msgstr ""
#: ./doc/common/tables/neutron-nvsd.xml:49(td)
msgid "(IntOpt) NVSD controller REST API request timeout in seconds"
msgstr ""
#: ./doc/common/tables/swift-account-server-pipeline-main.xml:20(td)
msgid "pipeline = healthcheck recon account-server"
msgstr ""
#: ./doc/common/tables/glance-gridfs.xml:7(caption)
msgid "Description of GridFS configuration options"
msgstr ""
#: ./doc/common/tables/glance-gridfs.xml:21(td)
msgid "mongodb_store_db = None"
msgstr ""
#: ./doc/common/tables/glance-gridfs.xml:22(td)
msgid "(StrOpt) Database to use"
msgstr ""
#: ./doc/common/tables/glance-gridfs.xml:25(td)
msgid "mongodb_store_uri = None"
msgstr ""
#: ./doc/common/tables/glance-gridfs.xml:26(td)
msgid "(StrOpt) Hostname or IP address of the instance to connect to, or a mongodb URI, or a list of hostnames / mongodb URIs. If host is an IPv6 literal it must be enclosed in '[' and ']' characters following the RFC2732 URL syntax (e.g. '[::1]' for localhost)"
msgstr ""
#: ./doc/common/tables/neutron-notifier.xml:7(caption)
msgid "Description of notifier configuration options"
msgstr ""
#: ./doc/common/tables/nova-rpc_all.xml:7(caption)
msgid "Description of all RPC configuration options"
msgstr ""
#: ./doc/common/tables/nova-rpc_all.xml:204(td) ./doc/common/tables/nova-rpc.xml:64(td)
msgid "rpc_driver_queue_base = cells.intercell"
msgstr ""
#: ./doc/common/tables/nova-rpc_all.xml:205(td) ./doc/common/tables/nova-rpc.xml:65(td)
msgid "(StrOpt) Base queue name to use when communicating between cells. Various topics by message type will be appended to this."
msgstr ""
#: ./doc/common/tables/nova-rpc_all.xml:218(td) ./doc/common/tables/nova-rpc.xml:78(td)
msgid "baseapi = None"
msgstr ""
#: ./doc/common/tables/nova-rpc_all.xml:219(td) ./doc/common/tables/nova-rpc.xml:79(td)
msgid "(StrOpt) Set a version cap for messages sent to the base api in any service"
msgstr ""
#: ./doc/common/tables/neutron-hyperv_agent.xml:7(caption)
msgid "Description of HyperV agent configuration options"
msgstr ""
#: ./doc/common/tables/neutron-hyperv_agent.xml:21(td)
msgid "enable_metrics_collection = False"
msgstr ""
#: ./doc/common/tables/neutron-hyperv_agent.xml:22(td)
msgid "(BoolOpt) Enables metrics collections for switch ports by using Hyper-V's metric APIs. Collected data can by retrieved by other apps and services, e.g.: Ceilometer. Requires Hyper-V / Windows Server 2012 and above"
msgstr ""
#: ./doc/common/tables/neutron-hyperv_agent.xml:25(td)
msgid "local_network_vswitch = private"
msgstr ""
#: ./doc/common/tables/neutron-hyperv_agent.xml:26(td)
msgid "(StrOpt) Private vswitch name used for local networks"
msgstr ""
#: ./doc/common/tables/neutron-hyperv_agent.xml:29(td)
msgid "metrics_max_retries = 100"
msgstr ""
#: ./doc/common/tables/neutron-hyperv_agent.xml:30(td)
msgid "(IntOpt) Specifies the maximum number of retries to enable Hyper-V's port metrics collection. The agent will try to enable the feature once every polling_interval period for at most metrics_max_retries or until it succeedes."
msgstr ""
#: ./doc/common/tables/neutron-hyperv_agent.xml:33(td)
msgid "physical_network_vswitch_mappings ="
msgstr ""
#: ./doc/common/tables/neutron-hyperv_agent.xml:34(td)
msgid "(ListOpt) List of &lt;physical_network&gt;:&lt;vswitch&gt; where the physical networks can be expressed with wildcards, e.g.: .\"*:external\""
msgstr ""
#: ./doc/common/tables/neutron-hyperv_agent.xml:38(td)
msgid "(IntOpt) The number of seconds the agent will wait between polling for local device changes."
msgstr ""
#: ./doc/common/tables/neutron-hyperv_agent.xml:41(th)
msgid "[HYPERV]"
msgstr ""
#: ./doc/common/tables/neutron-hyperv_agent.xml:49(td)
msgid "(StrOpt) Network type for tenant networks (local, flat, vlan or none)"
msgstr ""
#: ./doc/common/tables/neutron-hyperv_agent.xml:55(td) ./doc/common/tables/nova-hyperv.xml:29(td)
msgid "force_hyperv_utils_v1 = False"
msgstr ""
#: ./doc/common/tables/neutron-hyperv_agent.xml:56(td) ./doc/common/tables/nova-hyperv.xml:30(td)
msgid "(BoolOpt) Force V1 WMI utility classes"
msgstr ""
#: ./doc/common/tables/ceilometer-tripleo.xml:7(caption)
msgid "Description of TripleO configuration options"
msgstr ""
#: ./doc/common/tables/ceilometer-tripleo.xml:18(th)
msgid "[hardware]"
msgstr ""
#: ./doc/common/tables/ceilometer-tripleo.xml:21(td)
msgid "readonly_user_name = ro_snmp_user"
msgstr ""
#: ./doc/common/tables/ceilometer-tripleo.xml:25(td)
msgid "readonly_user_password = password"
msgstr ""
#: ./doc/common/tables/ceilometer-tripleo.xml:29(td)
msgid "url_scheme = snmp://"
msgstr ""
#: ./doc/common/tables/keystone-federation.xml:7(caption)
msgid "Description of federation configuration options"
msgstr ""
#: ./doc/common/tables/keystone-federation.xml:18(th)
msgid "[federation]"
msgstr ""
#: ./doc/common/tables/keystone-federation.xml:21(td)
msgid "assertion_prefix ="
msgstr ""
#: ./doc/common/tables/keystone-federation.xml:22(td)
msgid "(StrOpt) Value to be used when filtering assertion parameters from the environment."
msgstr ""
#: ./doc/common/tables/keystone-federation.xml:25(td)
msgid "driver = keystone.contrib.federation.backends.sql.Federation"
msgstr ""
#: ./doc/common/tables/keystone-federation.xml:26(td)
msgid "(StrOpt) Federation backend driver."
msgstr ""
#: ./doc/common/tables/cinder-eqlx.xml:7(caption)
msgid "Description of Dell EqualLogic volume driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-eqlx.xml:21(td)
msgid "eqlx_chap_login = admin"
msgstr ""
#: ./doc/common/tables/cinder-eqlx.xml:22(td)
msgid "(StrOpt) Existing CHAP account name"
msgstr ""
#: ./doc/common/tables/cinder-eqlx.xml:25(td)
msgid "eqlx_chap_password = password"
msgstr ""
#: ./doc/common/tables/cinder-eqlx.xml:26(td)
msgid "(StrOpt) Password for specified CHAP account name"
msgstr ""
#: ./doc/common/tables/cinder-eqlx.xml:29(td)
msgid "eqlx_cli_max_retries = 5"
msgstr ""
#: ./doc/common/tables/cinder-eqlx.xml:30(td)
msgid "(IntOpt) Maximum retry count for reconnection"
msgstr ""
#: ./doc/common/tables/cinder-eqlx.xml:33(td)
msgid "eqlx_cli_timeout = 30"
msgstr ""
#: ./doc/common/tables/cinder-eqlx.xml:34(td)
msgid "(IntOpt) Timeout for the Group Manager cli command execution"
msgstr ""
#: ./doc/common/tables/cinder-eqlx.xml:37(td)
msgid "eqlx_group_name = group-0"
msgstr ""
#: ./doc/common/tables/cinder-eqlx.xml:38(td)
msgid "(StrOpt) Group name to use for creating volumes"
msgstr ""
#: ./doc/common/tables/cinder-eqlx.xml:41(td)
msgid "eqlx_pool = default"
msgstr ""
#: ./doc/common/tables/cinder-eqlx.xml:42(td)
msgid "(StrOpt) Pool in which volumes will be created"
msgstr ""
#: ./doc/common/tables/cinder-eqlx.xml:45(td)
msgid "eqlx_use_chap = False"
msgstr ""
#: ./doc/common/tables/cinder-eqlx.xml:46(td)
msgid "(BoolOpt) Use CHAP authentication for targets?"
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:7(caption) ./doc/common/tables/keystone-ec2.xml:7(caption)
msgid "Description of EC2 configuration options"
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:21(td)
msgid "ec2_dmz_host = $my_ip"
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:22(td)
msgid "(StrOpt) The internal IP address of the EC2 API server"
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:25(td)
msgid "ec2_host = $my_ip"
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:26(td)
msgid "(StrOpt) The IP address of the EC2 API server"
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:29(td)
msgid "ec2_listen = 0.0.0.0"
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:30(td)
msgid "(StrOpt) The IP address on which the EC2 API will listen."
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:33(td)
msgid "ec2_listen_port = 8773"
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:34(td)
msgid "(IntOpt) The port on which the EC2 API will listen."
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:37(td)
msgid "ec2_path = /services/Cloud"
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:38(td)
msgid "(StrOpt) The path prefix used to call the ec2 API server"
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:41(td)
msgid "ec2_port = 8773"
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:42(td)
msgid "(IntOpt) The port of the EC2 API server"
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:45(td)
msgid "ec2_private_dns_show_ip = False"
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:46(td)
msgid "(BoolOpt) Return the IP address as private dns hostname in describe instances"
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:49(td)
msgid "ec2_scheme = http"
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:50(td)
msgid "(StrOpt) The protocol to use when connecting to the EC2 API server (http, https)"
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:53(td)
msgid "ec2_strict_validation = True"
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:54(td)
msgid "(BoolOpt) Validate security group names according to EC2 specification"
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:57(td)
msgid "ec2_timestamp_expiry = 300"
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:58(td)
msgid "(IntOpt) Time in seconds before ec2 timestamp expires"
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:61(td)
msgid "ec2_workers = None"
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:62(td)
msgid "(IntOpt) Number of workers for EC2 API service. The default will be equal to the number of CPUs available."
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:65(td)
msgid "keystone_ec2_url = http://localhost:5000/v2.0/ec2tokens"
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:69(td)
msgid "lockout_attempts = 5"
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:70(td)
msgid "(IntOpt) Number of failed auths before lockout."
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:73(td)
msgid "lockout_minutes = 15"
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:74(td)
msgid "(IntOpt) Number of minutes to lockout if triggered."
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:77(td)
msgid "lockout_window = 15"
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:78(td)
msgid "(IntOpt) Number of minutes for lockout window."
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:81(td)
msgid "region_list ="
msgstr ""
#: ./doc/common/tables/nova-ec2.xml:82(td)
msgid "(ListOpt) List of region=fqdn pairs separated by commas"
msgstr ""
#: ./doc/common/tables/keystone-credential.xml:7(caption)
msgid "Description of credential configuration options"
msgstr ""
#: ./doc/common/tables/keystone-credential.xml:18(th)
msgid "[credential]"
msgstr ""
#: ./doc/common/tables/keystone-credential.xml:21(td)
msgid "driver = keystone.credential.backends.sql.Credential"
msgstr ""
#: ./doc/common/tables/cinder-block-device.xml:7(caption)
msgid "Description of block device configuration options"
msgstr ""
#: ./doc/common/tables/cinder-block-device.xml:21(td)
msgid "available_devices ="
msgstr ""
#: ./doc/common/tables/cinder-block-device.xml:22(td)
msgid "(ListOpt) List of all available devices"
msgstr ""
#: ./doc/common/tables/neutron-metadata.xml:21(td)
msgid "meta_flavor_driver_mappings = None"
msgstr ""
#: ./doc/common/tables/neutron-metadata.xml:22(td)
msgid "(StrOpt) Mapping between flavor and LinuxInterfaceDriver"
msgstr ""
#: ./doc/common/tables/neutron-metadata.xml:25(td)
msgid "metadata_backlog = 4096"
msgstr ""
#: ./doc/common/tables/neutron-metadata.xml:26(td)
msgid "(IntOpt) Number of backlog requests to configure the metadata server socket with"
msgstr ""
#: ./doc/common/tables/neutron-metadata.xml:29(td)
msgid "metadata_port = 9697"
msgstr ""
#: ./doc/common/tables/neutron-metadata.xml:30(td)
msgid "(IntOpt) TCP Port used by Neutron metadata namespace proxy."
msgstr ""
#: ./doc/common/tables/neutron-metadata.xml:37(td)
msgid "metadata_proxy_socket = $state_path/metadata_proxy"
msgstr ""
#: ./doc/common/tables/neutron-metadata.xml:38(td)
msgid "(StrOpt) Location of Metadata Proxy UNIX domain socket"
msgstr ""
#: ./doc/common/tables/neutron-metadata.xml:41(td)
msgid "metadata_workers = 2"
msgstr ""
#: ./doc/common/tables/neutron-metadata.xml:42(td)
msgid "(IntOpt) Number of separate worker processes for metadata server"
msgstr ""
#: ./doc/common/tables/neutron-metadata.xml:45(td)
msgid "nova_metadata_insecure = False"
msgstr ""
#: ./doc/common/tables/neutron-metadata.xml:49(td)
msgid "nova_metadata_ip = 127.0.0.1"
msgstr ""
#: ./doc/common/tables/neutron-metadata.xml:50(td)
msgid "(StrOpt) IP address used by Nova metadata server."
msgstr ""
#: ./doc/common/tables/neutron-metadata.xml:53(td)
msgid "nova_metadata_port = 8775"
msgstr ""
#: ./doc/common/tables/neutron-metadata.xml:54(td)
msgid "(IntOpt) TCP Port used by Nova metadata server."
msgstr ""
#: ./doc/common/tables/neutron-metadata.xml:57(td)
msgid "nova_metadata_protocol = http"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_netscaler.xml:7(caption)
msgid "Description of LBaaS Netscaler configuration options"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_netscaler.xml:18(th)
msgid "[netscaler_driver]"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_netscaler.xml:21(td)
msgid "netscaler_ncc_password = None"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_netscaler.xml:22(td)
msgid "(StrOpt) Password to login to the NetScaler Control Center Server."
msgstr ""
#: ./doc/common/tables/neutron-lbaas_netscaler.xml:25(td)
msgid "netscaler_ncc_uri = None"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_netscaler.xml:26(td)
msgid "(StrOpt) The URL to reach the NetScaler Control Center Server."
msgstr ""
#: ./doc/common/tables/neutron-lbaas_netscaler.xml:29(td)
msgid "netscaler_ncc_username = None"
msgstr ""
#: ./doc/common/tables/neutron-lbaas_netscaler.xml:30(td)
msgid "(StrOpt) Username to login to the NetScaler Control Center Server."
msgstr ""
#: ./doc/common/tables/nova-fping.xml:7(caption)
msgid "Description of fping configuration options"
msgstr ""
#: ./doc/common/tables/nova-fping.xml:21(td)
msgid "fping_path = /usr/sbin/fping"
msgstr ""
#: ./doc/common/tables/nova-fping.xml:22(td)
msgid "(StrOpt) Full path to fping."
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-staticweb.xml:8(literal)
msgid "[filter-staticweb]"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-staticweb.xml:20(td)
msgid "use = egg:swift#staticweb"
msgstr ""
#: ./doc/common/tables/trove-cluster.xml:7(caption)
msgid "Description of cluster configuration options"
msgstr ""
#: ./doc/common/tables/trove-cluster.xml:21(td)
msgid "cluster_delete_time_out = 180"
msgstr ""
#: ./doc/common/tables/trove-cluster.xml:25(td)
msgid "cluster_usage_timeout = 675"
msgstr ""
#: ./doc/common/tables/trove-cluster.xml:29(td)
msgid "clusters_page_size = 20"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-replicator.xml:8(literal)
msgid "[container-replicator]"
msgstr ""
#: ./doc/common/tables/swift-container-server-container-replicator.xml:44(td)
msgid "log_name = container-replicator"
msgstr ""
#: ./doc/common/tables/neutron-ml2_ncs.xml:7(caption)
msgid "Description of ML2 NCS mechanism driver configuration options"
msgstr ""
#: ./doc/common/tables/neutron-ml2_ncs.xml:18(th)
msgid "[ml2_ncs]"
msgstr ""
#: ./doc/common/tables/neutron-ml2_ncs.xml:22(td) ./doc/common/tables/neutron-ml2_odl.xml:22(td)
msgid "(StrOpt) HTTP password for authentication"
msgstr ""
#: ./doc/common/tables/neutron-ml2_ncs.xml:25(td) ./doc/common/tables/neutron-ml2_odl.xml:29(td)
msgid "timeout = 10"
msgstr ""
#: ./doc/common/tables/neutron-ml2_ncs.xml:26(td) ./doc/common/tables/neutron-ml2_odl.xml:30(td)
msgid "(IntOpt) HTTP timeout in seconds."
msgstr ""
#: ./doc/common/tables/neutron-ml2_ncs.xml:30(td)
msgid "(StrOpt) HTTP URL of Tail-f NCS REST interface."
msgstr ""
#: ./doc/common/tables/neutron-ml2_ncs.xml:33(td) ./doc/common/tables/neutron-ml2_odl.xml:37(td)
msgid "username = None"
msgstr ""
#: ./doc/common/tables/neutron-ml2_ncs.xml:34(td) ./doc/common/tables/neutron-ml2_odl.xml:38(td)
msgid "(StrOpt) HTTP username for authentication"
msgstr ""
#: ./doc/common/tables/neutron-ml2_arista.xml:7(caption)
msgid "Description of ML2 Arista mechanism driver configuration options"
msgstr ""
#: ./doc/common/tables/neutron-ml2_arista.xml:18(th)
msgid "[ml2_arista]"
msgstr ""
#: ./doc/common/tables/neutron-ml2_arista.xml:21(td)
msgid "eapi_host ="
msgstr ""
#: ./doc/common/tables/neutron-ml2_arista.xml:22(td)
msgid "(StrOpt) Arista EOS IP address. This is required field. If not set, all communications to Arista EOSwill fail."
msgstr ""
#: ./doc/common/tables/neutron-ml2_arista.xml:25(td)
msgid "eapi_password ="
msgstr ""
#: ./doc/common/tables/neutron-ml2_arista.xml:26(td)
msgid "(StrOpt) Password for Arista EOS. This is required field. If not set, all communications to Arista EOS will fail."
msgstr ""
#: ./doc/common/tables/neutron-ml2_arista.xml:29(td)
msgid "eapi_username ="
msgstr ""
#: ./doc/common/tables/neutron-ml2_arista.xml:30(td)
msgid "(StrOpt) Username for Arista EOS. This is required field. If not set, all communications to Arista EOSwill fail."
msgstr ""
#: ./doc/common/tables/neutron-ml2_arista.xml:33(td)
msgid "region_name = RegionOne"
msgstr ""
#: ./doc/common/tables/neutron-ml2_arista.xml:34(td)
msgid "(StrOpt) Defines Region Name that is assigned to this OpenStack Controller. This is useful when multiple OpenStack/Neutron controllers are managing the same Arista HW clusters. Note that this name must match with the region name registered (or known) to keystone service. Authentication with Keysotne is performed by EOS. This is optional. If not set, a value of \"RegionOne\" is assumed."
msgstr ""
#: ./doc/common/tables/neutron-ml2_arista.xml:37(td)
msgid "sync_interval = 180"
msgstr ""
#: ./doc/common/tables/neutron-ml2_arista.xml:38(td)
msgid "(IntOpt) Sync interval in seconds between Neutron plugin and EOS. This interval defines how often the synchronization is performed. This is an optional field. If not set, a value of 180 seconds is assumed."
msgstr ""
#: ./doc/common/tables/neutron-ml2_arista.xml:41(td)
msgid "use_fqdn = True"
msgstr ""
#: ./doc/common/tables/neutron-ml2_arista.xml:42(td)
msgid "(BoolOpt) Defines if hostnames are sent to Arista EOS as FQDNs (\"node1.domain.com\") or as short names (\"node1\"). This is optional. If not set, a value of \"True\" is assumed."
msgstr ""
#: ./doc/common/tables/nova-trustedcomputing.xml:7(caption)
msgid "Description of trusted computing configuration options"
msgstr ""
#: ./doc/common/tables/nova-trustedcomputing.xml:18(th)
msgid "[trusted_computing]"
msgstr ""
#: ./doc/common/tables/nova-trustedcomputing.xml:21(td)
msgid "attestation_api_url = /OpenAttestationWebServices/V1.0"
msgstr ""
#: ./doc/common/tables/nova-trustedcomputing.xml:22(td)
msgid "(StrOpt) Attestation web API URL"
msgstr ""
#: ./doc/common/tables/nova-trustedcomputing.xml:25(td)
msgid "attestation_auth_blob = None"
msgstr ""
#: ./doc/common/tables/nova-trustedcomputing.xml:26(td)
msgid "(StrOpt) Attestation authorization blob - must change"
msgstr ""
#: ./doc/common/tables/nova-trustedcomputing.xml:29(td)
msgid "attestation_auth_timeout = 60"
msgstr ""
#: ./doc/common/tables/nova-trustedcomputing.xml:30(td)
msgid "(IntOpt) Attestation status cache valid period length"
msgstr ""
#: ./doc/common/tables/nova-trustedcomputing.xml:33(td)
msgid "attestation_port = 8443"
msgstr ""
#: ./doc/common/tables/nova-trustedcomputing.xml:34(td)
msgid "(StrOpt) Attestation server port"
msgstr ""
#: ./doc/common/tables/nova-trustedcomputing.xml:37(td)
msgid "attestation_server = None"
msgstr ""
#: ./doc/common/tables/nova-trustedcomputing.xml:38(td)
msgid "(StrOpt) Attestation server HTTP"
msgstr ""
#: ./doc/common/tables/nova-trustedcomputing.xml:41(td)
msgid "attestation_server_ca_file = None"
msgstr ""
#: ./doc/common/tables/nova-trustedcomputing.xml:42(td)
msgid "(StrOpt) Attestation server Cert file for Identity verification"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-bulk.xml:8(literal)
msgid "[filter-bulk]"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-bulk.xml:20(td)
msgid "delete_container_retry_count = 0"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-bulk.xml:24(td)
msgid "max_containers_per_extraction = 10000"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-bulk.xml:28(td)
msgid "max_deletes_per_request = 10000"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-bulk.xml:32(td)
msgid "max_failed_deletes = 1000"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-bulk.xml:36(td)
msgid "max_failed_extractions = 1000"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-bulk.xml:40(td)
msgid "use = egg:swift#bulk"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-bulk.xml:44(td)
msgid "yield_frequency = 10"
msgstr ""
#: ./doc/common/tables/neutron-compute.xml:21(td)
msgid "notify_nova_on_port_data_changes = True"
msgstr ""
#: ./doc/common/tables/neutron-compute.xml:22(td)
msgid "(BoolOpt) Send notification to nova when port data (fixed_ips/floatingip) changes so nova can update its cache."
msgstr ""
#: ./doc/common/tables/neutron-compute.xml:25(td)
msgid "notify_nova_on_port_status_changes = True"
msgstr ""
#: ./doc/common/tables/neutron-compute.xml:26(td)
msgid "(BoolOpt) Send notification to nova when port status changes"
msgstr ""
#: ./doc/common/tables/neutron-compute.xml:29(td)
msgid "nova_admin_auth_url = http://localhost:5000/v2.0"
msgstr ""
#: ./doc/common/tables/neutron-compute.xml:30(td)
msgid "(StrOpt) Authorization URL for connecting to nova in admin context"
msgstr ""
#: ./doc/common/tables/neutron-compute.xml:33(td)
msgid "nova_admin_password = None"
msgstr ""
#: ./doc/common/tables/neutron-compute.xml:34(td)
msgid "(StrOpt) Password for connection to nova in admin context"
msgstr ""
#: ./doc/common/tables/neutron-compute.xml:37(td)
msgid "nova_admin_tenant_id = None"
msgstr ""
#: ./doc/common/tables/neutron-compute.xml:38(td)
msgid "(StrOpt) The uuid of the admin nova tenant"
msgstr ""
#: ./doc/common/tables/neutron-compute.xml:41(td)
msgid "nova_admin_username = None"
msgstr ""
#: ./doc/common/tables/neutron-compute.xml:42(td)
msgid "(StrOpt) Username for connecting to nova in admin context"
msgstr ""
#: ./doc/common/tables/neutron-compute.xml:45(td) ./doc/common/tables/cinder-compute.xml:21(td)
msgid "nova_api_insecure = False"
msgstr ""
#: ./doc/common/tables/neutron-compute.xml:49(td) ./doc/common/tables/cinder-compute.xml:25(td)
msgid "nova_ca_certificates_file = None"
msgstr ""
#: ./doc/common/tables/neutron-compute.xml:53(td)
msgid "nova_client_cert ="
msgstr ""
#: ./doc/common/tables/neutron-compute.xml:57(td)
msgid "nova_client_priv_key ="
msgstr ""
#: ./doc/common/tables/neutron-compute.xml:61(td)
msgid "nova_region_name = None"
msgstr ""
#: ./doc/common/tables/neutron-compute.xml:62(td)
msgid "(StrOpt) Name of nova region to use. Useful if keystone manages more than one region."
msgstr ""
#: ./doc/common/tables/neutron-compute.xml:65(td)
msgid "nova_url = http://127.0.0.1:8774/v2"
msgstr ""
#: ./doc/common/tables/neutron-compute.xml:66(td)
msgid "(StrOpt) URL for connection to nova"
msgstr ""
#: ./doc/common/tables/neutron-compute.xml:69(td)
msgid "send_events_interval = 2"
msgstr ""
#: ./doc/common/tables/neutron-compute.xml:70(td)
msgid "(IntOpt) Number of seconds between sending events to nova if there are any events to send."
msgstr ""
#: ./doc/common/tables/glance-imagecache.xml:7(caption)
msgid "Description of flagmappings configuration options"
msgstr ""
#: ./doc/common/tables/glance-imagecache.xml:21(td)
msgid "cleanup_scrubber = False"
msgstr ""
#: ./doc/common/tables/glance-imagecache.xml:22(td)
msgid "(BoolOpt) A boolean that determines if the scrubber should clean up the files it uses for taking data. Only one server in your deployment should be designated the cleanup host."
msgstr ""
#: ./doc/common/tables/glance-imagecache.xml:25(td)
msgid "cleanup_scrubber_time = 86400"
msgstr ""
#: ./doc/common/tables/glance-imagecache.xml:26(td)
msgid "(IntOpt) Items must have a modified time that is older than this value in order to be candidates for cleanup."
msgstr ""
#: ./doc/common/tables/glance-imagecache.xml:29(td)
msgid "delayed_delete = False"
msgstr ""
#: ./doc/common/tables/glance-imagecache.xml:30(td)
msgid "(BoolOpt) Turn on/off delayed delete."
msgstr ""
#: ./doc/common/tables/glance-imagecache.xml:33(td)
msgid "image_cache_dir = None"
msgstr ""
#: ./doc/common/tables/glance-imagecache.xml:34(td)
msgid "(StrOpt) Base directory that the Image Cache uses."
msgstr ""
#: ./doc/common/tables/glance-imagecache.xml:37(td)
msgid "image_cache_driver = sqlite"
msgstr ""
#: ./doc/common/tables/glance-imagecache.xml:38(td)
msgid "(StrOpt) The driver to use for image cache management."
msgstr ""
#: ./doc/common/tables/glance-imagecache.xml:41(td)
msgid "image_cache_max_size = 10737418240"
msgstr ""
#: ./doc/common/tables/glance-imagecache.xml:42(td)
msgid "(IntOpt) The maximum size in bytes that the cache can use."
msgstr ""
#: ./doc/common/tables/glance-imagecache.xml:45(td)
msgid "image_cache_sqlite_db = cache.db"
msgstr ""
#: ./doc/common/tables/glance-imagecache.xml:46(td)
msgid "(StrOpt) The path to the sqlite file database that will be used for image cache management."
msgstr ""
#: ./doc/common/tables/glance-imagecache.xml:49(td)
msgid "image_cache_stall_time = 86400"
msgstr ""
#: ./doc/common/tables/glance-imagecache.xml:50(td)
msgid "(IntOpt) The amount of time to let an image remain in the cache without being accessed."
msgstr ""
#: ./doc/common/tables/glance-imagecache.xml:53(td)
msgid "scrub_time = 0"
msgstr ""
#: ./doc/common/tables/glance-imagecache.xml:54(td)
msgid "(IntOpt) The amount of time in seconds to delay before performing a delete."
msgstr ""
#: ./doc/common/tables/glance-imagecache.xml:57(td)
msgid "scrubber_datadir = /var/lib/glance/scrubber"
msgstr ""
#: ./doc/common/tables/glance-imagecache.xml:58(td)
msgid "(StrOpt) Directory that the scrubber will use to track information about what to delete. Make sure this is set in glance-api.conf and glance-scrubber.conf."
msgstr ""
#: ./doc/common/tables/neutron-ml2_brocade.xml:7(caption)
msgid "Description of ML2 Brocade mechanism driver configuration options"
msgstr ""
#: ./doc/common/tables/neutron-ml2_brocade.xml:18(th)
msgid "[ml2_brocade]"
msgstr ""
#: ./doc/common/tables/neutron-ml2_brocade.xml:21(td) ./doc/common/tables/neutron-brocade.xml:28(td)
msgid "address ="
msgstr ""
#: ./doc/common/tables/neutron-ml2_brocade.xml:22(td) ./doc/common/tables/neutron-brocade.xml:29(td)
msgid "(StrOpt) The address of the host to SSH to"
msgstr ""
#: ./doc/common/tables/neutron-ml2_brocade.xml:25(td) ./doc/common/tables/neutron-brocade.xml:32(td)
msgid "ostype = NOS"
msgstr ""
#: ./doc/common/tables/neutron-ml2_brocade.xml:26(td)
msgid "(StrOpt) OS Type of the switch"
msgstr ""
#: ./doc/common/tables/neutron-ml2_brocade.xml:29(td)
msgid "osversion = 4.0.0"
msgstr ""
#: ./doc/common/tables/neutron-ml2_brocade.xml:30(td)
msgid "(StrOpt) OS Version number"
msgstr ""
#: ./doc/common/tables/neutron-ml2_brocade.xml:34(td) ./doc/common/tables/neutron-brocade.xml:37(td)
msgid "(StrOpt) The SSH password to use"
msgstr ""
#: ./doc/common/tables/neutron-ml2_brocade.xml:37(td)
msgid "physical_networks ="
msgstr ""
#: ./doc/common/tables/neutron-ml2_brocade.xml:38(td)
msgid "(StrOpt) Allowed physical networks"
msgstr ""
#: ./doc/common/tables/neutron-ml2_brocade.xml:41(td) ./doc/common/tables/neutron-midonet.xml:45(td)
msgid "username = admin"
msgstr ""
#: ./doc/common/tables/neutron-ml2_brocade.xml:42(td) ./doc/common/tables/neutron-brocade.xml:41(td)
msgid "(StrOpt) The SSH username to use"
msgstr ""
#: ./doc/common/tables/swift-account-server-account-auditor.xml:8(literal)
msgid "[account-auditor]"
msgstr ""
#: ./doc/common/tables/swift-account-server-account-auditor.xml:20(td)
msgid "accounts_per_second = 200"
msgstr ""
#: ./doc/common/tables/swift-account-server-account-auditor.xml:21(td)
msgid "Maximum accounts audited per second. Should be tuned according to individual system specs. 0 is unlimited."
msgstr ""
#: ./doc/common/tables/swift-account-server-account-auditor.xml:40(td)
msgid "log_name = account-auditor"
msgstr ""
#: ./doc/common/tables/cinder-nas.xml:7(caption)
msgid "Description of NAS configuration options"
msgstr ""
#: ./doc/common/tables/cinder-nas.xml:21(td)
msgid "nas_ip ="
msgstr ""
#: ./doc/common/tables/cinder-nas.xml:22(td)
msgid "(StrOpt) IP address or Hostname of NAS system."
msgstr ""
#: ./doc/common/tables/cinder-nas.xml:25(td)
msgid "nas_login = admin"
msgstr ""
#: ./doc/common/tables/cinder-nas.xml:26(td)
msgid "(StrOpt) User name to connect to NAS system."
msgstr ""
#: ./doc/common/tables/cinder-nas.xml:29(td)
msgid "nas_password ="
msgstr ""
#: ./doc/common/tables/cinder-nas.xml:30(td)
msgid "(StrOpt) Password to connect to NAS system."
msgstr ""
#: ./doc/common/tables/cinder-nas.xml:33(td)
msgid "nas_private_key ="
msgstr ""
#: ./doc/common/tables/cinder-nas.xml:34(td)
msgid "(StrOpt) Filename of private key to use for SSH authentication."
msgstr ""
#: ./doc/common/tables/cinder-nas.xml:37(td)
msgid "nas_ssh_port = 22"
msgstr ""
#: ./doc/common/tables/cinder-nas.xml:38(td)
msgid "(IntOpt) SSH port to use to connect to NAS system."
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_nfs.xml:7(caption)
msgid "Description of NetApp cDOT NFS driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_nfs.xml:25(td)
msgid "netapp_copyoffload_tool_path = None"
msgstr ""
#: ./doc/common/tables/cinder-netapp_cdot_nfs.xml:26(td)
msgid "(StrOpt) This option specifies the path of the NetApp copy offload tool binary. Ensure that the binary has execute permissions set which allow the effective user of the cinder-volume process to execute the file."
msgstr ""
#: ./doc/common/tables/heat-clients_swift.xml:7(caption)
msgid "Description of swift clients configuration options"
msgstr ""
#: ./doc/common/tables/heat-clients_swift.xml:18(th)
msgid "[clients_swift]"
msgstr ""
#: ./doc/common/tables/neutron-brocade.xml:7(caption)
msgid "Description of Brocade configuration options"
msgstr ""
#: ./doc/common/tables/neutron-brocade.xml:18(th)
msgid "[PHYSICAL_INTERFACE]"
msgstr ""
#: ./doc/common/tables/neutron-brocade.xml:21(td)
msgid "physical_interface = eth0"
msgstr ""
#: ./doc/common/tables/neutron-brocade.xml:22(td)
msgid "(StrOpt) The network interface to use when creatinga port"
msgstr ""
#: ./doc/common/tables/neutron-brocade.xml:25(th)
msgid "[SWITCH]"
msgstr ""
#: ./doc/common/tables/neutron-brocade.xml:33(td)
msgid "(StrOpt) Currently unused"
msgstr ""
#: ./doc/common/tables/neutron-brocade.xml:36(td)
msgid "password ="
msgstr ""
#: ./doc/common/tables/neutron-brocade.xml:40(td)
msgid "username ="
msgstr ""
#: ./doc/common/tables/neutron-ml2_odl.xml:7(caption)
msgid "Description of ML2 OpenDaylight mechanism driver configuration options"
msgstr ""
#: ./doc/common/tables/neutron-ml2_odl.xml:18(th)
msgid "[ml2_odl]"
msgstr ""
#: ./doc/common/tables/neutron-ml2_odl.xml:25(td)
msgid "session_timeout = 30"
msgstr ""
#: ./doc/common/tables/neutron-ml2_odl.xml:26(td)
msgid "(IntOpt) Tomcat session timeout in minutes."
msgstr ""
#: ./doc/common/tables/neutron-ml2_odl.xml:34(td)
msgid "(StrOpt) HTTP URL of OpenDaylight REST interface."
msgstr ""
#: ./doc/common/tables/swift-object-server-filter-recon.xml:24(td)
msgid "recon_lock_path = /var/lock"
msgstr ""
#: ./doc/common/tables/heat-rpc.xml:21(td)
msgid "engine_life_check_timeout = 2"
msgstr ""
#: ./doc/common/tables/heat-rpc.xml:22(td)
msgid "(IntOpt) RPC timeout for the engine liveness check that is used for stack locking."
msgstr ""
#: ./doc/common/tables/trove-taskmanager.xml:7(caption)
msgid "Description of taskmanager configuration options"
msgstr ""
#: ./doc/common/tables/trove-taskmanager.xml:21(td)
msgid "cloudinit_location = /etc/trove/cloudinit"
msgstr ""
#: ./doc/common/tables/trove-taskmanager.xml:22(td)
msgid "(StrOpt) Path to folder with cloudinit scripts."
msgstr ""
#: ./doc/common/tables/trove-taskmanager.xml:25(td)
msgid "datastore_manager = None"
msgstr ""
#: ./doc/common/tables/trove-taskmanager.xml:26(td)
msgid "(StrOpt) Manager class in guestagent, setup by taskmanager on instance provision."
msgstr ""
#: ./doc/common/tables/trove-taskmanager.xml:29(td)
msgid "datastore_registry_ext = {}"
msgstr ""
#: ./doc/common/tables/trove-taskmanager.xml:30(td)
msgid "(DictOpt) Extension for default datastore managers. Allows to use custom managers for each of datastore supported in trove."
msgstr ""
#: ./doc/common/tables/trove-taskmanager.xml:33(td)
msgid "exists_notification_ticks = 360"
msgstr ""
#: ./doc/common/tables/trove-taskmanager.xml:34(td)
msgid "(IntOpt) Number of report_intervals to wait between pushing events (see report_interval)."
msgstr ""
#: ./doc/common/tables/trove-taskmanager.xml:37(td)
msgid "exists_notification_transformer = None"
msgstr ""
#: ./doc/common/tables/trove-taskmanager.xml:38(td)
msgid "(StrOpt) Transformer for exists notifications."
msgstr ""
#: ./doc/common/tables/trove-taskmanager.xml:41(td)
msgid "reboot_time_out = 120"
msgstr ""
#: ./doc/common/tables/trove-taskmanager.xml:45(td)
msgid "resize_time_out = 600"
msgstr ""
#: ./doc/common/tables/trove-taskmanager.xml:49(td)
msgid "revert_time_out = 600"
msgstr ""
#: ./doc/common/tables/trove-taskmanager.xml:53(td)
msgid "server_delete_time_out = 60"
msgstr ""
#: ./doc/common/tables/trove-taskmanager.xml:57(td)
msgid "state_change_wait_time = 180"
msgstr ""
#: ./doc/common/tables/trove-taskmanager.xml:61(td)
msgid "update_status_on_fail = True"
msgstr ""
#: ./doc/common/tables/trove-taskmanager.xml:62(td)
msgid "(BoolOpt) Set the service and instance task statuses to ERROR when an instance fails to become active within the configured usage_timeout."
msgstr ""
#: ./doc/common/tables/trove-taskmanager.xml:69(td)
msgid "use_heat = False"
msgstr ""
#: ./doc/common/tables/trove-taskmanager.xml:73(td)
msgid "use_nova_server_config_drive = False"
msgstr ""
#: ./doc/common/tables/trove-taskmanager.xml:77(td)
msgid "use_nova_server_volume = False"
msgstr ""
#: ./doc/common/tables/trove-taskmanager.xml:81(td)
msgid "verify_swift_checksum_on_restore = True"
msgstr ""
#: ./doc/common/tables/trove-taskmanager.xml:82(td)
msgid "(BoolOpt) Enable verification of swift checksum before starting restore; makes sure the checksum of original backup matches checksum of the swift backup file."
msgstr ""
#: ./doc/common/tables/heat-cloudwatch_api.xml:7(caption)
msgid "Description of CloudWatch API configuration options"
msgstr ""
#: ./doc/common/tables/heat-cloudwatch_api.xml:25(th)
msgid "[heat_api_cloudwatch]"
msgstr ""
#: ./doc/common/tables/heat-cloudwatch_api.xml:36(td)
msgid "bind_port = 8003"
msgstr ""
#: ./doc/common/tables/heat-cloudwatch_api.xml:49(td)
msgid "(IntOpt) Maximum line size of message headers to be accepted. max_header_line may need to be increased when using large tokens (typically those generated by the Keystone v3 API with big service catalogs.)"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:7(caption)
msgid "Description of Hitachi volume driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:21(td)
msgid "hitachi_add_chap_user = False"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:22(td) ./doc/common/tables/cinder-conf-changes.xml:97(td)
msgid "(BoolOpt) Add CHAP user"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:25(td)
msgid "hitachi_async_copy_check_interval = 10"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:26(td) ./doc/common/tables/cinder-conf-changes.xml:101(td)
msgid "(IntOpt) Interval to check copy asynchronously"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:29(td)
msgid "hitachi_auth_method = None"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:30(td) ./doc/common/tables/cinder-conf-changes.xml:105(td)
msgid "(StrOpt) iSCSI authentication method"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:33(td)
msgid "hitachi_auth_password = HBSD-CHAP-password"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:34(td) ./doc/common/tables/cinder-conf-changes.xml:109(td)
msgid "(StrOpt) iSCSI authentication password"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:37(td)
msgid "hitachi_auth_user = HBSD-CHAP-user"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:38(td) ./doc/common/tables/cinder-conf-changes.xml:113(td)
msgid "(StrOpt) iSCSI authentication username"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:41(td)
msgid "hitachi_copy_check_interval = 3"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:42(td) ./doc/common/tables/cinder-conf-changes.xml:117(td)
msgid "(IntOpt) Interval to check copy"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:45(td)
msgid "hitachi_copy_speed = 3"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:46(td) ./doc/common/tables/cinder-conf-changes.xml:121(td)
msgid "(IntOpt) Copy speed of storage system"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:49(td)
msgid "hitachi_default_copy_method = FULL"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:50(td) ./doc/common/tables/cinder-conf-changes.xml:125(td)
msgid "(StrOpt) Default copy method of storage system"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:53(td)
msgid "hitachi_group_range = None"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:54(td) ./doc/common/tables/cinder-conf-changes.xml:129(td)
msgid "(StrOpt) Range of group number"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:57(td)
msgid "hitachi_group_request = False"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:58(td) ./doc/common/tables/cinder-conf-changes.xml:133(td)
msgid "(BoolOpt) Request for creating HostGroup or iSCSI Target"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:61(td)
msgid "hitachi_horcm_add_conf = True"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:62(td) ./doc/common/tables/cinder-conf-changes.xml:137(td)
msgid "(BoolOpt) Add to HORCM configuration"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:65(td)
msgid "hitachi_horcm_numbers = 200,201"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:66(td) ./doc/common/tables/cinder-conf-changes.xml:141(td)
msgid "(StrOpt) Instance numbers for HORCM"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:69(td)
msgid "hitachi_horcm_password = None"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:70(td) ./doc/common/tables/cinder-conf-changes.xml:145(td)
msgid "(StrOpt) Password of storage system for HORCM"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:73(td)
msgid "hitachi_horcm_user = None"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:74(td) ./doc/common/tables/cinder-conf-changes.xml:149(td)
msgid "(StrOpt) Username of storage system for HORCM"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:77(td)
msgid "hitachi_ldev_range = None"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:78(td) ./doc/common/tables/cinder-conf-changes.xml:153(td)
msgid "(StrOpt) Range of logical device of storage system"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:81(td)
msgid "hitachi_pool_id = None"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:82(td) ./doc/common/tables/cinder-conf-changes.xml:157(td)
msgid "(IntOpt) Pool ID of storage system"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:85(td)
msgid "hitachi_serial_number = None"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:86(td) ./doc/common/tables/cinder-conf-changes.xml:161(td)
msgid "(StrOpt) Serial number of storage system"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:89(td)
msgid "hitachi_target_ports = None"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:90(td) ./doc/common/tables/cinder-conf-changes.xml:165(td)
msgid "(StrOpt) Control port names for HostGroup or iSCSI Target"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:93(td)
msgid "hitachi_thin_pool_id = None"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:94(td) ./doc/common/tables/cinder-conf-changes.xml:169(td)
msgid "(IntOpt) Thin pool ID of storage system"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:97(td)
msgid "hitachi_unit_name = None"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:98(td) ./doc/common/tables/cinder-conf-changes.xml:173(td)
msgid "(StrOpt) Name of an array unit"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:101(td)
msgid "hitachi_zoning_request = False"
msgstr ""
#: ./doc/common/tables/cinder-hitachi.xml:102(td) ./doc/common/tables/cinder-conf-changes.xml:177(td)
msgid "(BoolOpt) Request for FC Zone creating HostGroup"
msgstr ""
#: ./doc/common/tables/cinder-images.xml:7(caption)
msgid "Description of images configuration options"
msgstr ""
#: ./doc/common/tables/cinder-images.xml:22(td)
msgid "(ListOpt) A list of url schemes that can be downloaded directly via the direct_url. Currently supported schemes: [file]."
msgstr ""
#: ./doc/common/tables/cinder-images.xml:25(td)
msgid "glance_api_insecure = False"
msgstr ""
#: ./doc/common/tables/cinder-images.xml:29(td)
msgid "glance_api_servers = $glance_host:$glance_port"
msgstr ""
#: ./doc/common/tables/cinder-images.xml:30(td)
msgid "(ListOpt) A list of the glance API servers available to cinder ([hostname|ip]:port)"
msgstr ""
#: ./doc/common/tables/cinder-images.xml:33(td)
msgid "glance_api_ssl_compression = False"
msgstr ""
#: ./doc/common/tables/cinder-images.xml:34(td)
msgid "(BoolOpt) Enables or disables negotiation of SSL layer compression. In some cases disabling compression can improve data throughput, such as when high network bandwidth is available and you use compressed image formats like qcow2."
msgstr ""
#: ./doc/common/tables/cinder-images.xml:37(td)
msgid "glance_api_version = 1"
msgstr ""
#: ./doc/common/tables/cinder-images.xml:38(td)
msgid "(IntOpt) Version of the glance API to use"
msgstr ""
#: ./doc/common/tables/cinder-images.xml:41(td)
msgid "glance_core_properties = checksum, container_format, disk_format, image_name, image_id, min_disk, min_ram, name, size"
msgstr ""
#: ./doc/common/tables/cinder-images.xml:42(td) ./doc/common/tables/cinder-conf-changes.xml:85(td)
msgid "(ListOpt) Default core properties of image"
msgstr ""
#: ./doc/common/tables/cinder-images.xml:45(td)
msgid "glance_host = $my_ip"
msgstr ""
#: ./doc/common/tables/cinder-images.xml:46(td)
msgid "(StrOpt) Default glance host name or IP"
msgstr ""
#: ./doc/common/tables/cinder-images.xml:49(td)
msgid "glance_num_retries = 0"
msgstr ""
#: ./doc/common/tables/cinder-images.xml:50(td)
msgid "(IntOpt) Number retries when downloading an image from glance"
msgstr ""
#: ./doc/common/tables/cinder-images.xml:53(td)
msgid "glance_port = 9292"
msgstr ""
#: ./doc/common/tables/cinder-images.xml:57(td)
msgid "glance_request_timeout = None"
msgstr ""
#: ./doc/common/tables/cinder-images.xml:58(td)
msgid "(IntOpt) http/https timeout value for glance operations. If no value (None) is supplied here, the glanceclient default value is used."
msgstr ""
#: ./doc/common/tables/cinder-images.xml:61(td)
msgid "image_conversion_dir = $state_path/conversion"
msgstr ""
#: ./doc/common/tables/cinder-images.xml:62(td)
msgid "(StrOpt) Directory used for temporary storage during image conversion"
msgstr ""
#: ./doc/common/tables/cinder-images.xml:65(td)
msgid "use_multipath_for_image_xfer = False"
msgstr ""
#: ./doc/common/tables/cinder-images.xml:66(td)
msgid "(BoolOpt) Do we attach/detach volumes in cinder using multipath for volume to image and image to volume transfers?"
msgstr ""
#: ./doc/common/tables/cinder-huawei.xml:7(caption)
msgid "Description of Huawei storage driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-huawei.xml:21(td)
msgid "cinder_huawei_conf_file = /etc/cinder/cinder_huawei_conf.xml"
msgstr ""
#: ./doc/common/tables/cinder-huawei.xml:22(td)
msgid "(StrOpt) The configuration file for the Cinder Huawei driver"
msgstr ""
#: ./doc/common/tables/nova-console.xml:7(caption)
msgid "Description of console configuration options"
msgstr ""
#: ./doc/common/tables/nova-console.xml:21(td)
msgid "console_public_hostname = localhost"
msgstr ""
#: ./doc/common/tables/nova-console.xml:22(td)
msgid "(StrOpt) Publicly visible name for this console host"
msgstr ""
#: ./doc/common/tables/nova-console.xml:25(td)
msgid "console_token_ttl = 600"
msgstr ""
#: ./doc/common/tables/nova-console.xml:26(td)
msgid "(IntOpt) How many seconds before deleting tokens"
msgstr ""
#: ./doc/common/tables/nova-console.xml:29(td)
msgid "consoleauth_manager = nova.consoleauth.manager.ConsoleAuthManager"
msgstr ""
#: ./doc/common/tables/nova-console.xml:30(td)
msgid "(StrOpt) Manager for console auth"
msgstr ""
#: ./doc/common/tables/cinder-profiler.xml:7(caption) ./doc/common/tables/glance-profiler.xml:7(caption)
msgid "Description of profiler configuration options"
msgstr ""
#: ./doc/common/tables/cinder-profiler.xml:18(th) ./doc/common/tables/glance-profiler.xml:18(th)
msgid "[profiler]"
msgstr ""
#: ./doc/common/tables/cinder-profiler.xml:21(td)
msgid "profiler_enabled = False"
msgstr ""
#: ./doc/common/tables/cinder-profiler.xml:25(td)
msgid "trace_sqlalchemy = False"
msgstr ""
#: ./doc/common/tables/neutron-fwaas.xml:7(caption)
msgid "Description of FwaaS configuration options"
msgstr ""
#: ./doc/common/tables/neutron-fwaas.xml:18(th) ./doc/common/tables/neutron-nec.xml:72(th)
msgid "[fwaas]"
msgstr ""
#: ./doc/common/tables/neutron-fwaas.xml:22(td)
msgid "(BoolOpt) Enable FWaaS"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_nfs.xml:7(caption)
msgid "Description of Nexenta NFS driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_nfs.xml:21(td)
msgid "nexenta_mount_point_base = $state_path/mnt"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_nfs.xml:22(td)
msgid "(StrOpt) Base directory that contains NFS share mount points"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_nfs.xml:25(td)
msgid "nexenta_nms_cache_volroot = True"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_nfs.xml:26(td)
msgid "(BoolOpt) If set True cache NexentaStor appliance volroot option value."
msgstr ""
#: ./doc/common/tables/cinder-nexenta_nfs.xml:29(td)
msgid "nexenta_shares_config = /etc/cinder/nfs_shares"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_nfs.xml:33(td)
msgid "nexenta_volume_compression = on"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_nfs.xml:34(td)
msgid "(StrOpt) Default compression value for new ZFS folders."
msgstr ""
#: ./doc/common/tables/nova-database.xml:21(td)
msgid "db_driver = nova.db"
msgstr ""
#: ./doc/common/tables/nova-database.xml:22(td)
msgid "(StrOpt) The driver to use for database access"
msgstr ""
#: ./doc/common/tables/nova-quota.xml:21(td)
msgid "bandwidth_poll_interval = 600"
msgstr ""
#: ./doc/common/tables/nova-quota.xml:22(td)
msgid "(IntOpt) Interval to pull network bandwidth usage info. Not supported on all hypervisors. Set to -1 to disable. Setting this to 0 will disable, but this will change in the K release to mean \"run at the default rate\"."
msgstr ""
#: ./doc/common/tables/nova-quota.xml:25(td)
msgid "enable_network_quota = False"
msgstr ""
#: ./doc/common/tables/nova-quota.xml:26(td)
msgid "(BoolOpt) Enables or disables quota checking for tenant networks"
msgstr ""
#: ./doc/common/tables/nova-quota.xml:29(td)
msgid "quota_cores = 20"
msgstr ""
#: ./doc/common/tables/nova-quota.xml:30(td)
msgid "(IntOpt) Number of instance cores allowed per project"
msgstr ""
#: ./doc/common/tables/nova-quota.xml:33(td)
msgid "quota_driver = nova.quota.DbQuotaDriver"
msgstr ""
#: ./doc/common/tables/nova-quota.xml:37(td)
msgid "quota_fixed_ips = -1"
msgstr ""
#: ./doc/common/tables/nova-quota.xml:38(td)
msgid "(IntOpt) Number of fixed IPs allowed per project (this should be at least the number of instances allowed)"
msgstr ""
#: ./doc/common/tables/nova-quota.xml:41(td)
msgid "quota_floating_ips = 10"
msgstr ""
#: ./doc/common/tables/nova-quota.xml:42(td)
msgid "(IntOpt) Number of floating IPs allowed per project"
msgstr ""
#: ./doc/common/tables/nova-quota.xml:45(td)
msgid "quota_injected_file_content_bytes = 10240"
msgstr ""
#: ./doc/common/tables/nova-quota.xml:46(td)
msgid "(IntOpt) Number of bytes allowed per injected file"
msgstr ""
#: ./doc/common/tables/nova-quota.xml:49(td)
msgid "quota_injected_file_path_length = 255"
msgstr ""
#: ./doc/common/tables/nova-quota.xml:53(td)
msgid "quota_injected_files = 5"
msgstr ""
#: ./doc/common/tables/nova-quota.xml:54(td)
msgid "(IntOpt) Number of injected files allowed"
msgstr ""
#: ./doc/common/tables/nova-quota.xml:57(td)
msgid "quota_instances = 10"
msgstr ""
#: ./doc/common/tables/nova-quota.xml:58(td)
msgid "(IntOpt) Number of instances allowed per project"
msgstr ""
#: ./doc/common/tables/nova-quota.xml:61(td)
msgid "quota_key_pairs = 100"
msgstr ""
#: ./doc/common/tables/nova-quota.xml:62(td)
msgid "(IntOpt) Number of key pairs per user"
msgstr ""
#: ./doc/common/tables/nova-quota.xml:65(td)
msgid "quota_metadata_items = 128"
msgstr ""
#: ./doc/common/tables/nova-quota.xml:66(td)
msgid "(IntOpt) Number of metadata items allowed per instance"
msgstr ""
#: ./doc/common/tables/nova-quota.xml:69(td)
msgid "quota_ram = 51200"
msgstr ""
#: ./doc/common/tables/nova-quota.xml:70(td)
msgid "(IntOpt) Megabytes of instance RAM allowed per project"
msgstr ""
#: ./doc/common/tables/nova-quota.xml:73(td)
msgid "quota_security_group_rules = 20"
msgstr ""
#: ./doc/common/tables/nova-quota.xml:74(td)
msgid "(IntOpt) Number of security rules per security group"
msgstr ""
#: ./doc/common/tables/nova-quota.xml:77(td)
msgid "quota_security_groups = 10"
msgstr ""
#: ./doc/common/tables/nova-quota.xml:78(td)
msgid "(IntOpt) Number of security groups per project"
msgstr ""
#: ./doc/common/tables/trove-redis.xml:22(td)
msgid "(StrOpt) Host to locate redis"
msgstr ""
#: ./doc/common/tables/trove-redis.xml:26(td)
msgid "(StrOpt) Password for Redis server. (optional)"
msgstr ""
#: ./doc/common/tables/trove-redis.xml:37(td)
msgid "(StrOpt) Matchmaker ring file (JSON)"
msgstr ""
#: ./doc/common/tables/keystone-stats.xml:7(caption)
msgid "Description of stats configuration options"
msgstr ""
#: ./doc/common/tables/keystone-stats.xml:18(th)
msgid "[stats]"
msgstr ""
#: ./doc/common/tables/keystone-stats.xml:21(td)
msgid "driver = keystone.contrib.stats.backends.kvs.Stats"
msgstr ""
#: ./doc/common/tables/keystone-stats.xml:22(td)
msgid "(StrOpt) Stats backend driver."
msgstr ""
#: ./doc/common/tables/heat-crypt.xml:7(caption)
msgid "Description of crypt configuration options"
msgstr ""
#: ./doc/common/tables/heat-crypt.xml:21(td)
msgid "auth_encryption_key = notgood but just long enough i think"
msgstr ""
#: ./doc/common/tables/heat-crypt.xml:22(td)
msgid "(StrOpt) Encryption key used for authentication info in database."
msgstr ""
#: ./doc/common/tables/neutron-midonet.xml:7(caption)
msgid "Description of Midonet configuration options"
msgstr ""
#: ./doc/common/tables/neutron-midonet.xml:18(th)
msgid "[MIDONET]"
msgstr ""
#: ./doc/common/tables/neutron-midonet.xml:21(td)
msgid "midonet_host_uuid_path = /etc/midolman/host_uuid.properties"
msgstr ""
#: ./doc/common/tables/neutron-midonet.xml:22(td)
msgid "(StrOpt) Path to midonet host uuid file"
msgstr ""
#: ./doc/common/tables/neutron-midonet.xml:25(td)
msgid "midonet_uri = http://localhost:8080/midonet-api"
msgstr ""
#: ./doc/common/tables/neutron-midonet.xml:26(td)
msgid "(StrOpt) MidoNet API server URI."
msgstr ""
#: ./doc/common/tables/neutron-midonet.xml:29(td)
msgid "mode = dev"
msgstr ""
#: ./doc/common/tables/neutron-midonet.xml:30(td)
msgid "(StrOpt) Operational mode. Internal dev use only."
msgstr ""
#: ./doc/common/tables/neutron-midonet.xml:33(td)
msgid "password = passw0rd"
msgstr ""
#: ./doc/common/tables/neutron-midonet.xml:34(td)
msgid "(StrOpt) MidoNet admin password."
msgstr ""
#: ./doc/common/tables/neutron-midonet.xml:37(td)
msgid "project_id = 77777777-7777-7777-7777-777777777777"
msgstr ""
#: ./doc/common/tables/neutron-midonet.xml:38(td)
msgid "(StrOpt) ID of the project that MidoNet admin userbelongs to."
msgstr ""
#: ./doc/common/tables/neutron-midonet.xml:41(td)
msgid "provider_router_id = None"
msgstr ""
#: ./doc/common/tables/neutron-midonet.xml:42(td)
msgid "(StrOpt) Virtual provider router ID."
msgstr ""
#: ./doc/common/tables/neutron-midonet.xml:46(td)
msgid "(StrOpt) MidoNet admin username."
msgstr ""
#: ./doc/common/tables/cinder-coraid.xml:7(caption)
msgid "Description of Coraid AoE driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-coraid.xml:21(td)
msgid "coraid_esm_address ="
msgstr ""
#: ./doc/common/tables/cinder-coraid.xml:22(td)
msgid "(StrOpt) IP address of Coraid ESM"
msgstr ""
#: ./doc/common/tables/cinder-coraid.xml:25(td)
msgid "coraid_group = admin"
msgstr ""
#: ./doc/common/tables/cinder-coraid.xml:26(td)
msgid "(StrOpt) Name of group on Coraid ESM to which coraid_user belongs (must have admin privilege)"
msgstr ""
#: ./doc/common/tables/cinder-coraid.xml:29(td)
msgid "coraid_password = password"
msgstr ""
#: ./doc/common/tables/cinder-coraid.xml:30(td)
msgid "(StrOpt) Password to connect to Coraid ESM"
msgstr ""
#: ./doc/common/tables/cinder-coraid.xml:33(td)
msgid "coraid_repository_key = coraid_repository"
msgstr ""
#: ./doc/common/tables/cinder-coraid.xml:34(td)
msgid "(StrOpt) Volume Type key name to store ESM Repository Name"
msgstr ""
#: ./doc/common/tables/cinder-coraid.xml:37(td)
msgid "coraid_user = admin"
msgstr ""
#: ./doc/common/tables/cinder-coraid.xml:38(td)
msgid "(StrOpt) User name to connect to Coraid ESM"
msgstr ""
#: ./doc/common/tables/neutron-wsgi.xml:7(caption) ./doc/common/tables/glance-wsgi.xml:7(caption) ./doc/common/tables/nova-wsgi.xml:7(caption)
msgid "Description of WSGI configuration options"
msgstr ""
#: ./doc/common/tables/neutron-wsgi.xml:22(td) ./doc/common/tables/trove-debug.xml:26(td)
msgid "(IntOpt) Number of backlog requests to configure the socket with"
msgstr ""
#: ./doc/common/tables/neutron-wsgi.xml:25(td)
msgid "retry_until_window = 30"
msgstr ""
#: ./doc/common/tables/neutron-wsgi.xml:26(td)
msgid "(IntOpt) Number of seconds to keep retrying to listen"
msgstr ""
#: ./doc/common/tables/cinder-compute.xml:22(td)
msgid "(BoolOpt) Allow to perform insecure SSL requests to nova"
msgstr ""
#: ./doc/common/tables/cinder-compute.xml:26(td)
msgid "(StrOpt) Location of ca certificates file to use for nova client requests."
msgstr ""
#: ./doc/common/tables/cinder-compute.xml:29(td)
msgid "nova_catalog_admin_info = compute:nova:adminURL"
msgstr ""
#: ./doc/common/tables/cinder-compute.xml:30(td)
msgid "(StrOpt) Same as nova_catalog_info, but for admin endpoint."
msgstr ""
#: ./doc/common/tables/cinder-compute.xml:33(td)
msgid "nova_catalog_info = compute:nova:publicURL"
msgstr ""
#: ./doc/common/tables/cinder-compute.xml:34(td)
msgid "(StrOpt) Match this value when searching for nova in the service catalog. Format is: separated values of the form: &lt;service_type&gt;:&lt;service_name&gt;:&lt;endpoint_type&gt;"
msgstr ""
#: ./doc/common/tables/cinder-compute.xml:37(td)
msgid "nova_endpoint_admin_template = None"
msgstr ""
#: ./doc/common/tables/cinder-compute.xml:38(td)
msgid "(StrOpt) Same as nova_endpoint_template, but for admin endpoint."
msgstr ""
#: ./doc/common/tables/cinder-compute.xml:41(td)
msgid "nova_endpoint_template = None"
msgstr ""
#: ./doc/common/tables/cinder-compute.xml:42(td)
msgid "(StrOpt) Override service catalog lookup with template for nova endpoint e.g. http://localhost:8774/v2/%(project_id)s"
msgstr ""
#: ./doc/common/tables/swift-rsyncd-object.xml:8(literal)
msgid "[object]"
msgstr ""
#: ./doc/common/tables/swift-rsyncd-object.xml:20(td)
msgid "lock file = /var/lock/object.lock"
msgstr ""
#: ./doc/common/tables/swift-rsyncd-object.xml:24(td)
msgid "max connections = 8"
msgstr ""
#: ./doc/common/tables/glance-wsgi.xml:21(td)
msgid "eventlet_hub = poll"
msgstr ""
#: ./doc/common/tables/glance-wsgi.xml:22(td)
msgid "(StrOpt) Name of eventlet hub to use. Traditionally, we have only supported 'poll', however 'selects' may be appropriate for some platforms. See http://eventlet.net/doc/hubs.html for more details."
msgstr ""
#: ./doc/common/tables/glance-wsgi.xml:26(td)
msgid "(IntOpt) Maximum line size of message headers to be accepted. max_header_line may need to be increased when using large tokens (typically those generated by the Keystone v3 API with big service catalogs"
msgstr ""
#: ./doc/common/tables/glance-wsgi.xml:30(td)
msgid "(IntOpt) The value for the socket option TCP_KEEPIDLE. This is the time in seconds that the connection must be idle before TCP starts sending keepalive probes."
msgstr ""
#: ./doc/common/tables/swift-drive-audit-drive-audit.xml:8(literal)
msgid "[drive-audit]"
msgstr ""
#: ./doc/common/tables/swift-drive-audit-drive-audit.xml:8(literal)
msgid "drive-audit.conf"
msgstr ""
#: ./doc/common/tables/swift-drive-audit-drive-audit.xml:20(td)
msgid "device_dir = /srv/node"
msgstr ""
#: ./doc/common/tables/swift-drive-audit-drive-audit.xml:21(td)
msgid "Directory devices are mounted under"
msgstr ""
#: ./doc/common/tables/swift-drive-audit-drive-audit.xml:24(td)
msgid "error_limit = 1"
msgstr ""
#: ./doc/common/tables/swift-drive-audit-drive-audit.xml:25(td)
msgid "Number of errors to find before a device is unmounted"
msgstr ""
#: ./doc/common/tables/swift-drive-audit-drive-audit.xml:36(td)
msgid "log_file_pattern = /var/log/kern.*[!.][!g][!z]"
msgstr ""
#: ./doc/common/tables/swift-drive-audit-drive-audit.xml:37(td)
msgid "Location of the log file with globbing pattern to check against device errors locate device blocks with errors in the log file"
msgstr ""
#: ./doc/common/tables/swift-drive-audit-drive-audit.xml:48(td)
msgid "minutes = 60"
msgstr ""
#: ./doc/common/tables/swift-drive-audit-drive-audit.xml:49(td)
msgid "Number of minutes to look back in `/var/log/kern.log`"
msgstr ""
#: ./doc/common/tables/swift-drive-audit-drive-audit.xml:52(td)
msgid "regex_pattern_1 = \\berror\\b.*\\b(dm-[0-9]{1,2}\\d?)\\b"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:7(caption)
msgid "Description of baremetal configuration options"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:22(td)
msgid "(StrOpt) The backend to use for bare-metal database"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:25(td)
msgid "deploy_kernel = None"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:26(td)
msgid "(StrOpt) Default kernel image ID used in deployment phase"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:29(td)
msgid "deploy_ramdisk = None"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:30(td)
msgid "(StrOpt) Default ramdisk image ID used in deployment phase"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:33(td)
msgid "driver = nova.virt.baremetal.pxe.PXE"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:34(td)
msgid "(StrOpt) Baremetal driver back-end (pxe or tilera)"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:37(td)
msgid "flavor_extra_specs ="
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:38(td)
msgid "(ListOpt) A list of additional capabilities corresponding to flavor_extra_specs for this compute host to advertise. Valid entries are name=value, pairs For example, \"key1:val1, key2:val2\""
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:41(td)
msgid "ipmi_power_retry = 10"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:42(td)
msgid "(IntOpt) Maximal number of retries for IPMI operations"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:45(td)
msgid "net_config_template = $pybasedir/nova/virt/baremetal/net-dhcp.ubuntu.template"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:46(td)
msgid "(StrOpt) Template file for injected network config"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:49(td)
msgid "power_manager = nova.virt.baremetal.ipmi.IPMI"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:50(td)
msgid "(StrOpt) Baremetal power management method"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:53(td)
msgid "pxe_append_params = nofb nomodeset vga=normal"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:54(td)
msgid "(StrOpt) Additional append parameters for baremetal PXE boot"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:57(td)
msgid "pxe_bootfile_name = pxelinux.0"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:58(td)
msgid "(StrOpt) This gets passed to Neutron as the bootfile dhcp parameter."
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:61(td)
msgid "pxe_config_template = $pybasedir/nova/virt/baremetal/pxe_config.template"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:62(td)
msgid "(StrOpt) Template file for PXE configuration"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:65(td)
msgid "pxe_deploy_timeout = 0"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:66(td)
msgid "(IntOpt) Timeout for PXE deployments. Default: 0 (unlimited)"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:69(td)
msgid "pxe_network_config = False"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:70(td)
msgid "(BoolOpt) If set, pass the network configuration details to the initramfs via cmdline."
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:73(td)
msgid "sql_connection = sqlite:///$state_path/baremetal_nova.sqlite"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:74(td)
msgid "(StrOpt) The SQLAlchemy connection string used to connect to the bare-metal database"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:77(td)
msgid "terminal = shellinaboxd"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:78(td)
msgid "(StrOpt) Path to baremetal terminal program"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:81(td)
msgid "terminal_cert_dir = None"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:82(td)
msgid "(StrOpt) Path to baremetal terminal SSL cert(PEM)"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:85(td)
msgid "terminal_pid_dir = $state_path/baremetal/console"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:86(td)
msgid "(StrOpt) Path to directory stores pidfiles of baremetal_terminal"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:89(td)
msgid "tftp_root = /tftpboot"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:90(td)
msgid "(StrOpt) Baremetal compute node's tftp root path"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:93(td)
msgid "use_file_injection = False"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:94(td)
msgid "(BoolOpt) If True, enable file injection for network info, files and admin password"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:97(td)
msgid "use_unsafe_iscsi = False"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:98(td)
msgid "(BoolOpt) Do not set this out of dev/test environments. If a node does not have a fixed PXE IP address, volumes are exported with globally opened ACL"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:101(td)
msgid "vif_driver = nova.virt.baremetal.vif_driver.BareMetalVIFDriver"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:102(td)
msgid "(StrOpt) Baremetal VIF driver."
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:105(td)
msgid "virtual_power_host_key = None"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:106(td)
msgid "(StrOpt) The ssh key for virtual power host_user"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:109(td)
msgid "virtual_power_host_pass ="
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:110(td)
msgid "(StrOpt) Password for virtual power host_user"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:113(td)
msgid "virtual_power_host_user ="
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:114(td)
msgid "(StrOpt) User to execute virtual power commands as"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:117(td)
msgid "virtual_power_ssh_host ="
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:118(td)
msgid "(StrOpt) IP or name to virtual power host"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:121(td)
msgid "virtual_power_ssh_port = 22"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:122(td)
msgid "(IntOpt) Port to use for ssh to virtual power host"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:125(td)
msgid "virtual_power_type = virsh"
msgstr ""
#: ./doc/common/tables/nova-baremetal.xml:126(td)
msgid "(StrOpt) Base command to use for virtual power(vbox, virsh)"
msgstr ""
#: ./doc/common/tables/cinder-backups_tsm.xml:7(caption)
msgid "Description of IBM Tivoli Storage Manager backup driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-backups_tsm.xml:21(td)
msgid "backup_tsm_compression = True"
msgstr ""
#: ./doc/common/tables/cinder-backups_tsm.xml:22(td)
msgid "(BoolOpt) Enable or Disable compression for backups"
msgstr ""
#: ./doc/common/tables/cinder-backups_tsm.xml:25(td)
msgid "backup_tsm_password = password"
msgstr ""
#: ./doc/common/tables/cinder-backups_tsm.xml:26(td)
msgid "(StrOpt) TSM password for the running username"
msgstr ""
#: ./doc/common/tables/cinder-backups_tsm.xml:29(td)
msgid "backup_tsm_volume_prefix = backup"
msgstr ""
#: ./doc/common/tables/cinder-backups_tsm.xml:30(td)
msgid "(StrOpt) Volume prefix for the backup id when backing up to TSM"
msgstr ""
#: ./doc/common/tables/cinder-san.xml:7(caption)
msgid "Description of SAN configuration options"
msgstr ""
#: ./doc/common/tables/cinder-san.xml:29(td)
msgid "san_is_local = False"
msgstr ""
#: ./doc/common/tables/cinder-san.xml:30(td)
msgid "(BoolOpt) Execute commands locally instead of over SSH; use if the volume service is running on the SAN device"
msgstr ""
#: ./doc/common/tables/cinder-san.xml:41(td)
msgid "san_private_key ="
msgstr ""
#: ./doc/common/tables/cinder-san.xml:42(td)
msgid "(StrOpt) Filename of private key to use for SSH authentication"
msgstr ""
#: ./doc/common/tables/cinder-san.xml:45(td)
msgid "san_secondary_ip = None"
msgstr ""
#: ./doc/common/tables/cinder-san.xml:46(td) ./doc/common/tables/cinder-conf-changes.xml:237(td)
msgid "(StrOpt) VNX secondary SP IP Address."
msgstr ""
#: ./doc/common/tables/cinder-san.xml:49(td)
msgid "san_ssh_port = 22"
msgstr ""
#: ./doc/common/tables/cinder-san.xml:50(td)
msgid "(IntOpt) SSH port to use with SAN"
msgstr ""
#: ./doc/common/tables/cinder-san.xml:57(td)
msgid "ssh_conn_timeout = 30"
msgstr ""
#: ./doc/common/tables/cinder-san.xml:58(td)
msgid "(IntOpt) SSH connection timeout in seconds"
msgstr ""
#: ./doc/common/tables/cinder-san.xml:61(td)
msgid "ssh_max_pool_conn = 5"
msgstr ""
#: ./doc/common/tables/cinder-san.xml:62(td)
msgid "(IntOpt) Maximum ssh connections in the pool"
msgstr ""
#: ./doc/common/tables/cinder-san.xml:65(td)
msgid "ssh_min_pool_conn = 1"
msgstr ""
#: ./doc/common/tables/cinder-san.xml:66(td)
msgid "(IntOpt) Minimum ssh connections in the pool"
msgstr ""
#: ./doc/common/tables/nova-logging.xml:34(td)
msgid "(BoolOpt) Make exception message format errors fatal"
msgstr ""
#: ./doc/common/tables/neutron-nec.xml:7(caption)
msgid "Description of Nec configuration options"
msgstr ""
#: ./doc/common/tables/neutron-nec.xml:18(th)
msgid "[OFC]"
msgstr ""
#: ./doc/common/tables/neutron-nec.xml:21(td)
msgid "api_max_attempts = 3"
msgstr ""
#: ./doc/common/tables/neutron-nec.xml:22(td)
msgid "(IntOpt) Maximum attempts per OFC API request. NEC plugin retries API request to OFC when OFC returns ServiceUnavailable (503). The value must be greater than 0."
msgstr ""
#: ./doc/common/tables/neutron-nec.xml:26(td)
msgid "(StrOpt) Location of certificate file."
msgstr ""
#: ./doc/common/tables/neutron-nec.xml:29(td)
msgid "driver = trema"
msgstr ""
#: ./doc/common/tables/neutron-nec.xml:30(td)
msgid "(StrOpt) Driver to use."
msgstr ""
#: ./doc/common/tables/neutron-nec.xml:33(td)
msgid "enable_packet_filter = True"
msgstr ""
#: ./doc/common/tables/neutron-nec.xml:34(td)
msgid "(BoolOpt) Enable packet filter."
msgstr ""
#: ./doc/common/tables/neutron-nec.xml:38(td)
msgid "(StrOpt) Host to connect to."
msgstr ""
#: ./doc/common/tables/neutron-nec.xml:41(td)
msgid "insecure_ssl = False"
msgstr ""
#: ./doc/common/tables/neutron-nec.xml:46(td)
msgid "(StrOpt) Location of key file."
msgstr ""
#: ./doc/common/tables/neutron-nec.xml:49(td)
msgid "path_prefix ="
msgstr ""
#: ./doc/common/tables/neutron-nec.xml:50(td)
msgid "(StrOpt) Base URL of OFC REST API. It is prepended to each API request."
msgstr ""
#: ./doc/common/tables/neutron-nec.xml:53(td)
msgid "port = 8888"
msgstr ""
#: ./doc/common/tables/neutron-nec.xml:54(td)
msgid "(StrOpt) Port to connect to."
msgstr ""
#: ./doc/common/tables/neutron-nec.xml:58(td)
msgid "(BoolOpt) Use SSL to connect."
msgstr ""
#: ./doc/common/tables/neutron-nec.xml:61(th)
msgid "[PROVIDER]"
msgstr ""
#: ./doc/common/tables/neutron-nec.xml:64(td)
msgid "default_router_provider = l3-agent"
msgstr ""
#: ./doc/common/tables/neutron-nec.xml:65(td)
msgid "(StrOpt) Default router provider to use."
msgstr ""
#: ./doc/common/tables/neutron-nec.xml:68(td)
msgid "router_providers = l3-agent, openflow"
msgstr ""
#: ./doc/common/tables/neutron-nec.xml:69(td)
msgid "(ListOpt) List of enabled router providers."
msgstr ""
#: ./doc/common/tables/neutron-nec.xml:75(td)
msgid "driver ="
msgstr ""
#: ./doc/common/tables/neutron-nec.xml:76(td)
msgid "(StrOpt) Name of the FWaaS Driver"
msgstr ""
#: ./doc/common/tables/keystone-security.xml:7(caption)
msgid "Description of security configuration options"
msgstr ""
#: ./doc/common/tables/keystone-security.xml:21(td)
msgid "crypt_strength = 40000"
msgstr ""
#: ./doc/common/tables/keystone-security.xml:22(td)
msgid "(IntOpt) The value passed as the keyword \"rounds\" to passlib's encrypt method."
msgstr ""
#: ./doc/common/tables/heat-clients_neutron.xml:7(caption)
msgid "Description of neutron clients configuration options"
msgstr ""
#: ./doc/common/tables/heat-clients_neutron.xml:18(th)
msgid "[clients_neutron]"
msgstr ""
#: ./doc/common/tables/nova-api.xml:21(td)
msgid "api_rate_limit = False"
msgstr ""
#: ./doc/common/tables/nova-api.xml:22(td)
msgid "(BoolOpt) Whether to use per-user rate limiting for the api. This option is only used by v2 api. Rate limiting is removed from v3 api."
msgstr ""
#: ./doc/common/tables/nova-api.xml:29(td)
msgid "enabled_apis = ec2, osapi_compute, metadata"
msgstr ""
#: ./doc/common/tables/nova-api.xml:30(td)
msgid "(ListOpt) A list of APIs to enable by default"
msgstr ""
#: ./doc/common/tables/nova-api.xml:33(td)
msgid "enabled_ssl_apis ="
msgstr ""
#: ./doc/common/tables/nova-api.xml:34(td)
msgid "(ListOpt) A list of APIs with enabled SSL"
msgstr ""
#: ./doc/common/tables/nova-api.xml:37(td)
msgid "instance_name_template = instance-%08x"
msgstr ""
#: ./doc/common/tables/nova-api.xml:38(td)
msgid "(StrOpt) Template string to be used to generate instance names"
msgstr ""
#: ./doc/common/tables/nova-api.xml:45(td)
msgid "multi_instance_display_name_template = %(name)s-%(uuid)s"
msgstr ""
#: ./doc/common/tables/nova-api.xml:46(td)
msgid "(StrOpt) When creating multiple instances with a single request using the os-multiple-create API extension, this template will be used to build the display name for each instance. The benefit is that the instances end up with different hostnames. To restore legacy behavior of every instance having the same name, set this option to \"%(name)s\". Valid keys for the template are: name, uuid, count."
msgstr ""
#: ./doc/common/tables/nova-api.xml:49(td)
msgid "non_inheritable_image_properties = cache_in_nova, bittorrent"
msgstr ""
#: ./doc/common/tables/nova-api.xml:50(td)
msgid "(ListOpt) These are image properties which a snapshot should not inherit from an instance"
msgstr ""
#: ./doc/common/tables/nova-api.xml:53(td)
msgid "null_kernel = nokernel"
msgstr ""
#: ./doc/common/tables/nova-api.xml:54(td)
msgid "(StrOpt) Kernel image that indicates not to use a kernel, but to use a raw disk image instead"
msgstr ""
#: ./doc/common/tables/nova-api.xml:57(td)
msgid "osapi_compute_ext_list ="
msgstr ""
#: ./doc/common/tables/nova-api.xml:58(td)
msgid "(ListOpt) Specify list of extensions to load when using osapi_compute_extension option with nova.api.openstack.compute.contrib.select_extensions"
msgstr ""
#: ./doc/common/tables/nova-api.xml:61(td)
msgid "osapi_compute_extension = ['nova.api.openstack.compute.contrib.standard_extensions']"
msgstr ""
#: ./doc/common/tables/nova-api.xml:62(td)
msgid "(MultiStrOpt) osapi compute extension to load"
msgstr ""
#: ./doc/common/tables/nova-api.xml:65(td)
msgid "osapi_compute_link_prefix = None"
msgstr ""
#: ./doc/common/tables/nova-api.xml:66(td)
msgid "(StrOpt) Base URL that will be presented to users in links to the OpenStack Compute API"
msgstr ""
#: ./doc/common/tables/nova-api.xml:69(td)
msgid "osapi_compute_listen = 0.0.0.0"
msgstr ""
#: ./doc/common/tables/nova-api.xml:70(td)
msgid "(StrOpt) The IP address on which the OpenStack API will listen."
msgstr ""
#: ./doc/common/tables/nova-api.xml:73(td)
msgid "osapi_compute_listen_port = 8774"
msgstr ""
#: ./doc/common/tables/nova-api.xml:74(td)
msgid "(IntOpt) The port on which the OpenStack API will listen."
msgstr ""
#: ./doc/common/tables/nova-api.xml:77(td)
msgid "osapi_compute_workers = None"
msgstr ""
#: ./doc/common/tables/nova-api.xml:78(td)
msgid "(IntOpt) Number of workers for OpenStack API service. The default will be the number of CPUs available."
msgstr ""
#: ./doc/common/tables/nova-api.xml:81(td)
msgid "osapi_hide_server_address_states = building"
msgstr ""
#: ./doc/common/tables/nova-api.xml:82(td)
msgid "(ListOpt) List of instance states that should hide network info"
msgstr ""
#: ./doc/common/tables/nova-api.xml:85(td)
msgid "servicegroup_driver = db"
msgstr ""
#: ./doc/common/tables/nova-api.xml:86(td)
msgid "(StrOpt) The driver for servicegroup service (valid options are: db, zk, mc)"
msgstr ""
#: ./doc/common/tables/neutron-opencontrail.xml:7(caption)
msgid "Description of OpenContrail configuration options"
msgstr ""
#: ./doc/common/tables/neutron-opencontrail.xml:18(th)
msgid "[CONTRAIL]"
msgstr ""
#: ./doc/common/tables/neutron-opencontrail.xml:21(td)
msgid "api_server_ip = 127.0.0.1"
msgstr ""
#: ./doc/common/tables/neutron-opencontrail.xml:25(td)
msgid "api_server_port = 8082"
msgstr ""
#: ./doc/common/tables/neutron-ml2_mlnx.xml:7(caption)
msgid "Description of Mellanox ML2 mechanism driver configuration options"
msgstr ""
#: ./doc/common/tables/neutron-ml2_mlnx.xml:21(td)
msgid "apply_profile_patch = False"
msgstr ""
#: ./doc/common/tables/neutron-ml2_mlnx.xml:22(td)
msgid "(BoolOpt) Enable server compatibility with old nova"
msgstr ""
#: ./doc/common/tables/neutron-ml2_mlnx.xml:25(td)
msgid "vnic_type = mlnx_direct"
msgstr ""
#: ./doc/common/tables/neutron-ml2_mlnx.xml:26(td)
msgid "(StrOpt) Type of VM network interface: mlnx_direct or hostdev"
msgstr ""
#: ./doc/common/tables/keystone-trust.xml:7(caption)
msgid "Description of trust configuration options"
msgstr ""
#: ./doc/common/tables/keystone-trust.xml:18(th)
msgid "[trust]"
msgstr ""
#: ./doc/common/tables/keystone-trust.xml:21(td)
msgid "driver = keystone.trust.backends.sql.Trust"
msgstr ""
#: ./doc/common/tables/keystone-trust.xml:22(td)
msgid "(StrOpt) Trust backend driver."
msgstr ""
#: ./doc/common/tables/keystone-trust.xml:26(td)
msgid "(BoolOpt) Delegation and impersonation features can be optionally disabled."
msgstr ""
#: ./doc/common/tables/glance-cinder.xml:7(caption)
msgid "Description of cinder configuration options"
msgstr ""
#: ./doc/common/tables/glance-cinder.xml:21(td)
msgid "cinder_api_insecure = False"
msgstr ""
#: ./doc/common/tables/glance-cinder.xml:25(td)
msgid "cinder_ca_certificates_file = None"
msgstr ""
#: ./doc/common/tables/glance-cinder.xml:26(td)
msgid "(StrOpt) Location of ca certicates file to use for cinder client requests."
msgstr ""
#: ./doc/common/tables/glance-cinder.xml:29(td)
msgid "cinder_catalog_info = volume:cinder:publicURL"
msgstr ""
#: ./doc/common/tables/glance-cinder.xml:30(td)
msgid "(StrOpt) Info to match when looking for cinder in the service catalog. Format is : separated values of the form: &lt;service_type&gt;:&lt;service_name&gt;:&lt;endpoint_type&gt;"
msgstr ""
#: ./doc/common/tables/glance-cinder.xml:33(td)
msgid "cinder_endpoint_template = None"
msgstr ""
#: ./doc/common/tables/glance-cinder.xml:37(td)
msgid "cinder_http_retries = 3"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-updater.xml:8(literal)
msgid "[object-updater]"
msgstr ""
#: ./doc/common/tables/swift-object-server-object-updater.xml:40(td)
msgid "log_name = object-updater"
msgstr ""
#: ./doc/common/tables/glance-common.xml:21(td)
msgid "allow_additional_image_properties = True"
msgstr ""
#: ./doc/common/tables/glance-common.xml:22(td)
msgid "(BoolOpt) Whether to allow users to specify image properties beyond what the image schema provides"
msgstr ""
#: ./doc/common/tables/glance-common.xml:25(td)
msgid "api_limit_max = 1000"
msgstr ""
#: ./doc/common/tables/glance-common.xml:26(td)
msgid "(IntOpt) Maximum permissible number of items that could be returned by a request"
msgstr ""
#: ./doc/common/tables/glance-common.xml:30(td)
msgid "(IntOpt) The backlog value that will be used when creating the TCP listener socket."
msgstr ""
#: ./doc/common/tables/glance-common.xml:37(td)
msgid "bind_port = None"
msgstr ""
#: ./doc/common/tables/glance-common.xml:41(td)
msgid "data_api = glance.db.sqlalchemy.api"
msgstr ""
#: ./doc/common/tables/glance-common.xml:42(td)
msgid "(StrOpt) Python module path of data access API"
msgstr ""
#: ./doc/common/tables/glance-common.xml:49(td)
msgid "image_location_quota = 10"
msgstr ""
#: ./doc/common/tables/glance-common.xml:50(td)
msgid "(IntOpt) Maximum number of locations allowed on an image. Negative values evaluate to unlimited."
msgstr ""
#: ./doc/common/tables/glance-common.xml:53(td)
msgid "image_member_quota = 128"
msgstr ""
#: ./doc/common/tables/glance-common.xml:54(td)
msgid "(IntOpt) Maximum number of image members per image. Negative values evaluate to unlimited."
msgstr ""
#: ./doc/common/tables/glance-common.xml:57(td)
msgid "image_property_quota = 128"
msgstr ""
#: ./doc/common/tables/glance-common.xml:58(td)
msgid "(IntOpt) Maximum number of properties allowed on an image. Negative values evaluate to unlimited."
msgstr ""
#: ./doc/common/tables/glance-common.xml:61(td)
msgid "image_tag_quota = 128"
msgstr ""
#: ./doc/common/tables/glance-common.xml:62(td)
msgid "(IntOpt) Maximum number of tags allowed on an image. Negative values evaluate to unlimited."
msgstr ""
#: ./doc/common/tables/glance-common.xml:65(td)
msgid "limit_param_default = 25"
msgstr ""
#: ./doc/common/tables/glance-common.xml:66(td)
msgid "(IntOpt) Default value for the number of items returned by a request if not specified explicitly in the request"
msgstr ""
#: ./doc/common/tables/glance-common.xml:73(td)
msgid "metadata_encryption_key = None"
msgstr ""
#: ./doc/common/tables/glance-common.xml:74(td)
msgid "(StrOpt) Key used for encrypting sensitive metadata while talking to the registry or database."
msgstr ""
#: ./doc/common/tables/glance-common.xml:77(td)
msgid "metadata_source_path = /etc/glance/metadefs/"
msgstr ""
#: ./doc/common/tables/glance-common.xml:81(td)
msgid "property_protection_file = None"
msgstr ""
#: ./doc/common/tables/glance-common.xml:82(td)
msgid "(StrOpt) The location of the property protection file."
msgstr ""
#: ./doc/common/tables/glance-common.xml:85(td)
msgid "property_protection_rule_format = roles"
msgstr ""
#: ./doc/common/tables/glance-common.xml:86(td)
msgid "(StrOpt) This config value indicates whether \"roles\" or \"policies\" are used in the property protection file."
msgstr ""
#: ./doc/common/tables/glance-common.xml:89(td)
msgid "show_image_direct_url = False"
msgstr ""
#: ./doc/common/tables/glance-common.xml:90(td)
msgid "(BoolOpt) Whether to include the backend image storage location in image properties. Revealing storage location can be a security risk, so use this setting with caution!"
msgstr ""
#: ./doc/common/tables/glance-common.xml:93(td)
msgid "user_storage_quota = 0"
msgstr ""
#: ./doc/common/tables/glance-common.xml:94(td)
msgid "(StrOpt) Set a system wide quota for every user. This value is the total capacity that a user can use across all storage systems. A value of 0 means unlimited.Optional unit can be specified for the value. Accepted units are B, KB, MB, GB and TB representing Bytes, KiloBytes, MegaBytes, GigaBytes and TeraBytesrespectively. If no unit is specified then Bytes is assumed. Note that there should not be any space between value and unit and units are case sensitive."
msgstr ""
#: ./doc/common/tables/glance-common.xml:97(td)
msgid "workers = 4"
msgstr ""
#: ./doc/common/tables/glance-common.xml:98(td)
msgid "(IntOpt) The number of child process workers that will be created to service requests. The default will be equal to the number of CPUs available."
msgstr ""
#: ./doc/common/tables/glance-common.xml:108(th)
msgid "[image_format]"
msgstr ""
#: ./doc/common/tables/glance-common.xml:111(td)
msgid "container_formats = ami, ari, aki, bare, ovf, ova"
msgstr ""
#: ./doc/common/tables/glance-common.xml:112(td)
msgid "(ListOpt) Supported values for the 'container_format' image attribute"
msgstr ""
#: ./doc/common/tables/glance-common.xml:115(td)
msgid "disk_formats = ami, ari, aki, vhd, vmdk, raw, qcow2, vdi, iso"
msgstr ""
#: ./doc/common/tables/glance-common.xml:116(td)
msgid "(ListOpt) Supported values for the 'disk_format' image attribute"
msgstr ""
#: ./doc/common/tables/glance-common.xml:119(th)
msgid "[task]"
msgstr ""
#: ./doc/common/tables/glance-common.xml:122(td)
msgid "eventlet_executor_pool_size = 1000"
msgstr ""
#: ./doc/common/tables/glance-common.xml:126(td)
msgid "task_executor = eventlet"
msgstr ""
#: ./doc/common/tables/glance-common.xml:130(td)
msgid "task_time_to_live = 48"
msgstr ""
#: ./doc/common/tables/glance-common.xml:131(td)
msgid "(IntOpt) Time in hours for which a task lives after, either succeeding or failing"
msgstr ""
#: ./doc/common/tables/neutron-ml2_vxlan.xml:7(caption)
msgid "Description of ML2 VXLN configuration options"
msgstr ""
#: ./doc/common/tables/neutron-ml2_vxlan.xml:18(th)
msgid "[ml2_type_vxlan]"
msgstr ""
#: ./doc/common/tables/neutron-ml2_vxlan.xml:21(td)
msgid "vni_ranges ="
msgstr ""
#: ./doc/common/tables/neutron-ml2_vxlan.xml:22(td)
msgid "(ListOpt) Comma-separated list of &lt;vni_min&gt;:&lt;vni_max&gt; tuples enumerating ranges of VXLAN VNI IDs that are available for tenant network allocation"
msgstr ""
#: ./doc/common/tables/neutron-ml2_vxlan.xml:25(td)
msgid "vxlan_group = None"
msgstr ""
#: ./doc/common/tables/neutron-ml2_vxlan.xml:26(td)
msgid "(StrOpt) Multicast group for VXLAN. If unset, disables VXLAN multicast mode."
msgstr ""
#: ./doc/common/tables/swift-dispersion-dispersion.xml:8(literal)
msgid "[dispersion]"
msgstr ""
#: ./doc/common/tables/swift-dispersion-dispersion.xml:8(literal)
msgid "dispersion.conf"
msgstr ""
#: ./doc/common/tables/swift-dispersion-dispersion.xml:20(td)
msgid "auth_key = testing"
msgstr ""
#: ./doc/common/tables/swift-dispersion-dispersion.xml:24(td)
msgid "auth_url = http://localhost:8080/auth/v1.0"
msgstr ""
#: ./doc/common/tables/swift-dispersion-dispersion.xml:25(td)
msgid "Endpoint for auth server, such as keystone"
msgstr ""
#: ./doc/common/tables/swift-dispersion-dispersion.xml:28(td)
msgid "auth_user = test:tester"
msgstr ""
#: ./doc/common/tables/swift-dispersion-dispersion.xml:29(td)
msgid "Default user for dispersion in this context"
msgstr ""
#: ./doc/common/tables/swift-dispersion-dispersion.xml:32(td)
msgid "auth_version = 1.0"
msgstr ""
#: ./doc/common/tables/swift-dispersion-dispersion.xml:33(td)
msgid "Indicates which version of auth"
msgstr ""
#: ./doc/common/tables/swift-dispersion-dispersion.xml:36(td) ./doc/common/tables/swift-account-server-account-reaper.xml:20(td)
msgid "concurrency = 25"
msgstr ""
#: ./doc/common/tables/swift-dispersion-dispersion.xml:40(td)
msgid "container_populate = yes"
msgstr ""
#: ./doc/common/tables/swift-dispersion-dispersion.xml:44(td)
msgid "container_report = yes"
msgstr ""
#: ./doc/common/tables/swift-dispersion-dispersion.xml:48(td)
msgid "dispersion_coverage = 1.0"
msgstr ""
#: ./doc/common/tables/swift-dispersion-dispersion.xml:52(td)
msgid "dump_json = no"
msgstr ""
#: ./doc/common/tables/swift-dispersion-dispersion.xml:57(td)
msgid "Indicates whether endpoint for auth is public or internal"
msgstr ""
#: ./doc/common/tables/swift-dispersion-dispersion.xml:60(td)
msgid "keystone_api_insecure = no"
msgstr ""
#: ./doc/common/tables/swift-dispersion-dispersion.xml:61(td)
msgid "Allow accessing insecure keystone server. The keystone's certificate will not be verified."
msgstr ""
#: ./doc/common/tables/swift-dispersion-dispersion.xml:64(td)
msgid "object_populate = yes"
msgstr ""
#: ./doc/common/tables/swift-dispersion-dispersion.xml:68(td)
msgid "object_report = yes"
msgstr ""
#: ./doc/common/tables/swift-dispersion-dispersion.xml:72(td)
msgid "retries = 5"
msgstr ""
#: ./doc/common/tables/swift-account-server-DEFAULT.xml:28(td)
msgid "bind_port = 6002"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-domain_remap.xml:8(literal)
msgid "[filter-domain_remap]"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-domain_remap.xml:20(td)
msgid "path_root = v1"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-domain_remap.xml:21(td)
msgid "Root path"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-domain_remap.xml:24(td)
msgid "reseller_prefixes = AUTH"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-domain_remap.xml:25(td)
msgid "Reseller prefix"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-domain_remap.xml:44(td)
msgid "set log_name = domain_remap"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-domain_remap.xml:53(td)
msgid "use = egg:swift#domain_remap"
msgstr ""
#: ./doc/common/tables/trove-nova.xml:7(caption)
msgid "Description of nova configuration options"
msgstr ""
#: ./doc/common/tables/trove-nova.xml:21(td)
msgid "nova_proxy_admin_pass ="
msgstr ""
#: ./doc/common/tables/trove-nova.xml:22(td)
msgid "(StrOpt) Admin password used to connect to nova,"
msgstr ""
#: ./doc/common/tables/trove-nova.xml:25(td)
msgid "nova_proxy_admin_tenant_name ="
msgstr ""
#: ./doc/common/tables/trove-nova.xml:26(td)
msgid "(StrOpt) Admin tenant used to connect to nova."
msgstr ""
#: ./doc/common/tables/trove-nova.xml:29(td)
msgid "nova_proxy_admin_user ="
msgstr ""
#: ./doc/common/tables/trove-nova.xml:30(td)
msgid "(StrOpt) Admin username used to connect to nova."
msgstr ""
#: ./doc/common/tables/neutron-meta.xml:7(caption)
msgid "Description of meta configuration options"
msgstr ""
#: ./doc/common/tables/neutron-meta.xml:18(th)
msgid "[META]"
msgstr ""
#: ./doc/common/tables/neutron-meta.xml:21(td)
msgid "default_flavor ="
msgstr ""
#: ./doc/common/tables/neutron-meta.xml:22(td)
msgid "(StrOpt) Default flavor to use, when flavor:network is not specified at network creation."
msgstr ""
#: ./doc/common/tables/neutron-meta.xml:25(td)
msgid "default_l3_flavor ="
msgstr ""
#: ./doc/common/tables/neutron-meta.xml:26(td)
msgid "(StrOpt) Default L3 flavor to use, when flavor:router is not specified at router creation. Ignored if 'l3_plugin_list' is blank."
msgstr ""
#: ./doc/common/tables/neutron-meta.xml:29(td)
msgid "extension_map ="
msgstr ""
#: ./doc/common/tables/neutron-meta.xml:30(td)
msgid "(StrOpt) Comma separated list of method:flavor to select specific plugin for a method. This has priority over method search order based on 'plugin_list'."
msgstr ""
#: ./doc/common/tables/neutron-meta.xml:33(td)
msgid "l3_plugin_list ="
msgstr ""
#: ./doc/common/tables/neutron-meta.xml:34(td)
msgid "(StrOpt) Comma separated list of flavor:neutron_plugin for L3 service plugins to load. This is intended for specifying L2 plugins which support L3 functions. If you use a router service plugin, set this blank."
msgstr ""
#: ./doc/common/tables/neutron-meta.xml:37(td)
msgid "plugin_list ="
msgstr ""
#: ./doc/common/tables/neutron-meta.xml:38(td)
msgid "(StrOpt) Comma separated list of flavor:neutron_plugin for plugins to load. Extension method is searched in the list order and the first one is used."
msgstr ""
#: ./doc/common/tables/neutron-meta.xml:41(td)
msgid "rpc_flavor ="
msgstr ""
#: ./doc/common/tables/neutron-meta.xml:42(td)
msgid "(StrOpt) Specifies flavor for plugin to handle 'q-plugin' RPC requests."
msgstr ""
#: ./doc/common/tables/neutron-meta.xml:45(td)
msgid "supported_extension_aliases ="
msgstr ""
#: ./doc/common/tables/neutron-meta.xml:46(td)
msgid "(StrOpt) Comma separated list of supported extension aliases."
msgstr ""
#: ./doc/common/tables/keystone-ec2.xml:18(th)
msgid "[ec2]"
msgstr ""
#: ./doc/common/tables/keystone-ec2.xml:21(td)
msgid "driver = keystone.contrib.ec2.backends.kvs.Ec2"
msgstr ""
#: ./doc/common/tables/keystone-ec2.xml:22(td)
msgid "(StrOpt) EC2Credential backend driver."
msgstr ""
#: ./doc/common/tables/keystone-ec2.xml:25(th)
msgid "[keystone_ec2_token]"
msgstr ""
#: ./doc/common/tables/keystone-ec2.xml:44(td)
msgid "url = http://localhost:5000/v2.0/ec2tokens"
msgstr ""
#: ./doc/common/tables/heat-clients_keystone.xml:7(caption)
msgid "Description of keystone clients configuration options"
msgstr ""
#: ./doc/common/tables/heat-clients_keystone.xml:18(th)
msgid "[clients_keystone]"
msgstr ""
#: ./doc/common/tables/neutron-api.xml:21(td)
msgid "allow_bulk = True"
msgstr ""
#: ./doc/common/tables/neutron-api.xml:22(td)
msgid "(BoolOpt) Allow the usage of the bulk API"
msgstr ""
#: ./doc/common/tables/neutron-api.xml:25(td)
msgid "allow_pagination = False"
msgstr ""
#: ./doc/common/tables/neutron-api.xml:26(td)
msgid "(BoolOpt) Allow the usage of the pagination"
msgstr ""
#: ./doc/common/tables/neutron-api.xml:29(td)
msgid "allow_sorting = False"
msgstr ""
#: ./doc/common/tables/neutron-api.xml:30(td)
msgid "(BoolOpt) Allow the usage of the sorting"
msgstr ""
#: ./doc/common/tables/neutron-api.xml:33(td)
msgid "api_extensions_path ="
msgstr ""
#: ./doc/common/tables/neutron-api.xml:34(td)
msgid "(StrOpt) The path for API extensions"
msgstr ""
#: ./doc/common/tables/neutron-api.xml:38(td)
msgid "(StrOpt) The API paste config file to use"
msgstr ""
#: ./doc/common/tables/neutron-api.xml:42(td)
msgid "(IntOpt) Max header line to accommodate large tokens"
msgstr ""
#: ./doc/common/tables/neutron-api.xml:46(td)
msgid "(IntOpt) the maximum body size per each request(bytes)"
msgstr ""
#: ./doc/common/tables/neutron-api.xml:49(td)
msgid "pagination_max_limit = -1"
msgstr ""
#: ./doc/common/tables/neutron-api.xml:50(td)
msgid "(StrOpt) The maximum number of items returned in a single response, value was 'infinite' or negative integer means no limit"
msgstr ""
#: ./doc/common/tables/neutron-api.xml:57(td)
msgid "service_plugins ="
msgstr ""
#: ./doc/common/tables/neutron-api.xml:58(td)
msgid "(ListOpt) The service plugins Neutron will use"
msgstr ""
#: ./doc/common/tables/neutron-api.xml:61(th)
msgid "[service_providers]"
msgstr ""
#: ./doc/common/tables/neutron-api.xml:64(td)
msgid "service_provider = []"
msgstr ""
#: ./doc/common/tables/neutron-api.xml:65(td)
msgid "(MultiStrOpt) Defines providers for advanced services using the format: &lt;service_type&gt;:&lt;name&gt;:&lt;driver&gt;[:default]"
msgstr ""
#: ./doc/common/tables/trove-logging.xml:21(td)
msgid "default_log_levels = amqp=WARN, amqplib=WARN, boto=WARN, qpid=WARN, sqlalchemy=WARN, suds=INFO, oslo.messaging=INFO, iso8601=WARN, requests.packages.urllib3.connectionpool=WARN, urllib3.connectionpool=WARN, websocket=WARN"
msgstr ""
#: ./doc/common/tables/trove-logging.xml:29(td)
msgid "format_options = -m 5"
msgstr ""
#: ./doc/common/tables/trove-logging.xml:77(td)
msgid "network_label_regex = ^private$"
msgstr ""
#: ./doc/common/tables/keystone-kvs.xml:7(caption)
msgid "Description of KVS configuration options"
msgstr ""
#: ./doc/common/tables/keystone-kvs.xml:18(th)
msgid "[kvs]"
msgstr ""
#: ./doc/common/tables/keystone-kvs.xml:21(td)
msgid "backends ="
msgstr ""
#: ./doc/common/tables/keystone-kvs.xml:22(td)
msgid "(ListOpt) Extra dogpile.cache backend modules to register with the dogpile.cache library."
msgstr ""
#: ./doc/common/tables/keystone-kvs.xml:25(td)
msgid "config_prefix = keystone.kvs"
msgstr ""
#: ./doc/common/tables/keystone-kvs.xml:26(td)
msgid "(StrOpt) Prefix for building the configuration dictionary for the KVS region. This should not need to be changed unless there is another dogpile.cache region with the same configuration name."
msgstr ""
#: ./doc/common/tables/keystone-kvs.xml:29(td)
msgid "default_lock_timeout = 5"
msgstr ""
#: ./doc/common/tables/keystone-kvs.xml:30(td)
msgid "(IntOpt) Default lock timeout for distributed locking."
msgstr ""
#: ./doc/common/tables/keystone-kvs.xml:33(td)
msgid "enable_key_mangler = True"
msgstr ""
#: ./doc/common/tables/keystone-kvs.xml:34(td)
msgid "(BoolOpt) Toggle to disable using a key-mangling function to ensure fixed length keys. This is toggle-able for debugging purposes, it is highly recommended to always leave this set to true."
msgstr ""
#: ./doc/common/tables/nova-xvpnvncproxy.xml:7(caption)
msgid "Description of XCP VNC proxy configuration options"
msgstr ""
#: ./doc/common/tables/nova-xvpnvncproxy.xml:21(td)
msgid "xvpvncproxy_base_url = http://127.0.0.1:6081/console"
msgstr ""
#: ./doc/common/tables/nova-xvpnvncproxy.xml:22(td)
msgid "(StrOpt) Location of nova xvp VNC console proxy, in the form \"http://127.0.0.1:6081/console\""
msgstr ""
#: ./doc/common/tables/nova-xvpnvncproxy.xml:25(td)
msgid "xvpvncproxy_host = 0.0.0.0"
msgstr ""
#: ./doc/common/tables/nova-xvpnvncproxy.xml:26(td)
msgid "(StrOpt) Address that the XCP VNC proxy should bind to"
msgstr ""
#: ./doc/common/tables/nova-xvpnvncproxy.xml:29(td)
msgid "xvpvncproxy_port = 6081"
msgstr ""
#: ./doc/common/tables/nova-xvpnvncproxy.xml:30(td)
msgid "(IntOpt) Port that the XCP VNC proxy should bind to"
msgstr ""
#: ./doc/common/tables/glance-paste.xml:7(caption)
msgid "Description of paste configuration options"
msgstr ""
#: ./doc/common/tables/glance-paste.xml:21(td)
msgid "config_file = None"
msgstr ""
#: ./doc/common/tables/glance-paste.xml:22(td)
msgid "(StrOpt) Name of the paste configuration file."
msgstr ""
#: ./doc/common/tables/glance-paste.xml:26(td)
msgid "(StrOpt) Partial name of a pipeline in your paste configuration file with the service name removed. For example, if your paste section name is [pipeline:glance-api-keystone] use the value \"keystone\""
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-list-endpoints.xml:8(literal)
msgid "[filter-list-endpoints]"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-list-endpoints.xml:20(td)
msgid "list_endpoints_path = /endpoints/"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-list-endpoints.xml:24(td)
msgid "use = egg:swift#list_endpoints"
msgstr ""
#: ./doc/common/tables/swift-account-server-account-reaper.xml:8(literal)
msgid "[account-reaper]"
msgstr ""
#: ./doc/common/tables/swift-account-server-account-reaper.xml:28(td)
msgid "delay_reaping = 0"
msgstr ""
#: ./doc/common/tables/swift-account-server-account-reaper.xml:29(td)
msgid "Normally, the reaper begins deleting account information for deleted accounts immediately; you can set this to delay its work however. The value is in seconds, 2592000 = 30 days, for example. bind to giving up worker can process simultaneously (it will actually accept(2) N + 1). Setting this to one (1) will only handle one request at a time, without accepting another request concurrently. By increasing the number of workers to a much higher value, one can reduce the impact of slow file system operations in one request from negatively impacting other requests."
msgstr ""
#: ./doc/common/tables/swift-account-server-account-reaper.xml:32(td)
msgid "interval = 3600"
msgstr ""
#: ./doc/common/tables/swift-account-server-account-reaper.xml:48(td)
msgid "log_name = account-reaper"
msgstr ""
#: ./doc/common/tables/swift-account-server-account-reaper.xml:56(td)
msgid "reap_warn_after = 2592000"
msgstr ""
#: ./doc/common/tables/nova-hyperv.xml:7(caption)
msgid "Description of HyperV configuration options"
msgstr ""
#: ./doc/common/tables/nova-hyperv.xml:21(td)
msgid "dynamic_memory_ratio = 1.0"
msgstr ""
#: ./doc/common/tables/nova-hyperv.xml:22(td)
msgid "(FloatOpt) Enables dynamic memory allocation (ballooning) when set to a value greater than 1. The value expresses the ratio between the total RAM assigned to an instance and its startup RAM amount. For example a ratio of 2.0 for an instance with 1024MB of RAM implies 512MB of RAM allocated at startup"
msgstr ""
#: ./doc/common/tables/nova-hyperv.xml:25(td)
msgid "enable_instance_metrics_collection = False"
msgstr ""
#: ./doc/common/tables/nova-hyperv.xml:26(td)
msgid "(BoolOpt) Enables metrics collections for an instance by using Hyper-V's metric APIs. Collected data can by retrieved by other apps and services, e.g.: Ceilometer. Requires Hyper-V / Windows Server 2012 and above"
msgstr ""
#: ./doc/common/tables/nova-hyperv.xml:33(td)
msgid "instances_path_share ="
msgstr ""
#: ./doc/common/tables/nova-hyperv.xml:34(td)
msgid "(StrOpt) The name of a Windows share name mapped to the \"instances_path\" dir and used by the resize feature to copy files to the target host. If left blank, an administrative share will be used, looking for the same \"instances_path\" used locally"
msgstr ""
#: ./doc/common/tables/nova-hyperv.xml:37(td)
msgid "limit_cpu_features = False"
msgstr ""
#: ./doc/common/tables/nova-hyperv.xml:38(td)
msgid "(BoolOpt) Required for live migration among hosts with different CPU features"
msgstr ""
#: ./doc/common/tables/nova-hyperv.xml:41(td)
msgid "mounted_disk_query_retry_count = 10"
msgstr ""
#: ./doc/common/tables/nova-hyperv.xml:42(td)
msgid "(IntOpt) The number of times to retry checking for a disk mounted via iSCSI."
msgstr ""
#: ./doc/common/tables/nova-hyperv.xml:45(td)
msgid "mounted_disk_query_retry_interval = 5"
msgstr ""
#: ./doc/common/tables/nova-hyperv.xml:46(td)
msgid "(IntOpt) Interval between checks for a mounted iSCSI disk, in seconds."
msgstr ""
#: ./doc/common/tables/nova-hyperv.xml:49(td)
msgid "qemu_img_cmd = qemu-img.exe"
msgstr ""
#: ./doc/common/tables/nova-hyperv.xml:50(td)
msgid "(StrOpt) Path of qemu-img command which is used to convert between different image types"
msgstr ""
#: ./doc/common/tables/nova-hyperv.xml:53(td)
msgid "vswitch_name = None"
msgstr ""
#: ./doc/common/tables/nova-hyperv.xml:54(td)
msgid "(StrOpt) External virtual switch Name, if not provided, the first external virtual switch is used"
msgstr ""
#: ./doc/common/tables/nova-hyperv.xml:57(td)
msgid "wait_soft_reboot_seconds = 60"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-container_sync.xml:8(literal)
msgid "[filter-container_sync]"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-container_sync.xml:20(td)
msgid "allow_full_urls = true"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-container_sync.xml:24(td)
msgid "current = //REALM/CLUSTER"
msgstr ""
#: ./doc/common/tables/swift-proxy-server-filter-container_sync.xml:28(td)
msgid "use = egg:swift#container_sync"
msgstr ""
#: ./doc/common/tables/heat-clients_backends.xml:7(caption)
msgid "Description of client backends configuration options"
msgstr ""
#: ./doc/common/tables/heat-clients_backends.xml:21(td)
msgid "cloud_backend = heat.engine.clients.OpenStackClients"
msgstr ""
#: ./doc/common/tables/heat-clients_backends.xml:22(td)
msgid "(StrOpt) Fully qualified class name to use as a client backend."
msgstr ""
#: ./doc/common/tables/glance-testing.xml:21(td)
msgid "pydev_worker_debug_host = None"
msgstr ""
#: ./doc/common/tables/glance-testing.xml:22(td)
msgid "(StrOpt) The hostname/IP of the pydev process listening for debug connections"
msgstr ""
#: ./doc/common/tables/glance-testing.xml:25(td)
msgid "pydev_worker_debug_port = 5678"
msgstr ""
#: ./doc/common/tables/glance-testing.xml:26(td)
msgid "(IntOpt) The port on which a pydev process is listening for connections."
msgstr ""
#: ./doc/common/tables/neutron-common.xml:22(td) ./doc/common/tables/neutron-common.xml:208(td)
msgid "(StrOpt) Admin password"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:26(td) ./doc/common/tables/neutron-common.xml:212(td)
msgid "(StrOpt) Admin tenant name"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:30(td)
msgid "(StrOpt) Admin username"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:33(td)
msgid "agent_down_time = 75"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:34(td)
msgid "(IntOpt) Seconds to regard the agent is down; should be at least twice report_interval, to be sure the agent is down for good."
msgstr ""
#: ./doc/common/tables/neutron-common.xml:37(td)
msgid "api_workers = 0"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:38(td)
msgid "(IntOpt) Number of separate worker processes for service"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:41(td)
msgid "auth_ca_cert = None"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:42(td)
msgid "(StrOpt) Certificate Authority public key (CA cert) file for ssl"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:45(td)
msgid "auth_insecure = False"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:46(td)
msgid "(BoolOpt) Turn off verification of the certificate for ssl"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:50(td) ./doc/common/tables/neutron-common.xml:220(td)
msgid "(StrOpt) Authentication region"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:54(td) ./doc/common/tables/neutron-common.xml:224(td)
msgid "(StrOpt) The type of authentication to use"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:58(td) ./doc/common/tables/neutron-common.xml:228(td)
msgid "(StrOpt) Authentication URL"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:61(td)
msgid "base_mac = fa:16:3e:00:00:00"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:62(td)
msgid "(StrOpt) The base MAC address Neutron will use for VIFs"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:66(td)
msgid "(StrOpt) The host IP to bind to"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:69(td)
msgid "bind_port = 9696"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:70(td)
msgid "(IntOpt) The port to bind to"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:73(td)
msgid "ca_certs = None"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:74(td)
msgid "(StrOpt) CA certificates"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:77(td)
msgid "check_child_processes = False"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:81(td)
msgid "check_child_processes_action = respawn"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:85(td)
msgid "check_child_processes_interval = 60"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:89(td)
msgid "core_plugin = None"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:90(td)
msgid "(StrOpt) The core plugin Neutron will use"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:93(td)
msgid "ctl_cert = None"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:94(td)
msgid "(StrOpt) controller certificate"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:97(td)
msgid "ctl_privkey = None"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:98(td)
msgid "(StrOpt) controller private key"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:101(td)
msgid "dhcp_agent_notification = True"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:102(td)
msgid "(BoolOpt) Allow sending resource operation notification to DHCP agent"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:105(td)
msgid "dhcp_agents_per_network = 1"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:106(td)
msgid "(IntOpt) Number of DHCP agents scheduled to host a network."
msgstr ""
#: ./doc/common/tables/neutron-common.xml:109(td)
msgid "dhcp_confs = $state_path/dhcp"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:110(td)
msgid "(StrOpt) Location to store DHCP server config files"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:113(td)
msgid "dhcp_delete_namespaces = False"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:114(td)
msgid "(BoolOpt) Delete namespace after removing a dhcp server."
msgstr ""
#: ./doc/common/tables/neutron-common.xml:117(td)
msgid "dhcp_domain = openstacklocal"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:121(td)
msgid "dhcp_driver = neutron.agent.linux.dhcp.Dnsmasq"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:122(td)
msgid "(StrOpt) The driver used to manage the DHCP server."
msgstr ""
#: ./doc/common/tables/neutron-common.xml:125(td)
msgid "dhcp_lease_duration = 86400"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:126(td)
msgid "(IntOpt) DHCP lease duration (in seconds). Use -1 to tell dnsmasq to use infinite lease times."
msgstr ""
#: ./doc/common/tables/neutron-common.xml:133(td)
msgid "endpoint_type = adminURL"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:134(td)
msgid "(StrOpt) Network service endpoint type to pull from the keystone catalog"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:137(td)
msgid "force_gateway_on_subnet = True"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:138(td)
msgid "(BoolOpt) Ensure that configured gateway is on subnet. For IPv6, validate only if gateway is not a link local address. Deprecated, to be removed during the K release, at which point the check will be mandatory."
msgstr ""
#: ./doc/common/tables/neutron-common.xml:142(td)
msgid "(StrOpt) The hostname Neutron is running on"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:145(td)
msgid "interface_driver = None"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:146(td)
msgid "(StrOpt) The driver used to manage the virtual interface."
msgstr ""
#: ./doc/common/tables/neutron-common.xml:149(td)
msgid "ip_lib_force_root = False"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:150(td)
msgid "(BoolOpt) Force ip_lib calls to use the root helper"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:157(td)
msgid "mac_generation_retries = 16"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:158(td)
msgid "(IntOpt) How many times Neutron will retry MAC generation"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:161(td)
msgid "max_allowed_address_pair = 10"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:162(td)
msgid "(IntOpt) Maximum number of allowed address pairs"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:165(td)
msgid "max_dns_nameservers = 5"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:166(td)
msgid "(IntOpt) Maximum number of DNS nameservers"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:169(td)
msgid "max_fixed_ips_per_port = 5"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:170(td)
msgid "(IntOpt) Maximum number of fixed ips per port"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:173(td)
msgid "max_subnet_host_routes = 20"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:174(td)
msgid "(IntOpt) Maximum number of host routes per subnet"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:177(td)
msgid "periodic_fuzzy_delay = 5"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:181(td)
msgid "periodic_interval = 40"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:182(td)
msgid "(IntOpt) Seconds between running periodic tasks"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:186(td)
msgid "(IntOpt) Interval between two metering reports"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:190(td) ./doc/common/tables/neutron-common.xml:201(td)
msgid "(StrOpt) Root helper application."
msgstr ""
#: ./doc/common/tables/neutron-common.xml:193(td)
msgid "state_path = /var/lib/neutron"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:194(td)
msgid "(StrOpt) Where to store Neutron state files. This directory must be writable by the agent."
msgstr ""
#: ./doc/common/tables/neutron-common.xml:204(th)
msgid "[PROXY]"
msgstr ""
#: ./doc/common/tables/neutron-common.xml:216(td)
msgid "(StrOpt) Admin user"
msgstr ""
#: ./doc/common/tables/nova-hypervisor.xml:7(caption)
msgid "Description of hypervisor configuration options"
msgstr ""
#: ./doc/common/tables/nova-hypervisor.xml:21(td)
msgid "default_ephemeral_format = None"
msgstr ""
#: ./doc/common/tables/nova-hypervisor.xml:22(td)
msgid "(StrOpt) The default format an ephemeral_volume will be formatted with on creation."
msgstr ""
#: ./doc/common/tables/nova-hypervisor.xml:25(td)
msgid "force_raw_images = True"
msgstr ""
#: ./doc/common/tables/nova-hypervisor.xml:26(td)
msgid "(BoolOpt) Force backing images to raw format"
msgstr ""
#: ./doc/common/tables/nova-hypervisor.xml:29(td)
msgid "preallocate_images = none"
msgstr ""
#: ./doc/common/tables/nova-hypervisor.xml:30(td)
msgid "(StrOpt) VM image preallocation mode: \"none\" =&gt; no storage provisioning is done up front, \"space\" =&gt; storage is fully allocated at instance start"
msgstr ""
#: ./doc/common/tables/nova-hypervisor.xml:33(td)
msgid "timeout_nbd = 10"
msgstr ""
#: ./doc/common/tables/nova-hypervisor.xml:34(td)
msgid "(IntOpt) Amount of time, in seconds, to wait for NBD device start up."
msgstr ""
#: ./doc/common/tables/nova-hypervisor.xml:37(td)
msgid "use_cow_images = True"
msgstr ""
#: ./doc/common/tables/nova-hypervisor.xml:38(td)
msgid "(BoolOpt) Whether to use cow images"
msgstr ""
#: ./doc/common/tables/nova-hypervisor.xml:41(td)
msgid "vcpu_pin_set = None"
msgstr ""
#: ./doc/common/tables/nova-hypervisor.xml:42(td)
msgid "(StrOpt) Defines which pcpus that instance vcpus can use. For example, \"4-12,^8,15\""
msgstr ""
#: ./doc/common/tables/nova-hypervisor.xml:45(td)
msgid "virt_mkfs = []"
msgstr ""
#: ./doc/common/tables/nova-hypervisor.xml:46(td)
msgid "(MultiStrOpt) Name of the mkfs commands for ephemeral device. The format is &lt;os_type&gt;=&lt;mkfs command&gt;"
msgstr ""
#: ./doc/common/tables/swift-container-sync-realms-realm1.xml:8(literal)
msgid "[realm1]"
msgstr ""
#: ./doc/common/tables/swift-container-sync-realms-realm1.xml:20(td)
msgid "cluster_name1 = https://host1/v1/"
msgstr ""
#: ./doc/common/tables/swift-container-sync-realms-realm1.xml:24(td)
msgid "cluster_name2 = https://host2/v1/"
msgstr ""
#: ./doc/common/tables/swift-container-sync-realms-realm1.xml:28(td)
msgid "key = realm1key"
msgstr ""
#: ./doc/common/tables/swift-container-sync-realms-realm1.xml:32(td)
msgid "key2 = realm1key2"
msgstr ""
#: ./doc/common/tables/nova-wsgi.xml:22(td)
msgid "(StrOpt) File name for the paste.deploy config for nova-api"
msgstr ""
#: ./doc/common/tables/nova-wsgi.xml:30(td)
msgid "(StrOpt) SSL certificate of API server"
msgstr ""
#: ./doc/common/tables/nova-wsgi.xml:34(td)
msgid "(StrOpt) SSL private key of API server"
msgstr ""
#: ./doc/common/tables/nova-wsgi.xml:41(td)
msgid "wsgi_default_pool_size = 1000"
msgstr ""
#: ./doc/common/tables/nova-wsgi.xml:42(td)
msgid "(IntOpt) Size of the pool of greenthreads used by wsgi"
msgstr ""
#: ./doc/common/tables/nova-wsgi.xml:45(td)
msgid "wsgi_log_format = %(client_ip)s \"%(request_line)s\" status: %(status_code)s len: %(body_length)s time: %(wall_seconds).7f"
msgstr ""
#: ./doc/common/tables/nova-wsgi.xml:46(td)
msgid "(StrOpt) A python format string that is used as the template to generate log lines. The following values can be formatted into it: client_ip, date_time, request_line, status_code, body_length, wall_seconds."
msgstr ""
#: ./doc/common/tables/keystone-cache.xml:7(caption)
msgid "Description of cache configuration options"
msgstr ""
#: ./doc/common/tables/keystone-cache.xml:18(th)
msgid "[cache]"
msgstr ""
#: ./doc/common/tables/keystone-cache.xml:21(td)
msgid "backend = keystone.common.cache.noop"
msgstr ""
#: ./doc/common/tables/keystone-cache.xml:22(td)
msgid "(StrOpt) Dogpile.cache backend module. It is recommended that Memcache (dogpile.cache.memcached) or Redis (dogpile.cache.redis) be used in production deployments. Small workloads (single process) like devstack can use the dogpile.cache.memory backend."
msgstr ""
#: ./doc/common/tables/keystone-cache.xml:25(td)
msgid "backend_argument = []"
msgstr ""
#: ./doc/common/tables/keystone-cache.xml:26(td)
msgid "(MultiStrOpt) Arguments supplied to the backend module. Specify this option once per argument to be passed to the dogpile.cache backend. Example format: \"&lt;argname&gt;:&lt;value&gt;\"."
msgstr ""
#: ./doc/common/tables/keystone-cache.xml:29(td)
msgid "config_prefix = cache.keystone"
msgstr ""
#: ./doc/common/tables/keystone-cache.xml:30(td)
msgid "(StrOpt) Prefix for building the configuration dictionary for the cache region. This should not need to be changed unless there is another dogpile.cache region with the same configuration name."
msgstr ""
#: ./doc/common/tables/keystone-cache.xml:33(td)
msgid "debug_cache_backend = False"
msgstr ""
#: ./doc/common/tables/keystone-cache.xml:34(td)
msgid "(BoolOpt) Extra debugging from the cache backend (cache keys, get/set/delete/etc calls). This is only really useful if you need to see the specific cache-backend get/set/delete calls with the keys/values. Typically this should be left set to false."
msgstr ""
#: ./doc/common/tables/keystone-cache.xml:38(td)
msgid "(BoolOpt) Global toggle for all caching using the should_cache_fn mechanism."
msgstr ""
#: ./doc/common/tables/keystone-cache.xml:41(td)
msgid "expiration_time = 600"
msgstr ""
#: ./doc/common/tables/keystone-cache.xml:42(td)
msgid "(IntOpt) Default TTL, in seconds, for any cached item in the dogpile.cache region. This applies to any cached method that doesn't have an explicit cache expiration time defined for it."
msgstr ""
#: ./doc/common/tables/keystone-cache.xml:45(td)
msgid "proxies ="
msgstr ""
#: ./doc/common/tables/keystone-cache.xml:46(td)
msgid "(ListOpt) Proxy classes to import that will affect the way the dogpile.cache backend functions. See the dogpile.cache documentation on changing-backend-behavior."
msgstr ""
#: ./doc/common/tables/nova-ephemeral_storage_encryption.xml:7(caption)
msgid "Description of ephemeral storage encryption configuration options"
msgstr ""
#: ./doc/common/tables/nova-ephemeral_storage_encryption.xml:18(th)
msgid "[ephemeral_storage_encryption]"
msgstr ""
#: ./doc/common/tables/nova-ephemeral_storage_encryption.xml:21(td)
msgid "cipher = aes-xts-plain64"
msgstr ""
#: ./doc/common/tables/nova-ephemeral_storage_encryption.xml:29(td)
msgid "key_size = 512"
msgstr ""
#: ./doc/common/tables/nova-configdrive.xml:7(caption)
msgid "Description of config drive configuration options"
msgstr ""
#: ./doc/common/tables/nova-configdrive.xml:21(td)
msgid "config_drive_format = iso9660"
msgstr ""
#: ./doc/common/tables/nova-configdrive.xml:22(td)
msgid "(StrOpt) Config drive format. One of iso9660 (default) or vfat"
msgstr ""
#: ./doc/common/tables/nova-configdrive.xml:25(td)
msgid "config_drive_skip_versions = 1.0 2007-01-19 2007-03-01 2007-08-29 2007-10-10 2007-12-15 2008-02-01 2008-09-01"
msgstr ""
#: ./doc/common/tables/nova-configdrive.xml:26(td)
msgid "(StrOpt) List of metadata versions to skip placing into the config drive"
msgstr ""
#: ./doc/common/tables/nova-configdrive.xml:29(td)
msgid "config_drive_tempdir = None"
msgstr ""
#: ./doc/common/tables/nova-configdrive.xml:30(td)
msgid "(StrOpt) DEPRECATED (not needed any more): Where to put temporary files associated with config drive creation"
msgstr ""
#: ./doc/common/tables/nova-configdrive.xml:33(td)
msgid "force_config_drive = None"
msgstr ""
#: ./doc/common/tables/nova-configdrive.xml:34(td)
msgid "(StrOpt) Set to force injection to take place on a config drive (if set, valid options are: always)"
msgstr ""
#: ./doc/common/tables/nova-configdrive.xml:37(td)
msgid "mkisofs_cmd = genisoimage"
msgstr ""
#: ./doc/common/tables/nova-configdrive.xml:44(td)
msgid "config_drive_cdrom = False"
msgstr ""
#: ./doc/common/tables/nova-configdrive.xml:45(td)
msgid "(BoolOpt) Attaches the Config Drive image as a cdrom drive instead of a disk drive"
msgstr ""
#: ./doc/common/tables/nova-configdrive.xml:48(td)
msgid "config_drive_inject_password = False"
msgstr ""
#: ./doc/common/tables/nova-configdrive.xml:49(td)
msgid "(BoolOpt) Sets the admin password in the config drive image"
msgstr ""
#: ./doc/common/tables/keystone-token.xml:7(caption)
msgid "Description of token configuration options"
msgstr ""
#: ./doc/common/tables/keystone-token.xml:18(th)
msgid "[token]"
msgstr ""
#: ./doc/common/tables/keystone-token.xml:21(td)
msgid "bind ="
msgstr ""
#: ./doc/common/tables/keystone-token.xml:22(td)
msgid "(ListOpt) External auth mechanisms that should add bind information to token, e.g., kerberos,x509."
msgstr ""
#: ./doc/common/tables/keystone-token.xml:26(td)
msgid "(IntOpt) Time to cache tokens (in seconds). This has no effect unless global and token caching are enabled."
msgstr ""
#: ./doc/common/tables/keystone-token.xml:30(td)
msgid "(BoolOpt) Toggle for token system cacheing. This has no effect unless global caching is enabled."
msgstr ""
#: ./doc/common/tables/keystone-token.xml:33(td)
msgid "driver = keystone.token.persistence.backends.sql.Token"
msgstr ""
#: ./doc/common/tables/keystone-token.xml:34(td)
msgid "(StrOpt) Token persistence backend driver."
msgstr ""
#: ./doc/common/tables/keystone-token.xml:38(td)
msgid "(StrOpt) Enforcement policy on tokens presented to Keystone with bind information. One of disabled, permissive, strict, required or a specifically required bind mode, e.g., kerberos or x509 to require binding to that authentication."
msgstr ""
#: ./doc/common/tables/keystone-token.xml:41(td)
msgid "expiration = 3600"
msgstr ""
#: ./doc/common/tables/keystone-token.xml:42(td)
msgid "(IntOpt) Amount of time a token should remain valid (in seconds)."
msgstr ""
#: ./doc/common/tables/keystone-token.xml:45(td)
msgid "hash_algorithm = md5"
msgstr ""
#: ./doc/common/tables/keystone-token.xml:49(td)
msgid "provider = None"
msgstr ""
#: ./doc/common/tables/keystone-token.xml:50(td)
msgid "(StrOpt) Controls the token construction, validation, and revocation operations. Core providers are \"keystone.token.providers.[pkiz|pki|uuid].Provider\". The default provider is pkiz."
msgstr ""
#: ./doc/common/tables/keystone-token.xml:53(td)
msgid "revocation_cache_time = 3600"
msgstr ""
#: ./doc/common/tables/keystone-token.xml:54(td)
msgid "(IntOpt) Time to cache the revocation list and the revocation events if revoke extension is enabled (in seconds). This has no effect unless global and token caching are enabled."
msgstr ""
#: ./doc/common/tables/keystone-token.xml:57(td)
msgid "revoke_by_id = True"
msgstr ""
#: ./doc/common/tables/keystone-token.xml:58(td)
msgid "(BoolOpt) Revoke token by token identifier. Setting revoke_by_id to true enables various forms of enumerating tokens, e.g. `list tokens for user`. These enumerations are processed to determine the list of tokens to revoke. Only disable if you are switching to using the Revoke extension with a backend other than KVS, which stores events in memory."
msgstr ""
#: ./doc/common/tables/cinder-datera.xml:7(caption)
msgid "Description of Datera volume driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-datera.xml:21(td)
msgid "datera_api_port = 7717"
msgstr ""
#: ./doc/common/tables/cinder-datera.xml:22(td) ./doc/common/tables/cinder-conf-changes.xml:37(td)
msgid "(StrOpt) Datera API port."
msgstr ""
#: ./doc/common/tables/cinder-datera.xml:25(td)
msgid "datera_api_token = None"
msgstr ""
#: ./doc/common/tables/cinder-datera.xml:26(td) ./doc/common/tables/cinder-conf-changes.xml:41(td)
msgid "(StrOpt) Datera API token."
msgstr ""
#: ./doc/common/tables/cinder-datera.xml:29(td)
msgid "datera_api_version = 1"
msgstr ""
#: ./doc/common/tables/cinder-datera.xml:30(td) ./doc/common/tables/cinder-conf-changes.xml:45(td)
msgid "(StrOpt) Datera API version."
msgstr ""
#: ./doc/common/tables/cinder-datera.xml:33(td)
msgid "datera_num_replicas = 3"
msgstr ""
#: ./doc/common/tables/cinder-datera.xml:34(td) ./doc/common/tables/cinder-conf-changes.xml:49(td)
msgid "(StrOpt) Number of replicas to create of an inode."
msgstr ""
#: ./doc/common/tables/cinder-datera.xml:37(td)
msgid "driver_client_cert = None"
msgstr ""
#: ./doc/common/tables/cinder-datera.xml:38(td) ./doc/common/tables/cinder-conf-changes.xml:65(td)
msgid "(StrOpt) The path to the client certificate for verification, if the driver supports it."
msgstr ""
#: ./doc/common/tables/cinder-datera.xml:41(td)
msgid "driver_client_cert_key = None"
msgstr ""
#: ./doc/common/tables/cinder-datera.xml:42(td) ./doc/common/tables/cinder-conf-changes.xml:69(td)
msgid "(StrOpt) The path to the client certificate key for verification, if the driver supports it."
msgstr ""
#: ./doc/common/tables/neutron-ml2.xml:7(caption)
msgid "Description of ML2 configuration options"
msgstr ""
#: ./doc/common/tables/neutron-ml2.xml:18(th)
msgid "[ml2]"
msgstr ""
#: ./doc/common/tables/neutron-ml2.xml:21(td)
msgid "extension_drivers ="
msgstr ""
#: ./doc/common/tables/neutron-ml2.xml:25(td)
msgid "mechanism_drivers ="
msgstr ""
#: ./doc/common/tables/neutron-ml2.xml:26(td)
msgid "(ListOpt) An ordered list of networking mechanism driver entrypoints to be loaded from the neutron.ml2.mechanism_drivers namespace."
msgstr ""
#: ./doc/common/tables/neutron-ml2.xml:29(td)
msgid "tenant_network_types = local"
msgstr ""
#: ./doc/common/tables/neutron-ml2.xml:30(td)
msgid "(ListOpt) Ordered list of network_types to allocate as tenant networks."
msgstr ""
#: ./doc/common/tables/neutron-ml2.xml:33(td)
msgid "type_drivers = local, flat, vlan, gre, vxlan"
msgstr ""
#: ./doc/common/tables/neutron-ml2.xml:34(td)
msgid "(ListOpt) List of network type driver entrypoints to be loaded from the neutron.ml2.type_drivers namespace."
msgstr ""
#: ./doc/common/tables/glance-profiler.xml:25(td)
msgid "trace_sqlalchemy = True"
msgstr ""
#. Warning: Do not edit this file. It is automatically generated and your changes will be overwritten. The tool to do so lives in the openstack-doc-tools repository.
#: ./doc/common/tables/cinder-conf-changes.xml:4(title)
msgid "New, updated and deprecated options in Juno for OpenStack Block Storage"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:16(td)
msgid "[DEFAULT] az_cache_duration = 3600"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:20(td)
msgid "[DEFAULT] backup_swift_auth_version = 1"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:24(td)
msgid "[DEFAULT] backup_swift_tenant = None"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:28(td)
msgid "[DEFAULT] cinder_smis_config_file = /etc/cinder/cinder_fujitsu_eternus_dx.xml"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:32(td)
msgid "[DEFAULT] consistencygroup_api_class = cinder.consistencygroup.api.API"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:36(td)
msgid "[DEFAULT] datera_api_port = 7717"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:40(td)
msgid "[DEFAULT] datera_api_token = None"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:44(td)
msgid "[DEFAULT] datera_api_version = 1"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:48(td)
msgid "[DEFAULT] datera_num_replicas = 3"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:52(td)
msgid "[DEFAULT] destroy_empty_storage_group = False"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:56(td)
msgid "[DEFAULT] dpl_pool ="
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:60(td)
msgid "[DEFAULT] dpl_port = 8357"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:64(td)
msgid "[DEFAULT] driver_client_cert = None"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:68(td)
msgid "[DEFAULT] driver_client_cert_key = None"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:72(td)
msgid "[DEFAULT] fusionio_iocontrol_retry = 3"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:76(td)
msgid "[DEFAULT] fusionio_iocontrol_targetdelay = 5"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:80(td)
msgid "[DEFAULT] fusionio_iocontrol_verify_cert = True"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:84(td)
msgid "[DEFAULT] glance_core_properties = ['checksum', 'container_format', 'disk_format', 'image_name', 'image_id', 'min_disk', 'min_ram', 'name', 'size']"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:88(td)
msgid "[DEFAULT] hds_hnas_iscsi_config_file = /opt/hds/hnas/cinder_iscsi_conf.xml"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:92(td)
msgid "[DEFAULT] hds_hnas_nfs_config_file = /opt/hds/hnas/cinder_nfs_conf.xml"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:96(td)
msgid "[DEFAULT] hitachi_add_chap_user = False"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:100(td)
msgid "[DEFAULT] hitachi_async_copy_check_interval = 10"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:104(td)
msgid "[DEFAULT] hitachi_auth_method = None"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:108(td)
msgid "[DEFAULT] hitachi_auth_password = HBSD-CHAP-password"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:112(td)
msgid "[DEFAULT] hitachi_auth_user = HBSD-CHAP-user"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:116(td)
msgid "[DEFAULT] hitachi_copy_check_interval = 3"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:120(td)
msgid "[DEFAULT] hitachi_copy_speed = 3"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:124(td)
msgid "[DEFAULT] hitachi_default_copy_method = FULL"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:128(td)
msgid "[DEFAULT] hitachi_group_range = None"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:132(td)
msgid "[DEFAULT] hitachi_group_request = False"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:136(td)
msgid "[DEFAULT] hitachi_horcm_add_conf = True"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:140(td)
msgid "[DEFAULT] hitachi_horcm_numbers = 200,201"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:144(td)
msgid "[DEFAULT] hitachi_horcm_password = None"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:148(td)
msgid "[DEFAULT] hitachi_horcm_user = None"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:152(td)
msgid "[DEFAULT] hitachi_ldev_range = None"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:156(td)
msgid "[DEFAULT] hitachi_pool_id = None"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:160(td)
msgid "[DEFAULT] hitachi_serial_number = None"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:164(td)
msgid "[DEFAULT] hitachi_target_ports = None"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:168(td)
msgid "[DEFAULT] hitachi_thin_pool_id = None"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:172(td)
msgid "[DEFAULT] hitachi_unit_name = None"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:176(td)
msgid "[DEFAULT] hitachi_zoning_request = False"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:180(td)
msgid "[DEFAULT] hp3par_iscsi_chap_enabled = False"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:184(td)
msgid "[DEFAULT] ibmnas_platform_type = v7ku"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:188(td)
msgid "[DEFAULT] initiator_auto_registration = False"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:192(td)
msgid "[DEFAULT] iscsi_initiators ="
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:196(td)
msgid "[DEFAULT] iscsi_write_cache = on"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:200(td)
msgid "[DEFAULT] nimble_pool_name = default"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:204(td)
msgid "[DEFAULT] nimble_subnet_label = *"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:208(td)
msgid "[DEFAULT] pure_api_token = None"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:212(td)
msgid "[DEFAULT] quota_backup_gigabytes = 1000"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:216(td)
msgid "[DEFAULT] quota_backups = 10"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:220(td)
msgid "[DEFAULT] quota_consistencygroups = 10"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:224(td)
msgid "[DEFAULT] rados_connect_timeout = -1"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:228(td)
msgid "[DEFAULT] rbd_store_chunk_size = 4"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:232(td)
msgid "[DEFAULT] replication_api_class = cinder.replication.api.API"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:236(td)
msgid "[DEFAULT] san_secondary_ip = None"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:240(td)
msgid "[DEFAULT] smbfs_default_volume_format = qcow2"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:241(td)
msgid "(StrOpt) Default format that will be used when creating volumes if no volume format is specified. Can be set to: raw, qcow2, vhd or vhdx."
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:244(td)
msgid "[DEFAULT] smbfs_mount_options = noperm,file_mode=0775,dir_mode=0775"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:245(td)
msgid "(StrOpt) Mount options passed to the smbfs client. See mount.cifs man page for details."
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:248(td)
msgid "[DEFAULT] smbfs_mount_point_base = $state_path/mnt"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:249(td)
msgid "(StrOpt) Base dir containing mount points for smbfs shares."
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:252(td)
msgid "[DEFAULT] smbfs_oversub_ratio = 1.0"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:256(td)
msgid "[DEFAULT] smbfs_shares_config = /etc/cinder/smbfs_shares"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:257(td)
msgid "(StrOpt) File with the list of available smbfs shares."
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:260(td)
msgid "[DEFAULT] smbfs_sparsed_volumes = True"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:261(td)
msgid "(BoolOpt) Create volumes as sparsed files which take no space rather than regular files when using raw format, in which case volume creation takes lot of time."
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:264(td)
msgid "[DEFAULT] smbfs_used_ratio = 0.95"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:268(td)
msgid "[DEFAULT] ssh_hosts_key_file = $state_path/ssh_known_hosts"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:272(td)
msgid "[DEFAULT] storage_vnx_authentication_type = global"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:276(td)
msgid "[DEFAULT] storage_vnx_security_file_dir = None"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:280(td)
msgid "[DEFAULT] storwize_svc_allow_tenant_qos = False"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:284(td)
msgid "[DEFAULT] storwize_svc_npiv_compatibility_mode = False"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:288(td)
msgid "[DEFAULT] storwize_svc_stretched_cluster_partner = None"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:292(td)
msgid "[DEFAULT] strict_ssh_host_key_policy = False"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:296(td)
msgid "[DEFAULT] swift_catalog_info = object-store:swift:publicURL"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:300(td)
msgid "[DEFAULT] tcp_keepalive = True"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:304(td)
msgid "[DEFAULT] tcp_keepalive_count = None"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:308(td)
msgid "[DEFAULT] tcp_keepalive_interval = None"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:312(td)
msgid "[DEFAULT] volume_copy_blkio_cgroup_name = cinder-volume-copy"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:316(td)
msgid "[DEFAULT] volume_copy_bps_limit = 0"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:320(td)
msgid "[DEFAULT] volume_number_multiplier = -1.0"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:324(td)
msgid "[DEFAULT] zfssa_initiator ="
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:328(td)
msgid "[DEFAULT] zfssa_initiator_group ="
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:332(td)
msgid "[DEFAULT] zfssa_initiator_password ="
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:336(td)
msgid "[DEFAULT] zfssa_initiator_user ="
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:340(td)
msgid "[DEFAULT] zfssa_lun_compression ="
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:344(td)
msgid "[DEFAULT] zfssa_lun_logbias ="
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:348(td)
msgid "[DEFAULT] zfssa_lun_sparse = False"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:352(td)
msgid "[DEFAULT] zfssa_lun_volblocksize = 8k"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:356(td)
msgid "[DEFAULT] zfssa_pool = None"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:360(td)
msgid "[DEFAULT] zfssa_project = None"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:364(td)
msgid "[DEFAULT] zfssa_target_group = tgt-grp"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:368(td)
msgid "[DEFAULT] zfssa_target_interfaces = None"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:372(td)
msgid "[DEFAULT] zfssa_target_password ="
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:376(td)
msgid "[DEFAULT] zfssa_target_portal = None"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:380(td)
msgid "[DEFAULT] zfssa_target_user ="
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:384(td)
msgid "[CISCO_FABRIC_EXAMPLE] cisco_fc_fabric_address ="
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:388(td)
msgid "[CISCO_FABRIC_EXAMPLE] cisco_fc_fabric_password ="
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:392(td)
msgid "[CISCO_FABRIC_EXAMPLE] cisco_fc_fabric_port = 22"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:396(td)
msgid "[CISCO_FABRIC_EXAMPLE] cisco_fc_fabric_user ="
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:400(td)
msgid "[CISCO_FABRIC_EXAMPLE] cisco_zone_activate = True"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:404(td)
msgid "[CISCO_FABRIC_EXAMPLE] cisco_zone_name_prefix = None"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:408(td)
msgid "[CISCO_FABRIC_EXAMPLE] cisco_zoning_policy = initiator-target"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:412(td)
msgid "[CISCO_FABRIC_EXAMPLE] cisco_zoning_vsan = None"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:436(td)
msgid "[database] pool_timeout = None"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:456(td)
msgid "[fc-zone-manager] cisco_sb_connector = cinder.zonemanager.drivers.cisco.cisco_fc_zone_client_cli.CiscoFCZoneClientCLI"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:457(td) ./doc/common/tables/cinder-zoning_manager.xml:22(td) ./doc/common/tables/cinder-zoning_manager.xml:26(td)
msgid "(StrOpt) Southbound connector for zoning operation"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:460(td)
msgid "[keymgr] encryption_api_url = http://localhost:9311/v1"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:464(td)
msgid "[keymgr] encryption_auth_url = http://localhost:5000/v2.0"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:480(td)
msgid "[profiler] profiler_enabled = False"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:484(td)
msgid "[profiler] trace_sqlalchemy = False"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:501(td)
msgid "[DEFAULT] backup_swift_url"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:511(td)
msgid "[DEFAULT] default_timeout"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:513(td)
msgid "525600"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:516(td)
msgid "[DEFAULT] max_luns_per_storage_group"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:517(td)
msgid "256"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:518(td)
msgid "255"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:521(td)
msgid "[DEFAULT] vmware_task_poll_interval"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:522(td) ./doc/common/tables/cinder-conf-changes.xml:532(td)
msgid "5"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:523(td)
msgid "0.5"
msgstr ""
#: ./doc/common/tables/cinder-conf-changes.xml:527(td)
msgid "sqlite:///$state_path/$sqlite_db"
msgstr ""
#: ./doc/common/tables/keystone-memcache.xml:7(caption)
msgid "Description of memcache configuration options"
msgstr ""
#: ./doc/common/tables/keystone-memcache.xml:21(td)
msgid "max_compare_and_set_retry = 16"
msgstr ""
#: ./doc/common/tables/keystone-memcache.xml:22(td)
msgid "(IntOpt) Number of compare-and-set attempts to make when using compare-and-set in the token memcache back end."
msgstr ""
#: ./doc/common/tables/keystone-memcache.xml:25(td)
msgid "servers = localhost:11211"
msgstr ""
#: ./doc/common/tables/keystone-memcache.xml:26(td)
msgid "(ListOpt) Memcache servers in the format of \"host:port\"."
msgstr ""
#: ./doc/common/tables/trove-debug.xml:37(td)
msgid "pydev_debug = disabled"
msgstr ""
#: ./doc/common/tables/trove-debug.xml:38(td)
msgid "(StrOpt) Enable or disable pydev remote debugging. If value is 'auto' tries to connect to remote debugger server, but in case of error continues running with debugging disabled."
msgstr ""
#: ./doc/common/tables/trove-debug.xml:41(td) ./doc/common/tables/keystone-debug.xml:37(td)
msgid "pydev_debug_host = None"
msgstr ""
#: ./doc/common/tables/trove-debug.xml:42(td)
msgid "(StrOpt) Pydev debug server host (localhost by default)."
msgstr ""
#: ./doc/common/tables/trove-debug.xml:45(td) ./doc/common/tables/keystone-debug.xml:41(td)
msgid "pydev_debug_port = None"
msgstr ""
#: ./doc/common/tables/trove-debug.xml:46(td)
msgid "(IntOpt) Pydev debug server port (5678 by default)."
msgstr ""
#: ./doc/common/tables/trove-swift.xml:21(td)
msgid "swift_service_type = object-store"
msgstr ""
#: ./doc/common/tables/trove-swift.xml:25(td)
msgid "swift_url = None"
msgstr ""
#: ./doc/common/tables/trove-swift.xml:26(td)
msgid "(StrOpt) URL ending in AUTH_."
msgstr ""
#: ./doc/common/tables/nova-tilera.xml:7(caption)
msgid "Description of Tilera configuration options"
msgstr ""
#: ./doc/common/tables/nova-tilera.xml:21(td)
msgid "tile_pdu_ip = 10.0.100.1"
msgstr ""
#: ./doc/common/tables/nova-tilera.xml:22(td)
msgid "(StrOpt) IP address of tilera pdu"
msgstr ""
#: ./doc/common/tables/nova-tilera.xml:25(td)
msgid "tile_pdu_mgr = /tftpboot/pdu_mgr"
msgstr ""
#: ./doc/common/tables/nova-tilera.xml:26(td)
msgid "(StrOpt) Management script for tilera pdu"
msgstr ""
#: ./doc/common/tables/nova-tilera.xml:29(td)
msgid "tile_pdu_off = 2"
msgstr ""
#: ./doc/common/tables/nova-tilera.xml:30(td)
msgid "(IntOpt) Power status of tilera PDU is OFF"
msgstr ""
#: ./doc/common/tables/nova-tilera.xml:33(td)
msgid "tile_pdu_on = 1"
msgstr ""
#: ./doc/common/tables/nova-tilera.xml:34(td)
msgid "(IntOpt) Power status of tilera PDU is ON"
msgstr ""
#: ./doc/common/tables/nova-tilera.xml:37(td)
msgid "tile_pdu_status = 9"
msgstr ""
#: ./doc/common/tables/nova-tilera.xml:38(td)
msgid "(IntOpt) Power status of tilera PDU"
msgstr ""
#: ./doc/common/tables/nova-tilera.xml:41(td)
msgid "tile_power_wait = 9"
msgstr ""
#: ./doc/common/tables/nova-tilera.xml:42(td)
msgid "(IntOpt) Wait time in seconds until check the result after tilera power operations"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:7(caption)
msgid "Description of Libvirt configuration options"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:21(td)
msgid "remove_unused_base_images = True"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:22(td)
msgid "(BoolOpt) Should unused base images be removed?"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:25(td)
msgid "remove_unused_original_minimum_age_seconds = 86400"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:26(td)
msgid "(IntOpt) Unused unresized base images younger than this will not be removed"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:32(td)
msgid "block_migration_flag = VIR_MIGRATE_UNDEFINE_SOURCE, VIR_MIGRATE_PEER2PEER, VIR_MIGRATE_LIVE, VIR_MIGRATE_TUNNELLED, VIR_MIGRATE_NON_SHARED_INC"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:33(td)
msgid "(StrOpt) Migration flags to be set for block migration"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:36(td)
msgid "checksum_base_images = False"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:37(td)
msgid "(BoolOpt) Write a checksum for files in _base to disk"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:40(td)
msgid "checksum_interval_seconds = 3600"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:41(td)
msgid "(IntOpt) How frequently to checksum base images"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:44(td)
msgid "connection_uri ="
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:45(td)
msgid "(StrOpt) Override the default libvirt URI (which is dependent on virt_type)"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:48(td)
msgid "cpu_mode = None"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:49(td)
msgid "(StrOpt) Set to \"host-model\" to clone the host CPU feature flags; to \"host-passthrough\" to use the host CPU model exactly; to \"custom\" to use a named CPU model; to \"none\" to not set any CPU model. If virt_type=\"kvm|qemu\", it will default to \"host-model\", otherwise it will default to \"none\""
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:52(td)
msgid "cpu_model = None"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:53(td)
msgid "(StrOpt) Set to a named libvirt CPU model (see names listed in /usr/share/libvirt/cpu_map.xml). Only has effect if cpu_mode=\"custom\" and virt_type=\"kvm|qemu\""
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:56(td)
msgid "disk_cachemodes ="
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:57(td)
msgid "(ListOpt) Specific cachemodes to use for different disk types e.g: file=directsync,block=none"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:60(td)
msgid "disk_prefix = None"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:61(td)
msgid "(StrOpt) Override the default disk prefix for the devices attached to a server, which is dependent on virt_type. (valid options are: sd, xvd, uvd, vd)"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:64(td)
msgid "gid_maps ="
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:68(td)
msgid "hw_machine_type = None"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:72(td)
msgid "image_info_filename_pattern = $instances_path/$image_cache_subdirectory_name/%(image)s.info"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:73(td)
msgid "(StrOpt) Allows image information files to be stored in non-standard locations"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:76(td)
msgid "images_rbd_ceph_conf ="
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:77(td)
msgid "(StrOpt) Path to the ceph configuration file to use"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:80(td)
msgid "images_rbd_pool = rbd"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:81(td)
msgid "(StrOpt) The RADOS pool in which rbd volumes are stored"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:84(td)
msgid "images_type = default"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:85(td)
msgid "(StrOpt) VM Images format. Acceptable values are: raw, qcow2, lvm, rbd, default. If default is specified, then use_cow_images flag is used instead of this one."
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:88(td)
msgid "images_volume_group = None"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:89(td)
msgid "(StrOpt) LVM Volume Group that is used for VM images, when you specify images_type=lvm."
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:92(td)
msgid "inject_key = False"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:93(td)
msgid "(BoolOpt) Inject the ssh public key at boot time"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:96(td)
msgid "inject_partition = -2"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:97(td)
msgid "(IntOpt) The partition to inject to : -2 =&gt; disable, -1 =&gt; inspect (libguestfs only), 0 =&gt; not partitioned, &gt;0 =&gt; partition number"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:100(td)
msgid "inject_password = False"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:101(td)
msgid "(BoolOpt) Inject the admin password at boot time, without an agent."
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:104(td)
msgid "iscsi_use_multipath = False"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:105(td)
msgid "(BoolOpt) Use multipath connection of the iSCSI volume"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:108(td)
msgid "iser_use_multipath = False"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:109(td)
msgid "(BoolOpt) Use multipath connection of the iSER volume"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:112(td)
msgid "mem_stats_period_seconds = 10"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:116(td)
msgid "remove_unused_kernels = False"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:117(td)
msgid "(BoolOpt) Should unused kernel images be removed? This is only safe to enable if all compute nodes have been updated to support this option. This will be enabled by default in future."
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:120(td)
msgid "remove_unused_resized_minimum_age_seconds = 3600"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:121(td)
msgid "(IntOpt) Unused resized base images younger than this will not be removed"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:124(td)
msgid "rescue_image_id = None"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:125(td)
msgid "(StrOpt) Rescue ami image. This will not be used if an image id is provided by the user."
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:128(td)
msgid "rescue_kernel_id = None"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:129(td)
msgid "(StrOpt) Rescue aki image"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:132(td)
msgid "rescue_ramdisk_id = None"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:133(td)
msgid "(StrOpt) Rescue ari image"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:136(td)
msgid "rng_dev_path = None"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:137(td)
msgid "(StrOpt) A path to a device that will be used as source of entropy on the host. Permitted options are: /dev/random or /dev/hwrng"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:140(td)
msgid "snapshot_compression = False"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:141(td)
msgid "(BoolOpt) Compress snapshot images when possible. This currently applies exclusively to qcow2 images"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:144(td)
msgid "snapshot_image_format = None"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:145(td)
msgid "(StrOpt) Snapshot image format (valid options are : raw, qcow2, vmdk, vdi). Defaults to same as source image"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:148(td)
msgid "snapshots_directory = $instances_path/snapshots"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:149(td)
msgid "(StrOpt) Location where libvirt driver will store snapshots before uploading them to image service"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:152(td)
msgid "sparse_logical_volumes = False"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:153(td)
msgid "(BoolOpt) Create sparse logical volumes (with virtualsize) if this flag is set to True."
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:156(td)
msgid "sysinfo_serial = auto"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:160(td)
msgid "uid_maps ="
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:164(td)
msgid "use_usb_tablet = True"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:165(td)
msgid "(BoolOpt) Sync virtual and real mouse cursors in Windows VMs"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:168(td)
msgid "use_virtio_for_bridges = True"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:169(td)
msgid "(BoolOpt) Use virtio for bridge interfaces with KVM/QEMU"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:172(td)
msgid "virt_type = kvm"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:173(td)
msgid "(StrOpt) Libvirt domain type (valid options are: kvm, lxc, qemu, uml, xen)"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:184(td)
msgid "volume_drivers = iscsi=nova.virt.libvirt.volume.LibvirtISCSIVolumeDriver, iser=nova.virt.libvirt.volume.LibvirtISERVolumeDriver, local=nova.virt.libvirt.volume.LibvirtVolumeDriver, fake=nova.virt.libvirt.volume.LibvirtFakeVolumeDriver, rbd=nova.virt.libvirt.volume.LibvirtNetVolumeDriver, sheepdog=nova.virt.libvirt.volume.LibvirtNetVolumeDriver, nfs=nova.virt.libvirt.volume.LibvirtNFSVolumeDriver, aoe=nova.virt.libvirt.volume.LibvirtAOEVolumeDriver, glusterfs=nova.virt.libvirt.volume.LibvirtGlusterfsVolumeDriver, fibre_channel=nova.virt.libvirt.volume.LibvirtFibreChannelVolumeDriver, scality=nova.virt.libvirt.volume.LibvirtScalityVolumeDriver"
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:185(td)
msgid "(ListOpt) Libvirt handlers for remote volumes."
msgstr ""
#: ./doc/common/tables/nova-libvirt.xml:188(td)
msgid "wait_soft_reboot_seconds = 120"
msgstr ""
#: ./doc/common/tables/neutron-mlnx.xml:7(caption)
msgid "Description of Mellanox configuration options"
msgstr ""
#: ./doc/common/tables/neutron-mlnx.xml:21(td)
msgid "backoff_rate = 2"
msgstr ""
#: ./doc/common/tables/neutron-mlnx.xml:22(td)
msgid "(IntOpt) backoff rate multiplier for waiting period between retries for request to daemon, i.e. value of 2 will double the request timeout each retry"
msgstr ""
#: ./doc/common/tables/neutron-mlnx.xml:25(td)
msgid "daemon_endpoint = tcp://127.0.0.1:60001"
msgstr ""
#: ./doc/common/tables/neutron-mlnx.xml:26(td)
msgid "(StrOpt) eswitch daemon end point"
msgstr ""
#: ./doc/common/tables/neutron-mlnx.xml:33(td)
msgid "request_timeout = 3000"
msgstr ""
#: ./doc/common/tables/neutron-mlnx.xml:34(td)
msgid "(IntOpt) The number of milliseconds the agent will wait for response on request to daemon."
msgstr ""
#: ./doc/common/tables/neutron-mlnx.xml:37(th)
msgid "[MLNX]"
msgstr ""
#: ./doc/common/tables/neutron-mlnx.xml:40(td)
msgid "network_vlan_ranges = default:1:1000"
msgstr ""
#: ./doc/common/tables/neutron-mlnx.xml:44(td)
msgid "physical_network_type = eth"
msgstr ""
#: ./doc/common/tables/neutron-mlnx.xml:45(td)
msgid "(StrOpt) Physical network type for provider network (eth or ib)"
msgstr ""
#: ./doc/common/tables/neutron-mlnx.xml:48(td)
msgid "physical_network_type_mappings ="
msgstr ""
#: ./doc/common/tables/neutron-mlnx.xml:49(td)
msgid "(ListOpt) List of &lt;physical_network&gt;:&lt;physical_network_type&gt; with physical_network_type is either eth or ib"
msgstr ""
#: ./doc/common/tables/neutron-mlnx.xml:52(td)
msgid "tenant_network_type = vlan"
msgstr ""
#: ./doc/common/tables/cinder-zoning_manager.xml:7(caption)
msgid "Description of zoning manager configuration options"
msgstr ""
#: ./doc/common/tables/cinder-zoning_manager.xml:21(td)
msgid "brcd_sb_connector = cinder.zonemanager.drivers.brocade.brcd_fc_zone_client_cli.BrcdFCZoneClientCLI"
msgstr ""
#: ./doc/common/tables/cinder-zoning_manager.xml:25(td)
msgid "cisco_sb_connector = cinder.zonemanager.drivers.cisco.cisco_fc_zone_client_cli.CiscoFCZoneClientCLI"
msgstr ""
#: ./doc/common/tables/cinder-zoning_manager.xml:29(td)
msgid "fc_san_lookup_service = cinder.zonemanager.drivers.brocade.brcd_fc_san_lookup_service.BrcdFCSanLookupService"
msgstr ""
#: ./doc/common/tables/cinder-zoning_manager.xml:30(td)
msgid "(StrOpt) FC San Lookup Service"
msgstr ""
#: ./doc/common/tables/cinder-zoning_manager.xml:33(td)
msgid "zone_driver = cinder.zonemanager.drivers.brocade.brcd_fc_zone_driver.BrcdFCZoneDriver"
msgstr ""
#: ./doc/common/tables/cinder-zoning_manager.xml:34(td)
msgid "(StrOpt) FC Zone Driver responsible for zone management"
msgstr ""
#: ./doc/common/tables/ceilometer-glance.xml:21(td)
msgid "glance_page_size = 0"
msgstr ""
#: ./doc/common/tables/neutron-securitygroups.xml:7(caption)
msgid "Description of security groups configuration options"
msgstr ""
#: ./doc/common/tables/neutron-securitygroups.xml:18(th)
msgid "[SECURITYGROUP]"
msgstr ""
#: ./doc/common/tables/neutron-securitygroups.xml:21(td)
msgid "enable_security_group = True"
msgstr ""
#: ./doc/common/tables/neutron-securitygroups.xml:22(td)
msgid "(BoolOpt) Controls whether the neutron security group API is enabled in the server. It should be false when using no security groups or using the nova security group API."
msgstr ""
#: ./doc/common/tables/neutron-securitygroups.xml:26(td)
msgid "(StrOpt) Driver for security groups firewall in the L2 agent"
msgstr ""
#: ./doc/common/tables/keystone-debug.xml:38(td)
msgid "(StrOpt) Host to connect to for remote debugger."
msgstr ""
#: ./doc/common/tables/keystone-debug.xml:42(td)
msgid "(IntOpt) Port to connect to for remote debugger."
msgstr ""
#: ./doc/common/tables/keystone-debug.xml:45(td)
msgid "standard_threads = False"
msgstr ""
#: ./doc/common/tables/keystone-debug.xml:46(td)
msgid "(BoolOpt) Do not monkey-patch threading system modules."
msgstr ""
#: ./doc/common/tables/keystone-debug.xml:49(th)
msgid "[audit]"
msgstr ""
#: ./doc/common/tables/keystone-debug.xml:52(td)
msgid "namespace = openstack"
msgstr ""
#: ./doc/common/tables/keystone-debug.xml:53(td)
msgid "(StrOpt) namespace prefix for generated id"
msgstr ""
#: ./doc/common/tables/cinder-rootwrap.xml:21(td)
msgid "filters_path = /etc/cinder/rootwrap.d,/usr/share/cinder/rootwrap"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:7(caption)
msgid "Description of Nexenta iSCSI driver configuration options"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:21(td)
msgid "nexenta_blocksize ="
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:22(td)
msgid "(StrOpt) Block size for volumes (default=blank means 8KB)"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:25(td)
msgid "nexenta_host ="
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:26(td)
msgid "(StrOpt) IP address of Nexenta SA"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:29(td)
msgid "nexenta_iscsi_target_portal_port = 3260"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:30(td)
msgid "(IntOpt) Nexenta target portal port"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:33(td)
msgid "nexenta_password = nexenta"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:34(td)
msgid "(StrOpt) Password to connect to Nexenta SA"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:37(td)
msgid "nexenta_rest_port = 2000"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:38(td)
msgid "(IntOpt) HTTP port to connect to Nexenta REST API server"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:41(td)
msgid "nexenta_rest_protocol = auto"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:42(td)
msgid "(StrOpt) Use http or https for REST connection (default auto)"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:45(td)
msgid "nexenta_rrmgr_compression = 0"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:46(td)
msgid "(IntOpt) Enable stream compression, level 1..9. 1 - gives best speed; 9 - gives best compression."
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:49(td)
msgid "nexenta_rrmgr_connections = 2"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:50(td)
msgid "(IntOpt) Number of TCP connections."
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:53(td)
msgid "nexenta_rrmgr_tcp_buf_size = 4096"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:54(td)
msgid "(IntOpt) TCP Buffer size in KiloBytes."
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:57(td)
msgid "nexenta_sparse = False"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:58(td)
msgid "(BoolOpt) Enables or disables the creation of sparse volumes"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:61(td)
msgid "nexenta_sparsed_volumes = True"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:62(td)
msgid "(BoolOpt) Enables or disables the creation of volumes as sparsed files that take no space. If disabled (False), volume is created as a regular file, which takes a long time."
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:65(td)
msgid "nexenta_target_group_prefix = cinder/"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:66(td)
msgid "(StrOpt) Prefix for iSCSI target groups on SA"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:69(td)
msgid "nexenta_target_prefix = iqn.1986-03.com.sun:02:cinder-"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:70(td)
msgid "(StrOpt) IQN prefix for iSCSI targets"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:73(td)
msgid "nexenta_user = admin"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:74(td)
msgid "(StrOpt) User name to connect to Nexenta SA"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:77(td)
msgid "nexenta_volume = cinder"
msgstr ""
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:78(td)
msgid "(StrOpt) SA Pool that holds all volumes"
msgstr ""
#. Put one translator per line, in the form of NAME <EMAIL>, YEAR1, YEAR2
#: ./doc/common/tables/cinder-nexenta_iscsi.xml:0(None)
msgid "translator-credits"
msgstr ""