# == Class glance::api # # Configure API service in glance # # == Parameters # # [*package_ensure*] # (optional) Ensure state for package. On RedHat platforms this # setting is ignored and the setting from the glance class is used # because there is only one glance package. Defaults to 'present'. # # [*debug*] # (optional) Rather to log the glance api service at debug level. # Default: undef # # [*bind_host*] # (optional) The address of the host to bind to. # Default: $::os_service_default. # # [*bind_port*] # (optional) The port the server should bind to. # Default: 9292 # # [*backlog*] # (optional) Backlog requests when creating socket # Default: $::os_service_default. # # [*workers*] # (optional) Number of Glance API worker processes to start # Default: $::processorcount # # [*log_file*] # (optional) The path of file used for logging # If set to boolean false, it will not log to any file. # Default: undef # # [*log_dir*] # (optional) directory to which glance logs are sent. # If set to boolean false, it will not log to any directory. # Defaults to undef # # [*registry_host*] # (optional) The address used to connect to the registry service. # Default: 0.0.0.0 # # [*registry_port*] # (optional) The port of the Glance registry service. # Default: $::os_service_default. # # [*registry_client_protocol*] # (optional) The protocol of the Glance registry service. # Default: $::os_service_default. # # [*scrub_time*] # (optional) The amount of time in seconds to delay before performing a delete. # Defaults to $::os_service_default. # # [*delayed_delete*] # (optional) Turn on/off delayed delete. # Defaults to $::os_service_default. # # [*auth_strategy*] # (optional) Type is authorization being used. # Defaults to 'keystone' # # [*pipeline*] # (optional) Partial name of a pipeline in your paste configuration file with the # service name removed. # Defaults to 'keystone'. # # [*manage_service*] # (optional) If Puppet should manage service startup / shutdown. # Defaults to true. # # [*enabled*] # (optional) Whether to enable services. # Defaults to true. # # [*database_connection*] # (optional) Connection url to connect to glance database. # Defaults to undef # # [*database_idle_timeout*] # (optional) Timeout before idle db connections are reaped. # Defaults to undef # # [*database_max_retries*] # (Optional) Maximum number of database connection retries during startup. # Set to -1 to specify an infinite retry count. # Defaults to undef. # # [*database_retry_interval*] # (optional) Interval between retries of opening a database connection. # Defaults to undef. # # [*database_min_pool_size*] # (optional) Minimum number of SQL connections to keep open in a pool. # Defaults to undef. # # [*database_max_pool_size*] # (optional) Maximum number of SQL connections to keep open in a pool. # Defaults to undef. # # [*database_max_overflow*] # (optional) If set, use this value for max_overflow with sqlalchemy. # Defaults to undef. # # [*image_cache_max_size*] # (optional) The upper limit (the maximum size of accumulated cache in bytes) beyond which pruner, # if running, starts cleaning the images cache. # Defaults to $::os_service_default. # # [*image_cache_stall_time*] # (optional) The amount of time to let an image remain in the cache without being accessed. # Defaults to $::os_service_default. # # [*use_syslog*] # (optional) Use syslog for logging. # Defaults to undef # # [*use_stderr*] # (optional) Use stderr for logging # Defaults to undef # # [*log_facility*] # (optional) Syslog facility to receive log lines. # Defaults to undef # # [*show_image_direct_url*] # (optional) Expose image location to trusted clients. # Defaults to $::os_service_default. # # [*show_multiple_locations*] # (optional) Whether to include the backend image locations in image # properties. # Defaults to $::os_service_default. # # [*location_strategy*] # (optional) Strategy used to determine the image location order. # Defaults to $::os_service_default. # # [*purge_config*] # (optional) Whether to set only the specified config options # in the api config. # Defaults to false. # # [*cert_file*] # (optinal) Certificate file to use when starting API server securely # Defaults to $::os_service_default # # [*key_file*] # (optional) Private key file to use when starting API server securely # Defaults to $::os_service_default # # [*ca_file*] # (optional) CA certificate file to use to verify connecting clients # Defaults to $::os_service_default # # [*registry_client_cert_file*] # (optinal) The path to the cert file to use in SSL connections to the # registry server. # Defaults to $::os_service_default # # [*registry_client_key_file*] # (optinal) The path to the private key file to use in SSL connections to the # registry server. # Defaults to $::os_service_default # # [*registry_client_ca_file*] # (optinal) The path to the CA certificate file to use in SSL connections to the # registry server. # Defaults to $::os_service_default # # [*stores*] # (optional) List of which store classes and store class locations are # currently known to glance at startup. # Defaults to false. # Example: ['file','http'] # # [*default_store*] # (optional) The default backend store, should be given as a string. Value # must be provided if more than one store is listed in 'stores'. # Defaults to undef # # [*multi_store*] # (optional) Boolean describing if multiple backends will be configured # Defaults to false # # [*image_cache_dir*] # (optional) Base directory that the Image Cache uses. # Defaults to '/var/lib/glance/image-cache'. # # [*os_region_name*] # (optional) Sets the keystone region to use. # Defaults to 'RegionOne'. # # [*enable_proxy_headers_parsing*] # (Optional) Enable paste middleware to handle SSL requests through # HTTPProxyToWSGI middleware. # Defaults to $::os_service_default. # # [*validate*] # (optional) Whether to validate the service is working after any service refreshes # Defaults to false # # [*validation_options*] # (optional) Service validation options # Should be a hash of options defined in openstacklib::service_validation # If empty, defaults values are taken from openstacklib function. # Default command list images. # Require validate set at True. # Example: # glance::api::validation_options: # glance-api: # command: check_glance-api.py # path: /usr/bin:/bin:/usr/sbin:/sbin # provider: shell # tries: 5 # try_sleep: 10 # Defaults to {} # # === deprecated parameters: # # [*known_stores*] # (optional) DEPRECATED List of which store classes and store class # locations are currently known to glance at startup. This parameter # should be removed in the N release. # Defaults to false. # Example: ['file','http'] # # [*verbose*] # (optional) Deprecated. Rather to log the glance api service at verbose level. # Default: undef # # [*auth_region*] # (optional) The region for the authentication service. # If "use_user_token" is not in effect and using keystone auth, # then region name can be specified. # Defaults to undef # # [*keystone_password*] # (Optional) Password used to authentication. # Deprecated and will be replaced by ::glance::api::authtoken::password # Defaults to undef. # # [*auth_type*] # (optional) Type is authorization being used. # Deprecated and replaced by ::glance::api::auth_strategy # Defaults to undef. # # [*auth_uri*] # (optional) Complete public Identity API endpoint. # Deprecated and will be replaced by ::glance::api::authtoken::auth_uri # Defaults to undef. # # [*identity_uri*] # (optional) Complete admin Identity API endpoint. # Deprecated and will be replaced by ::glance::api::authtoken::auth_url # Defaults to undef. # # [*keystone_tenant*] # (optional) Tenant to authenticate to. # Deprecated and will be replaced by ::glance::api::authtoken::project_name # Defaults to undef. # # [*keystone_user*] # (optional) User to authenticate as with keystone. # Deprecated and will be replaced by ::glance::api::authtoken::username # Defaults to undef. # # [*signing_dir*] # (optional) Directory used to cache files related to PKI tokens. # Deprecated and will be replaced by ::glance::api::authtoken::signing_dir # Defaults to undef. # # [*memcached_servers*] # (optinal) a list of memcached server(s) to use for caching. If left undefined, # tokens will instead be cached in-process. # Deprecated and will be replaced by ::glance::api::authtoken::memcached_servers # Defaults to undef. # # [*token_cache_time*] # (optional) 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. # Deprecated and will be replaced by ::glance::api::authtoken::token_cache_time # Defaults to undef. # class glance::api( $package_ensure = 'present', $debug = undef, $bind_host = $::os_service_default, $bind_port = '9292', $backlog = $::os_service_default, $workers = $::processorcount, $log_file = undef, $log_dir = undef, $registry_host = '0.0.0.0', $registry_port = $::os_service_default, $registry_client_protocol = $::os_service_default, $scrub_time = $::os_service_default, $delayed_delete = $::os_service_default, $auth_strategy = 'keystone', $pipeline = 'keystone', $manage_service = true, $enabled = true, $use_syslog = undef, $use_stderr = undef, $log_facility = undef, $show_image_direct_url = $::os_service_default, $show_multiple_locations = $::os_service_default, $location_strategy = $::os_service_default, $purge_config = false, $cert_file = $::os_service_default, $key_file = $::os_service_default, $ca_file = $::os_service_default, $registry_client_cert_file = $::os_service_default, $registry_client_key_file = $::os_service_default, $registry_client_ca_file = $::os_service_default, $stores = false, $default_store = undef, $multi_store = false, $database_connection = undef, $database_idle_timeout = undef, $database_min_pool_size = undef, $database_max_pool_size = undef, $database_max_retries = undef, $database_retry_interval = undef, $database_max_overflow = undef, $image_cache_max_size = $::os_service_default, $image_cache_stall_time = $::os_service_default, $image_cache_dir = '/var/lib/glance/image-cache', $os_region_name = 'RegionOne', $enable_proxy_headers_parsing = $::os_service_default, $validate = false, $validation_options = {}, # DEPRECATED PARAMETERS $known_stores = false, $verbose = undef, $auth_region = undef, $keystone_password = undef, $auth_type = undef, $auth_uri = undef, $identity_uri = undef, $keystone_tenant = undef, $keystone_user = undef, $memcached_servers = undef, $signing_dir = undef, $token_cache_time = undef, ) inherits glance { include ::glance::deps include ::glance::policy include ::glance::api::db include ::glance::api::logging include ::glance::cache::logging if $verbose { warning('verbose is deprecated, has no effect and will be removed after Newton cycle.') } if $auth_region { warning('auth_region is deprecated, has no effect and and will be removed in the O release.') } if $keystone_password { warning('glance::api::keystone_password is deprecated, please use glance::api::authtoken::password') } if $auth_type { warning('glance::api::auth_type is deprecated, please use glance::api::auth_strategy') $auth_strategy_real = $auth_type } else { $auth_strategy_real = $auth_strategy } if $auth_uri { warning('glance::api::auth_uri is deprecated, please use glance::api::authtoken::auth_uri') } if $identity_uri { warning('glance::api::identity_uri is deprecated, please use glance::api::authtoken::auth_url') } if $keystone_tenant { warning('glance::api::keystone_tenant is deprecated, please use glance::api::authtoken::project_name') } if $keystone_user { warning('glance::api::keystone_user is deprecated, please use glance::api::authtoken::username') } if $memcached_servers { warning('glance::api::memcached_servers is deprecated, please use glance::api::authtoken::memcached_servers') } if $signing_dir { warning('glance::api::signing_dir is deprecated, please use glance::api::authtoken::signing_dir') } if $token_cache_time { warning('glance::api::token_cache_time is deprecated, please use glance::api::authtoken::token_cache_time') } if ( $glance::params::api_package_name != $glance::params::registry_package_name ) { ensure_packages('glance-api', { ensure => $package_ensure, tag => ['openstack', 'glance-package'], } ) } # basic service config glance_api_config { 'DEFAULT/bind_host': value => $bind_host; 'DEFAULT/bind_port': value => $bind_port; 'DEFAULT/backlog': value => $backlog; 'DEFAULT/workers': value => $workers; 'DEFAULT/show_image_direct_url': value => $show_image_direct_url; 'DEFAULT/show_multiple_locations': value => $show_multiple_locations; 'DEFAULT/location_strategy': value => $location_strategy; 'DEFAULT/scrub_time': value => $scrub_time; 'DEFAULT/delayed_delete': value => $delayed_delete; 'DEFAULT/image_cache_dir': value => $image_cache_dir; 'glance_store/os_region_name': value => $os_region_name; } # stores config if $stores and $known_stores { fail('known_stores and stores cannot both be assigned values') } elsif $stores { $stores_real = $stores } elsif $known_stores { warning('The known_stores parameter is deprecated, use stores instead') $stores_real = $known_stores } if $default_store { $default_store_real = $default_store } # determine value for glance_store/stores if !empty($stores_real) { if size(any2array($stores_real)) > 1 { $final_stores_real = join($stores_real, ',') } else { $final_stores_real = $stores_real[0] } if !$default_store_real { # set default store based on provided stores when it isn't explicitly set warning("default_store not provided, it will be automatically set to ${stores_real[0]}") $default_store_real = $stores_real[0] } } elsif $default_store_real { # set stores based on default_store if only default_store is provided $final_stores_real = $default_store } else { warning('Glance-api is being provisioned without any stores configured') } if $default_store_real and $multi_store { glance_api_config { 'glance_store/default_store': value => $default_store_real; } } elsif $multi_store { glance_api_config { 'glance_store/default_store': ensure => absent; } } if $final_stores_real { glance_api_config { 'glance_store/stores': value => $final_stores_real; } } else { glance_api_config { 'glance_store/stores': ensure => absent; } } resources { 'glance_api_config': purge => $purge_config, } glance_cache_config { 'DEFAULT/image_cache_stall_time': value => $image_cache_stall_time; 'DEFAULT/image_cache_max_size': value => $image_cache_max_size; 'glance_store/os_region_name': value => $os_region_name; } $registry_host_real = normalize_ip_for_uri($registry_host) # configure api service to connect registry service glance_api_config { 'DEFAULT/registry_host': value => $registry_host_real; 'DEFAULT/registry_port': value => $registry_port; 'DEFAULT/registry_client_protocol': value => $registry_client_protocol; } glance_cache_config { 'DEFAULT/registry_host': value => $registry_host; 'DEFAULT/registry_port': value => $registry_port; } # Set the pipeline, it is allowed to be blank if $pipeline != '' { validate_re($pipeline, '^(\w+([+]\w+)*)*$') glance_api_config { 'paste_deploy/flavor': ensure => present, value => $pipeline, } } else { glance_api_config { 'paste_deploy/flavor': ensure => absent } } # keystone config if $auth_strategy_real == 'keystone' { include ::glance::api::authtoken } oslo::middleware { 'glance_api_config': enable_proxy_headers_parsing => $enable_proxy_headers_parsing, } # SSL Options glance_api_config { 'DEFAULT/cert_file': value => $cert_file; 'DEFAULT/key_file' : value => $key_file; 'DEFAULT/ca_file' : value => $ca_file; 'DEFAULT/registry_client_ca_file': value => $registry_client_ca_file; 'DEFAULT/registry_client_cert_file': value => $registry_client_cert_file; 'DEFAULT/registry_client_key_file': value => $registry_client_key_file; } if $manage_service { if $enabled { $service_ensure = 'running' } else { $service_ensure = 'stopped' } } service { 'glance-api': ensure => $service_ensure, name => $::glance::params::api_service_name, enable => $enabled, hasstatus => true, hasrestart => true, tag => 'glance-service', } if $validate { $keystone_tenant_real = pick($keystone_tenant, $::glance::api::authtoken::project_name) $keystone_username_real = pick($keystone_user, $::glance::api::authtoken::username) $keystone_password_real = pick($keystone_password, $::glance::api::authtoken::password) $auth_uri_real = pick($auth_uri, $::glance::api::authtoken::auth_uri) $defaults = { 'glance-api' => { 'command' => "glance --os-auth-url ${auth_uri_real} --os-project-name ${keystone_tenant_real} --os-username ${keystone_username_real} --os-password ${keystone_password_real} image-list", } } $validation_options_hash = merge ($defaults, $validation_options) create_resources('openstacklib::service_validation', $validation_options_hash, {'subscribe' => 'Service[glance-api]'}) } }