一测试安装卸载脚本

[root@kolla ~]# cat build.sh

#!/usr/bin/env sh

cd kolla-ansible/tools/

./cleanup-containers && ./cleanup-host

cd

kolla-ansible deploy -i /root/all-in-one

二配置文件

[root@kolla ~]# cat /etc/kolla/globals.yml

---

# You can use this file to override _any_ variable throughout Kolla.

# Additional options can be found in the

# 'kolla-ansible/ansible/group_vars/all.yml' file. Default value of all the

# commented parameters are shown here, To override the default value uncomment

# the parameter and change its value.

###############

# Kolla options

###############

# Valid options are [ COPY_ONCE, COPY_ALWAYS ]

#config_strategy: "COPY_ALWAYS"

# Valid options are ['centos', 'debian', 'oraclelinux', 'rhel', 'ubuntu']

kolla_base_distro: "centos"

# Valid options are [ binary, source ]

kolla_install_type: "source"

# Valid option is Docker repository tag

openstack_release: "queens"

# Location of configuration overrides

#node_custom_config: "/etc/kolla/config"

# This should be a VIP, an unused IP on your network that will float between

# the hosts running keepalived for high-availability. If you want to run an

# All-In-One without haproxy and keepalived, you can set enable_haproxy to no

# in "OpenStack options" section, and set this value to the IP of your

# 'network_interface' as set in the Networking section below.

kolla_internal_vip_address: "192.168.229.249"

# This is the DNS name that maps to the kolla_internal_vip_address VIP. By

# default it is the same as kolla_internal_vip_address.

#kolla_internal_fqdn: "{{ kolla_internal_vip_address }}"

# This should be a VIP, an unused IP on your network that will float between

# the hosts running keepalived for high-availability. It defaults to the

# kolla_internal_vip_address, allowing internal and external communication to

# share the same address.  Specify a kolla_external_vip_address to separate

# internal and external requests between two VIPs.

#kolla_external_vip_address: "{{ kolla_internal_vip_address }}"

# The Public address used to communicate with OpenStack as set in the public_url

# for the endpoints that will be created. This DNS name should map to

# kolla_external_vip_address.

#kolla_external_fqdn: "{{ kolla_external_vip_address }}"

################

# Docker options

################

# Below is an example of a private repository with authentication. Note the

# Docker registry password can also be set in the passwords.yml file.

docker_registry: ""

docker_namespace: "kolla"

#docker_registry_username: "sam"

#docker_registry_password: "correcthorsebatterystaple"

###################

# Messaging options

###################

# Below is an example of an separate backend that provides brokerless

# messaging for oslo.messaging RPC communications

########################################################

#om_rpc_transport: "amqp"

#om_rpc_user: "{{ qdrouterd_user }}"

#om_rpc_password: "{{ qdrouterd_password }}"

#om_rpc_port: "{{ qdrouterd_port }}"

#om_rpc_group: "qdrouterd"

########################################################

##############################

# Neutron - Networking Options

##############################

# This interface is what all your api services will be bound to by default.

# Additionally, all vxlan/tunnel and storage network traffic will go over this

# interface by default. This interface must contain an IPv4 address.

# It is possible for hosts to have non-matching names of interfaces - these can

# be set in an inventory file per host or per group or stored separately, see

#     http://docs.ansible.com/ansible/intro_inventory.html

# Yet another way to workaround the naming problem is to create a bond for the

# interface on all hosts and give the bond name here. Similar strategy can be

# followed for other types of interfaces.

network_interface: "ens33"

# These can be adjusted for even more customization. The default is the same as

# the 'network_interface'. These interfaces must contain an IPv4 address.

kolla_external_vip_interface: "{{ network_interface }}"

api_interface: "{{ network_interface }}"

storage_interface: "{{ network_interface }}"

cluster_interface: "{{ network_interface }}"

tunnel_interface: "{{ network_interface }}"

dns_interface: "{{ network_interface }}"

# This is the raw interface given to neutron as its external network port. Even

# though an IP address can exist on this interface, it will be unusable in most

# configurations. It is recommended this interface not be configured with any IP

# addresses for that reason.

neutron_external_interface: "ens34"

# Valid options are [ openvswitch, linuxbridge, vmware_nsxv, vmware_dvs, opendaylight ]

#neutron_plugin_agent: "openvswitch"

####################

# keepalived options

####################

# Arbitrary unique number from 0..255

keepalived_virtual_router_id: "51"

#############

# TLS options

#############

# To provide encryption and authentication on the kolla_external_vip_interface,

# TLS can be enabled.  When TLS is enabled, certificates must be provided to

# allow clients to perform authentication.

#kolla_enable_tls_external: "no"

#kolla_external_fqdn_cert: "{{ node_config_directory }}/certificates/haproxy.pem"

##############

# OpenDaylight

##############

enable_opendaylight_qos: "no"

enable_opendaylight_l3: "yes"

###################

# OpenStack options

###################

# Use these options to set the various log levels across all OpenStack projects

# Valid options are [ True, False ]

openstack_logging_debug: "False"

# Valid options are [ none, novnc, spice, rdp ]

nova_console: "novnc"

# OpenStack services can be enabled or disabled with these options

enable_aodh: "yes"

enable_barbican: "yes"

#enable_blazar: "yes"

#enable_ceilometer: "no"

enable_central_logging: "yes"

#enable_ceph: "no"

#enable_ceph_mds: "no"

#enable_ceph_rgw: "no"

#enable_ceph_nfs: "no"

enable_chrony: "yes"

#enable_cinder: "no"

#enable_cinder_backup: "yes"

#enable_cinder_backend_hnas_iscsi: "no"

#enable_cinder_backend_hnas_nfs: "no"

#enable_cinder_backend_iscsi: "no"

#enable_cinder_backend_lvm: "no"

#enable_cinder_backend_nfs: "no"

enable_cloudkitty: "yes"

enable_collectd: "yes"

enable_congress: "yes"

enable_designate: "yes"

#enable_destroy_images: "no"

enable_etcd: "yes"

enable_fluentd: "yes"

enable_freezer: "yes"

enable_gnocchi: "yes"

enable_grafana: "yes"

enable_haproxy: "yes"

enable_heat: "yes"

enable_horizon: "yes"

enable_horizon_cloudkitty: "{{ enable_cloudkitty | bool }}"

#enable_horizon_designate: "{{ enable_designate | bool }}"

#enable_horizon_freezer: "{{ enable_freezer | bool }}"

#enable_horizon_ironic: "{{ enable_ironic | bool }}"

#enable_horizon_karbor: "{{ enable_karbor | bool }}"

#enable_horizon_magnum: "{{ enable_magnum | bool }}"

#enable_horizon_manila: "{{ enable_manila | bool }}"

#enable_horizon_mistral: "{{ enable_mistral | bool }}"

#enable_horizon_murano: "{{ enable_murano | bool }}"

#enable_horizon_neutron_lbaas: "{{ enable_neutron_lbaas | bool }}"

#enable_horizon_sahara: "{{ enable_sahara | bool }}"

#enable_horizon_searchlight: "{{ enable_searchlight | bool }}"

enable_horizon_senlin: "{{ enable_senlin | bool }}"

#enable_horizon_solum: "{{ enable_solum | bool }}"

#enable_horizon_tacker: "{{ enable_tacker | bool }}"

#enable_horizon_trove: "{{ enable_trove | bool }}"

enable_horizon_watcher: "{{ enable_watcher | bool }}"

enable_horizon_zun: "{{ enable_zun | bool }}"

#enable_hyperv: "no"

enable_influxdb: "yes"

#enable_ironic: "yes"

#enable_ironic_pxe_uefi: "no"

enable_karbor: "yes"

enable_kuryr: "yes"

enable_magnum: "yes"

enable_manila: "yes"

#enable_manila_backend_generic: "no"

#enable_manila_backend_hnas: "no"

#enable_manila_backend_cephfs_native: "no"

#enable_manila_backend_cephfs_nfs: "no"

enable_mistral: "yes"

enable_mongodb: "yes"

enable_murano: "yes"

enable_multipathd: "yes"

enable_neutron_bgp_dragent: "yes"

enable_neutron_dvr: "yes"

enable_neutron_lbaas: "yes"

enable_neutron_fwaas: "yes"

enable_neutron_qos: "yes"

enable_neutron_agent_ha: "yes"

enable_neutron_vpnaas: "yes"

enable_neutron_sriov: "yes"

enable_neutron_sfc: "yes"

#enable_nova_fake: "no"

#enable_nova_serialconsole_proxy: "no"

#enable_octavia: "yes"

#enable_opendaylight: "no"

#enable_openvswitch: "{{ neutron_plugin_agent != 'linuxbridge' }}"

#enable_ovs_dpdk: "yes"

enable_osprofiler: "yes"

enable_panko: "yes"

#enable_qdrouterd: "yes"

enable_rally: "yes"

#enable_redis: "no"

#enable_sahara: "no"

#enable_searchlight: "yes"

enable_senlin: "yes"

enable_skydive: "yes"

enable_solum: "no"

#enable_swift: "no"

enable_telegraf: "yes"

enable_tacker: "yes"

enable_tempest: "yes"

enable_trove: "yes"

enable_vitrage: "yes"

#enable_vmtp: "yes"

enable_watcher: "yes"

enable_zun: "yes"

##############

# Ceph options

##############

# Ceph can be setup with a caching to improve performance. To use the cache you

# must provide separate disks than those for the OSDs

#ceph_enable_cache: "no"

# Set to no if using external Ceph without cephx.

#external_ceph_cephx_enabled: "yes"

# Ceph is not able to determine the size of a cache pool automatically,

# so the configuration on the absolute size is required here, otherwise the flush/evict will not work.

#ceph_target_max_bytes: ""

#ceph_target_max_objects: ""

# Valid options are [ forward, none, writeback ]

#ceph_cache_mode: "writeback"

# A requirement for using the erasure-coded pools is you must setup a cache tier

# Valid options are [ erasure, replicated ]

#ceph_pool_type: "replicated"

# Integrate ceph rados object gateway with openstack keystone

#enable_ceph_rgw_keystone: "no"

# Set the pgs and pgps for pool

#ceph_pool_pg_num: 128

#ceph_pool_pgp_num: 128

#############################

# Keystone - Identity Options

#############################

# Valid options are [ uuid, fernet ]

#keystone_token_provider: 'uuid'

# Interval to rotate fernet keys by (in seconds). Must be an interval of

# 60(1 min), 120(2 min), 180(3 min), 240(4 min), 300(5 min), 360(6 min),

# 600(10 min), 720(12 min), 900(15 min), 1200(20 min), 1800(30 min),

# 3600(1 hour), 7200(2 hour), 10800(3 hour), 14400(4 hour), 21600(6 hour),

# 28800(8 hour), 43200(12 hour), 86400(1 day), 604800(1 week).

#fernet_token_expiry: 86400

########################

# Glance - Image Options

########################

# Configure image backend.

#glance_backend_file: "yes"

#glance_backend_ceph: "no"

#glance_backend_vmware: "no"

#glance_backend_swift: "no"

##################

# Barbican options

##################

# Valid options are [ simple_crypto, p11_crypto ]

barbican_crypto_plugin: "simple_crypto"

barbican_library_path: "/usr/lib/libCryptoki2_64.so"

################

## Panko options

################

# Valid options are [ mongodb, mysql ]

#panko_database_type: "mysql"

#################

# Gnocchi options

#################

# Valid options are [ file, ceph ]

gnocchi_backend_storage: "{{ 'ceph' if enable_ceph|bool else 'file' }}"

################################

# Cinder - Block Storage Options

################################

# Enable / disable Cinder backends

#cinder_backend_ceph: "{{ enable_ceph }}"

#cinder_backend_vmwarevc_vmdk: "no"

#cinder_volume_group: "cinder-volumes"

# Valid options are [ nfs, swift, ceph ]

#cinder_backup_driver: "ceph"

#cinder_backup_share: ""

#cinder_backup_mount_options_nfs: ""

###################

# Designate options

###################

# Valid options are [ bind9 ]

#designate_backend: "bind9"

#designate_ns_record: "sample.openstack.org"

########################

# Nova - Compute Options

########################

#nova_backend_ceph: "{{ enable_ceph }}"

# Valid options are [ qemu, kvm, vmware, xenapi ]

#nova_compute_virt_type: "kvm"

# The number of fake driver per compute node

#num_nova_fake_per_node: 5

#################

# Hyper-V options

#################

# Hyper-V can be used as hypervisor

#hyperv_username: "user"

#hyperv_password: "password"

#vswitch_name: "vswitch"

# URL from which Nova Hyper-V MSI is downloaded

#nova_msi_url: "https://www.cloudbase.it/downloads/HyperVNovaCompute_Beta.msi"

#############################

# Horizon - Dashboard Options

#############################

#horizon_backend_database: "{{ enable_murano | bool }}"

#############################

# Ironic options

#############################

#ironic_dnsmasq_dhcp_range:

######################################

# Manila - Shared File Systems Options

######################################

# HNAS backend configuration

#hnas_ip:

#hnas_user:

#hnas_password:

#hnas_evs_id:

#hnas_evs_ip:

#hnas_file_system_name:

################################

# Swift - Object Storage Options

################################

# Swift expects block devices to be available for storage. Two types of storage

# are supported: 1 - storage device with a special partition name and filesystem

# label, 2 - unpartitioned disk  with a filesystem. The label of this filesystem

# is used to detect the disk which Swift will be using.

# Swift support two matching modes, valid options are [ prefix, strict ]

#swift_devices_match_mode: "strict"

# This parameter defines matching pattern: if "strict" mode was selected,

# for swift_devices_match_mode then swift_device_name should specify the name of

# the special swift partition for example: "KOLLA_SWIFT_DATA", if "prefix" mode was

# selected then swift_devices_name should specify a pattern which would match to

# filesystems' labels prepared for swift.

#swift_devices_name: "KOLLA_SWIFT_DATA"

################################################

# Tempest - The OpenStack Integration Test Suite

################################################

# following value must be set when enable tempest

tempest_image_id:

tempest_flavor_ref_id:

tempest_public_network_id:

tempest_floating_network_name:

# tempest_image_alt_id: "{{ tempest_image_id }}"

# tempest_flavor_ref_alt_id: "{{ tempest_flavor_ref_id }}"

###################################

# VMware - OpenStack VMware support

###################################

vmware_vcenter_host_ip:

vmware_vcenter_host_username:

vmware_vcenter_host_password:

vmware_datastore_name:

vmware_vcenter_name:

vmware_vcenter_cluster_name:

#######################################

# XenAPI - Support XenAPI for XenServer

#######################################

# XenAPI driver use HIMN(Host Internal Management Network)

# to communicate with XenServer host.

#xenserver_himn_ip:

#xenserver_username:

#xenserver_connect_protocol:

[root@kolla ~]# cat /etc/kolla/globals.yml

---

# You can use this file to override _any_ variable throughout Kolla.

# Additional options can be found in the

# 'kolla-ansible/ansible/group_vars/all.yml' file. Default value of all the

# commented parameters are shown here, To override the default value uncomment

# the parameter and change its value.

###############

# Kolla options

###############

# Valid options are [ COPY_ONCE, COPY_ALWAYS ]

#config_strategy: "COPY_ALWAYS"

# Valid options are ['centos', 'debian', 'oraclelinux', 'rhel', 'ubuntu']

kolla_base_distro: "centos"

# Valid options are [ binary, source ]

kolla_install_type: "source"

# Valid option is Docker repository tag

openstack_release: "queens"

# Location of configuration overrides

#node_custom_config: "/etc/kolla/config"

# This should be a VIP, an unused IP on your network that will float between

# the hosts running keepalived for high-availability. If you want to run an

# All-In-One without haproxy and keepalived, you can set enable_haproxy to no

# in "OpenStack options" section, and set this value to the IP of your

# 'network_interface' as set in the Networking section below.

kolla_internal_vip_address: "192.168.229.249"

# This is the DNS name that maps to the kolla_internal_vip_address VIP. By

# default it is the same as kolla_internal_vip_address.

#kolla_internal_fqdn: "{{ kolla_internal_vip_address }}"

# This should be a VIP, an unused IP on your network that will float between

# the hosts running keepalived for high-availability. It defaults to the

# kolla_internal_vip_address, allowing internal and external communication to

# share the same address.  Specify a kolla_external_vip_address to separate

# internal and external requests between two VIPs.

#kolla_external_vip_address: "{{ kolla_internal_vip_address }}"

# The Public address used to communicate with OpenStack as set in the public_url

# for the endpoints that will be created. This DNS name should map to

# kolla_external_vip_address.

#kolla_external_fqdn: "{{ kolla_external_vip_address }}"

################

# Docker options

################

# Below is an example of a private repository with authentication. Note the

# Docker registry password can also be set in the passwords.yml file.

docker_registry: ""

docker_namespace: "kolla"

#docker_registry_username: "sam"

#docker_registry_password: "correcthorsebatterystaple"

###################

# Messaging options

###################

# Below is an example of an separate backend that provides brokerless

# messaging for oslo.messaging RPC communications

########################################################

#om_rpc_transport: "amqp"

#om_rpc_user: "{{ qdrouterd_user }}"

#om_rpc_password: "{{ qdrouterd_password }}"

#om_rpc_port: "{{ qdrouterd_port }}"

#om_rpc_group: "qdrouterd"

########################################################

##############################

# Neutron - Networking Options

##############################

# This interface is what all your api services will be bound to by default.

# Additionally, all vxlan/tunnel and storage network traffic will go over this

# interface by default. This interface must contain an IPv4 address.

# It is possible for hosts to have non-matching names of interfaces - these can

# be set in an inventory file per host or per group or stored separately, see

#     http://docs.ansible.com/ansible/intro_inventory.html

# Yet another way to workaround the naming problem is to create a bond for the

# interface on all hosts and give the bond name here. Similar strategy can be

# followed for other types of interfaces.

network_interface: "ens33"

# These can be adjusted for even more customization. The default is the same as

# the 'network_interface'. These interfaces must contain an IPv4 address.

kolla_external_vip_interface: "{{ network_interface }}"

api_interface: "{{ network_interface }}"

storage_interface: "{{ network_interface }}"

cluster_interface: "{{ network_interface }}"

tunnel_interface: "{{ network_interface }}"

dns_interface: "{{ network_interface }}"

# This is the raw interface given to neutron as its external network port. Even

# though an IP address can exist on this interface, it will be unusable in most

# configurations. It is recommended this interface not be configured with any IP

# addresses for that reason.

neutron_external_interface: "ens34"

# Valid options are [ openvswitch, linuxbridge, vmware_nsxv, vmware_dvs, opendaylight ]

#neutron_plugin_agent: "openvswitch"

####################

# keepalived options

####################

# Arbitrary unique number from 0..255

keepalived_virtual_router_id: "51"

#############

# TLS options

#############

# To provide encryption and authentication on the kolla_external_vip_interface,

# TLS can be enabled.  When TLS is enabled, certificates must be provided to

# allow clients to perform authentication.

#kolla_enable_tls_external: "no"

#kolla_external_fqdn_cert: "{{ node_config_directory }}/certificates/haproxy.pem"

##############

# OpenDaylight

##############

enable_opendaylight_qos: "no"

enable_opendaylight_l3: "yes"

###################

# OpenStack options

###################

# Use these options to set the various log levels across all OpenStack projects

# Valid options are [ True, False ]

openstack_logging_debug: "False"

# Valid options are [ none, novnc, spice, rdp ]

nova_console: "novnc"

# OpenStack services can be enabled or disabled with these options

enable_aodh: "yes"

enable_barbican: "yes"

#enable_blazar: "yes"

enable_ceilometer: "yes"

enable_central_logging: "yes"

#enable_ceph: "no"

#enable_ceph_mds: "no"

#enable_ceph_rgw: "no"

#enable_ceph_nfs: "no"

enable_chrony: "yes"

#enable_cinder: "no"

#enable_cinder_backup: "yes"

#enable_cinder_backend_hnas_iscsi: "no"

#enable_cinder_backend_hnas_nfs: "no"

#enable_cinder_backend_iscsi: "no"

#enable_cinder_backend_lvm: "no"

#enable_cinder_backend_nfs: "no"

enable_cloudkitty: "yes"

enable_collectd: "yes"

enable_congress: "yes"

enable_designate: "yes"

#enable_destroy_images: "no"

enable_etcd: "yes"

enable_fluentd: "yes"

enable_freezer: "yes"

enable_gnocchi: "yes"

enable_grafana: "yes"

enable_haproxy: "yes"

enable_heat: "yes"

enable_horizon: "yes"

enable_horizon_cloudkitty: "{{ enable_cloudkitty | bool }}"

#enable_horizon_designate: "{{ enable_designate | bool }}"

#enable_horizon_freezer: "{{ enable_freezer | bool }}"

#enable_horizon_ironic: "{{ enable_ironic | bool }}"

#enable_horizon_karbor: "{{ enable_karbor | bool }}"

#enable_horizon_magnum: "{{ enable_magnum | bool }}"

#enable_horizon_manila: "{{ enable_manila | bool }}"

#enable_horizon_mistral: "{{ enable_mistral | bool }}"

#enable_horizon_murano: "{{ enable_murano | bool }}"

#enable_horizon_neutron_lbaas: "{{ enable_neutron_lbaas | bool }}"

#enable_horizon_sahara: "{{ enable_sahara | bool }}"

#enable_horizon_searchlight: "{{ enable_searchlight | bool }}"

enable_horizon_senlin: "{{ enable_senlin | bool }}"

#enable_horizon_solum: "{{ enable_solum | bool }}"

#enable_horizon_tacker: "{{ enable_tacker | bool }}"

#enable_horizon_trove: "{{ enable_trove | bool }}"

enable_horizon_watcher: "{{ enable_watcher | bool }}"

enable_horizon_zun: "{{ enable_zun | bool }}"

#enable_hyperv: "no"

enable_influxdb: "yes"

#enable_ironic: "yes"

#enable_ironic_pxe_uefi: "no"

enable_karbor: "yes"

enable_kuryr: "yes"

enable_magnum: "yes"

enable_manila: "yes"

#enable_manila_backend_generic: "no"

#enable_manila_backend_hnas: "no"

#enable_manila_backend_cephfs_native: "no"

#enable_manila_backend_cephfs_nfs: "no"

enable_mistral: "yes"

enable_mongodb: "yes"

enable_murano: "yes"

enable_multipathd: "yes"

enable_neutron_bgp_dragent: "yes"

enable_neutron_dvr: "yes"

enable_neutron_lbaas: "yes"

enable_neutron_fwaas: "yes"

enable_neutron_qos: "yes"

enable_neutron_agent_ha: "yes"

enable_neutron_vpnaas: "yes"

enable_neutron_sriov: "yes"

enable_neutron_sfc: "yes"

#enable_nova_fake: "no"

#enable_nova_serialconsole_proxy: "no"

#enable_octavia: "yes"

#enable_opendaylight: "no"

#enable_openvswitch: "{{ neutron_plugin_agent != 'linuxbridge' }}"

#enable_ovs_dpdk: "yes"

enable_osprofiler: "yes"

enable_panko: "yes"

#enable_qdrouterd: "yes"

enable_rally: "yes"

enable_redis: "yes"

#enable_sahara: "no"

#enable_searchlight: "yes"

enable_senlin: "yes"

enable_skydive: "yes"

enable_solum: "no"

#enable_swift: "no"

enable_telegraf: "yes"

enable_tacker: "yes"

enable_tempest: "yes"

enable_trove: "yes"

enable_vitrage: "yes"

#enable_vmtp: "yes"

enable_watcher: "yes"

enable_zun: "yes"

##############

# Ceph options

##############

# Ceph can be setup with a caching to improve performance. To use the cache you

# must provide separate disks than those for the OSDs

#ceph_enable_cache: "no"

# Set to no if using external Ceph without cephx.

#external_ceph_cephx_enabled: "yes"

# Ceph is not able to determine the size of a cache pool automatically,

# so the configuration on the absolute size is required here, otherwise the flush/evict will not work.

#ceph_target_max_bytes: ""

#ceph_target_max_objects: ""

# Valid options are [ forward, none, writeback ]

#ceph_cache_mode: "writeback"

# A requirement for using the erasure-coded pools is you must setup a cache tier

# Valid options are [ erasure, replicated ]

#ceph_pool_type: "replicated"

# Integrate ceph rados object gateway with openstack keystone

#enable_ceph_rgw_keystone: "no"

# Set the pgs and pgps for pool

#ceph_pool_pg_num: 128

#ceph_pool_pgp_num: 128

#############################

# Keystone - Identity Options

#############################

# Valid options are [ uuid, fernet ]

#keystone_token_provider: 'uuid'

# Interval to rotate fernet keys by (in seconds). Must be an interval of

# 60(1 min), 120(2 min), 180(3 min), 240(4 min), 300(5 min), 360(6 min),

# 600(10 min), 720(12 min), 900(15 min), 1200(20 min), 1800(30 min),

# 3600(1 hour), 7200(2 hour), 10800(3 hour), 14400(4 hour), 21600(6 hour),

# 28800(8 hour), 43200(12 hour), 86400(1 day), 604800(1 week).

#fernet_token_expiry: 86400

########################

# Glance - Image Options

########################

# Configure image backend.

#glance_backend_file: "yes"

#glance_backend_ceph: "no"

#glance_backend_vmware: "no"

#glance_backend_swift: "no"

##################

# Barbican options

##################

# Valid options are [ simple_crypto, p11_crypto ]

barbican_crypto_plugin: "simple_crypto"

barbican_library_path: "/usr/lib/libCryptoki2_64.so"

################

## Panko options

################

# Valid options are [ mongodb, mysql ]

#panko_database_type: "mysql"

#######################

# Ceilometer options

#######################

# Valid options are [ mongodb, mysql, gnocchi ]

ceilometer_database_type: "gnocchi"

# Valid options are [ mongodb, gnocchi, panko ]

ceilometer_event_type: "panko"

#################

# Gnocchi options

#################

# Valid options are [ file, ceph ]

gnocchi_backend_storage: "{{ 'ceph' if enable_ceph|bool else 'file' }}"

################################

# Cinder - Block Storage Options

################################

# Enable / disable Cinder backends

#cinder_backend_ceph: "{{ enable_ceph }}"

#cinder_backend_vmwarevc_vmdk: "no"

#cinder_volume_group: "cinder-volumes"

# Valid options are [ nfs, swift, ceph ]

#cinder_backup_driver: "ceph"

#cinder_backup_share: ""

#cinder_backup_mount_options_nfs: ""

###################

# Designate options

###################

# Valid options are [ bind9 ]

#designate_backend: "bind9"

#designate_ns_record: "sample.openstack.org"

########################

# Nova - Compute Options

########################

#nova_backend_ceph: "{{ enable_ceph }}"

# Valid options are [ qemu, kvm, vmware, xenapi ]

#nova_compute_virt_type: "kvm"

# The number of fake driver per compute node

#num_nova_fake_per_node: 5

#################

# Hyper-V options

#################

# Hyper-V can be used as hypervisor

#hyperv_username: "user"

#hyperv_password: "password"

#vswitch_name: "vswitch"

# URL from which Nova Hyper-V MSI is downloaded

#nova_msi_url: "https://www.cloudbase.it/downloads/HyperVNovaCompute_Beta.msi"

#############################

# Horizon - Dashboard Options

#############################

#horizon_backend_database: "{{ enable_murano | bool }}"

#############################

# Ironic options

#############################

#ironic_dnsmasq_dhcp_range:

######################################

# Manila - Shared File Systems Options

######################################

# HNAS backend configuration

#hnas_ip:

#hnas_user:

#hnas_password:

#hnas_evs_id:

#hnas_evs_ip:

#hnas_file_system_name:

################################

# Swift - Object Storage Options

################################

# Swift expects block devices to be available for storage. Two types of storage

# are supported: 1 - storage device with a special partition name and filesystem

# label, 2 - unpartitioned disk  with a filesystem. The label of this filesystem

# is used to detect the disk which Swift will be using.

# Swift support two matching modes, valid options are [ prefix, strict ]

#swift_devices_match_mode: "strict"

# This parameter defines matching pattern: if "strict" mode was selected,

# for swift_devices_match_mode then swift_device_name should specify the name of

# the special swift partition for example: "KOLLA_SWIFT_DATA", if "prefix" mode was

# selected then swift_devices_name should specify a pattern which would match to

# filesystems' labels prepared for swift.

#swift_devices_name: "KOLLA_SWIFT_DATA"

################################################

# Tempest - The OpenStack Integration Test Suite

################################################

# following value must be set when enable tempest

tempest_image_id:

tempest_flavor_ref_id:

tempest_public_network_id:

tempest_floating_network_name:

# tempest_image_alt_id: "{{ tempest_image_id }}"

# tempest_flavor_ref_alt_id: "{{ tempest_flavor_ref_id }}"

###################################

# VMware - OpenStack VMware support

###################################

vmware_vcenter_host_ip:

vmware_vcenter_host_username:

vmware_vcenter_host_password:

vmware_datastore_name:

vmware_vcenter_name:

vmware_vcenter_cluster_name:

#######################################

# XenAPI - Support XenAPI for XenServer

#######################################

# XenAPI driver use HIMN(Host Internal Management Network)

# to communicate with XenServer host.

#xenserver_himn_ip:

#xenserver_username:

#xenserver_connect_protocol:

[root@kolla ~]#

openstack_queens_globals配置文件相关推荐

  1. golang通过RSA算法生成token,go从配置文件中注入密钥文件,go从文件中读取密钥文件,go RSA算法下token生成与解析;go java token共用

    RSA算法 token生成与解析 本文演示两种方式,一种是把密钥文件放在配置文件中,一种是把密钥文件本身放入项目或者容器中. 下面两种的区别在于私钥公钥的初始化, init方法,需要哪种取哪种. 通过 ...

  2. Dockerfile springboot项目拿走即用,将yml配置文件从外部挂入容器

    Dockerfile 将springboot项目jar包打成镜像,并将yml配置文件外挂. # 以一个镜像为基础,在其上进行定制.就像我们之前运行了一个 nginx 镜像的容器,再进行修改一样,基础镜 ...

  3. 在kotlin companion object中读取spring boot配置文件,静态类使用@Value注解配置

    在kotlin companion object中读取配置文件 静态类使用@Value注解配置 class Config {@Value("\${name}")fun setNam ...

  4. 基于Golang的监听读取配置文件的程序包开发——simpleConfig_v1

    基于Golang的监听&读取配置文件的程序包开发--simpleConfig_v1 [阅读时间:约10分钟] 一.配置文件概述 二.系统环境&项目介绍 1.系统环境 2.项目的任务要求 ...

  5. Go 学习笔记(82)— Go 第三方库之 viper(解析配置文件、热更新配置文件)

    1. viper 特点 viper 是一个完整的 Go应用程序的配置解决方案,它被设计为在应用程序中工作,并能处理所有类型的配置需求和格式.支持特性功能如下: 设置默认值 读取 JSON.TOML.Y ...

  6. jupyter qtconsole 配置文件的生成和修改

    jupyter qtconsole 配置文件的生成和修改 安装 Anaconda 之后默认会安装 IPython, 但是输入 ipython qtconsole 之后默认的 Jupyter QtCon ...

  7. mybatis配置文件解析

    mybatis配置文件解析 mybatis核心配置文件`mybatis-config.xml文件. mybatis的配置文件包含了会深深影响mybatis行为的设置和属性信息. 能配置的内容: con ...

  8. SpringCloud配置文件 application.yml和 bootstrap.yml区别,执行顺序

    说在前面 SpringBoot默认支持properties和YAML两种格式的配置文件.前者格式简单,但是只支持键值对.如果需要表达列表,最好使用YAML格式.SpringBoot支持自动加载约定名称 ...

  9. SpringBoot配置文件YAML配置注入(详解)

    目录 一.SpringBoot配置文件 1. SpringBoot默认配置文件 2. 配置文件的作用 3. 配置文件的位置 4. 多环境切换 方式一:多配置文件 方式二:一个配置文件(yaml的多文档 ...

最新文章

  1. The user specified as a definer ('root'@'%') does not exist
  2. mysql连接串指定编码_MYSQL创建数据库时候直接指定编码和排序规则
  3. Training little cats
  4. ava线程池ThreadPoolExecutor的keepAliveTime=0时,表示超过core线程数的线程在空闲时立即结束
  5. Excel催化剂插件功能修复与更新汇总篇之十
  6. mongodb ttl java,在mongoDB集合上设置ttl-是在应用程序中还是在shell中?
  7. corn表达式的简单使用
  8. 日期时间格式与时间戳互转
  9. ifconfig知识总结
  10. 《unity2021》如何改成中文
  11. DWS自动化包裹称重扫码测体积快手台的开发和源码
  12. QTTabBar安装后不生效
  13. android 设置全屏
  14. 《Rough set-based feature selection for weakly labeled data》
  15. qemu-img命令
  16. 前端能获取用户网速吗_js实现的非常简单的网速测试方法
  17. uni-app引入阿里图标
  18. VMWare 虚拟机, CentOS7环境下 部署Cobbler (含web)
  19. Mac恢复被修改的文档
  20. oracle条件查询数量统计,Oracle多条件的统计查询(case when)

热门文章

  1. html+css复习(三)
  2. html页面实现打印功能
  3. 4. java使用easyexcel导入excel-多个sheet页、每个sheet页存在多个表头导入的情况、踩坑记录、可在线拉取成品demo、也可参详详细演示流程、贴心手把手操作
  4. YiBo微博客户端设置自定义尾巴详细教程之一
  5. QQ第三方登陆回调处理
  6. SAS 数据分析实例之数据描述、预处理和抽样
  7. 2005-2019年所有地级市绿色专利申请量面板数据
  8. html语言制作旅游网站,基于WEB-HTML的旅游网站(前台+后台)模版
  9. 爱心的数学函数方程_【函数图像】说笛卡尔心形图,是数学史上最美公式我不服,那是你不记得这个了...
  10. Error type 3 Error: Activity class {...} does not exist