FC034: Unused template variables: cookbook-glance/templates/default/glance-cache.conf.erb:1 FC034: Unused template variables: cookbook-glance/templates/default/glance-scrubber.conf.erb:1 FC043: Prefer new notification syntax: cookbook-glance/recipes/api.rb:58 FC043: Prefer new notification syntax: cookbook-glance/recipes/api.rb:123 FC043: Prefer new notification syntax: cookbook-glance/recipes/api.rb:145 FC043: Prefer new notification syntax: cookbook-glance/recipes/api.rb:158 FC043: Prefer new notification syntax: cookbook-glance/recipes/api.rb:174 FC043: Prefer new notification syntax: cookbook-glance/recipes/registry.rb:73 FC043: Prefer new notification syntax: cookbook-glance/recipes/registry.rb:83 FC043: Prefer new notification syntax: cookbook-glance/recipes/registry.rb:145 FC043: Prefer new notification syntax: cookbook-glance/recipes/registry.rb:160
292 lines
8.9 KiB
Ruby
292 lines
8.9 KiB
Ruby
#
|
|
# Cookbook Name:: glance
|
|
# Recipe:: api
|
|
#
|
|
# Copyright 2012, Rackspace US, Inc.
|
|
# Copyright 2012, Opscode, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
require "uri"
|
|
|
|
class ::Chef::Recipe
|
|
include ::Openstack
|
|
end
|
|
|
|
platform_options = node["glance"]["platform"]
|
|
|
|
package "curl" do
|
|
action :upgrade
|
|
end
|
|
|
|
package "python-keystone" do
|
|
action :install
|
|
end
|
|
|
|
platform_options["glance_packages"].each do |pkg|
|
|
package pkg do
|
|
action :upgrade
|
|
end
|
|
end
|
|
|
|
service "glance-api" do
|
|
service_name platform_options["glance_api_service"]
|
|
supports :status => true, :restart => true
|
|
|
|
action :enable
|
|
end
|
|
|
|
directory "/etc/glance" do
|
|
owner node["glance"]["user"]
|
|
group node["glance"]["group"]
|
|
mode 00700
|
|
|
|
action :create
|
|
end
|
|
|
|
template "/etc/glance/policy.json" do
|
|
source "policy.json.erb"
|
|
owner node["glance"]["user"]
|
|
group node["glance"]["group"]
|
|
mode 00644
|
|
|
|
notifies :restart, service['glance-api'], :immediately
|
|
|
|
#TODO(jaypipes): This shouldn't be necessary... not sure why it's here.
|
|
not_if { File.exists? "/etc/glance/policy.json" }
|
|
end
|
|
|
|
glance = node["glance"]
|
|
rabbit_server_role = glance["rabbit_server_chef_role"]
|
|
rabbit_info = config_by_role rabbit_server_role, "queue"
|
|
|
|
keystone_service_role = glance["keystone_service_chef_role"]
|
|
keystone = config_by_role keystone_service_role, "keystone"
|
|
identity_admin_endpoint = endpoint "identity-admin"
|
|
|
|
# Instead of the search to find the keystone service, put this
|
|
# into openstack-common as a common attribute?
|
|
ksadmin_user = keystone["admin_user"]
|
|
ksadmin_tenant_name = keystone["admin_tenant_name"]
|
|
ksadmin_pass = user_password ksadmin_user
|
|
auth_uri = ::URI.decode identity_admin_endpoint.to_s
|
|
|
|
db_user = node["glance"]["db"]["username"]
|
|
db_pass = db_password "glance"
|
|
sql_connection = db_uri("image", db_user, db_pass)
|
|
|
|
registry_endpoint = endpoint "image-registry"
|
|
api_endpoint = endpoint "image-api"
|
|
service_pass = service_password "glance"
|
|
|
|
# Possible combinations of options here
|
|
# - default_store=file
|
|
# * no other options required
|
|
# - default_store=swift
|
|
# * if swift_store_auth_address is not defined
|
|
# - default to local swift
|
|
# * else if swift_store_auth_address is defined
|
|
# - get swift_store_auth_address, swift_store_user, swift_store_key, and
|
|
# swift_store_auth_version from the node attributes and use them to connect
|
|
# to the swift compatible API service running elsewhere - possibly
|
|
# Rackspace Cloud Files.
|
|
if glance["api"]["swift_store_auth_address"].nil?
|
|
swift_store_auth_address = auth_uri
|
|
swift_store_user="#{glance["service_tenant_name"]}:#{glance["service_user"]}"
|
|
swift_store_key = service_pass
|
|
swift_store_auth_version=2
|
|
else
|
|
swift_store_auth_address=glance["api"]["swift_store_auth_address"]
|
|
swift_store_user=glance["api"]["swift_store_user"]
|
|
swift_store_key=glance["api"]["swift_store_key"]
|
|
swift_store_auth_version=glance["api"]["swift_store_auth_version"]
|
|
end
|
|
|
|
# Only use the glance image cacher if we aren't using file for our backing store.
|
|
if glance["api"]["default_store"]=="file"
|
|
glance_flavor="keystone"
|
|
else
|
|
glance_flavor="keystone+cachemanagement"
|
|
end
|
|
|
|
template "/etc/glance/glance-api.conf" do
|
|
source "glance-api.conf.erb"
|
|
owner node["glance"]["user"]
|
|
group node["glance"]["group"]
|
|
mode 00644
|
|
variables(
|
|
:api_bind_address => api_endpoint.host,
|
|
:api_bind_port => api_endpoint.port,
|
|
:registry_ip_address => registry_endpoint.host,
|
|
:registry_port => registry_endpoint.port,
|
|
:sql_connection => sql_connection,
|
|
:rabbit_ipaddress => rabbit_info["ipaddress"], #FIXME!
|
|
:glance_flavor => glance_flavor,
|
|
:swift_store_key => swift_store_key,
|
|
:swift_store_user => swift_store_user,
|
|
:swift_store_auth_address => swift_store_auth_address,
|
|
:swift_store_auth_version => swift_store_auth_version
|
|
)
|
|
|
|
notifies :restart, service['glance-api'], :immediately
|
|
end
|
|
|
|
template "/etc/glance/glance-api-paste.ini" do
|
|
source "glance-api-paste.ini.erb"
|
|
owner node["glance"]["user"]
|
|
group node["glance"]["group"]
|
|
mode 00644
|
|
variables(
|
|
"auth_uri" => auth_uri,
|
|
"service_password" => service_pass
|
|
)
|
|
|
|
notifies :restart, service['glance-api'], :immediately
|
|
end
|
|
|
|
template "/etc/glance/glance-cache.conf" do
|
|
source "glance-cache.conf.erb"
|
|
owner node["glance"]["user"]
|
|
group node["glance"]["group"]
|
|
mode 00644
|
|
variables(
|
|
:registry_ip_address => registry_endpoint.host,
|
|
:registry_port => registry_endpoint.port
|
|
)
|
|
|
|
notifies :restart, service['glance-api']
|
|
end
|
|
|
|
#TODO(jaypipes) I don't think this even exists or at least isn't
|
|
# used, since the Glance cache middleware goes in the api-paste.ini...
|
|
template "/etc/glance/glance-cache-paste.ini" do
|
|
source "glance-cache-paste.ini.erb"
|
|
owner node["glance"]["user"]
|
|
group node["glance"]["group"]
|
|
mode 00644
|
|
|
|
notifies :restart, service['glance-api']
|
|
end
|
|
|
|
template "/etc/glance/glance-scrubber.conf" do
|
|
source "glance-scrubber.conf.erb"
|
|
owner node["glance"]["user"]
|
|
group node["glance"]["group"]
|
|
mode 00644
|
|
variables(
|
|
:registry_ip_address => registry_endpoint.host,
|
|
:registry_port => registry_endpoint.port
|
|
)
|
|
end
|
|
|
|
# Configure glance-cache-pruner to run every 30 minutes
|
|
cron "glance-cache-pruner" do
|
|
minute "*/30"
|
|
command "/usr/bin/glance-cache-pruner"
|
|
end
|
|
|
|
# Configure glance-cache-cleaner to run at 00:01 everyday
|
|
cron "glance-cache-cleaner" do
|
|
minute "01"
|
|
hour "00"
|
|
command "/usr/bin/glance-cache-cleaner"
|
|
end
|
|
|
|
template "/etc/glance/glance-scrubber-paste.ini" do
|
|
source "glance-scrubber-paste.ini.erb"
|
|
owner node["glance"]["user"]
|
|
group node["glance"]["group"]
|
|
mode 00644
|
|
end
|
|
|
|
# Register Image Service
|
|
keystone_register "Register Image Service" do
|
|
auth_uri auth_uri
|
|
admin_user ksadmin_user
|
|
admin_tenant_name ksadmin_tenant_name
|
|
admin_password ksadmin_pass
|
|
service_name "glance"
|
|
service_type "image"
|
|
service_description "Glance Image Service"
|
|
|
|
action :create_service
|
|
end
|
|
|
|
# Register Image Endpoint
|
|
keystone_register "Register Image Endpoint" do
|
|
auth_uri auth_uri
|
|
admin_user ksadmin_user
|
|
admin_tenant_name ksadmin_tenant_name
|
|
admin_password ksadmin_pass
|
|
service_type "image"
|
|
endpoint_region node["glance"]["region"]
|
|
endpoint_adminurl api_endpoint.to_s
|
|
endpoint_internalurl api_endpoint.to_s
|
|
endpoint_publicurl api_endpoint.to_s
|
|
|
|
action :create_endpoint
|
|
end
|
|
|
|
if node["glance"]["image_upload"]
|
|
node["glance"]["images"].each do |img|
|
|
Chef::Log.info("Checking to see if #{img.to_s}-image should be uploaded.")
|
|
|
|
glance_cmd = "glance -I #{ksadmin_user} -K #{ksadmin_pass} -T #{ksadmin_tenant_name} -N #{auth_uri}"
|
|
|
|
bash "default image setup for #{img.to_s}" do
|
|
cwd "/tmp"
|
|
user "root"
|
|
environment ({"OS_USERNAME" => ksadmin_user,
|
|
"OS_PASSWORD" => ksadmin_pass,
|
|
"OS_TENANT_NAME" => ksadmin_tenant_name,
|
|
"OS_AUTH_URL" => auth_uri})
|
|
case File.extname(node["glance"]["image"][img.to_sym])
|
|
when ".gz", ".tgz"
|
|
code <<-EOH
|
|
set -e
|
|
set -x
|
|
mkdir -p images/#{img.to_s}
|
|
cd images/#{img.to_s}
|
|
|
|
curl -L #{node["glance"]["image"][img.to_sym]} | tar -zx
|
|
image_name=$(basename #{node["glance"]["image"][img]} .tar.gz)
|
|
|
|
image_name=${image_name%-multinic}
|
|
|
|
kernel_file=$(ls *vmlinuz-virtual | head -n1)
|
|
if [ ${#kernel_file} -eq 0 ]; then
|
|
kernel_file=$(ls *vmlinuz | head -n1)
|
|
fi
|
|
|
|
ramdisk=$(ls *-initrd | head -n1)
|
|
if [ ${#ramdisk} -eq 0 ]; then
|
|
ramdisk=$(ls *-loader | head -n1)
|
|
fi
|
|
|
|
kernel=$(ls *.img | head -n1)
|
|
|
|
kid=$(#{glance_cmd} image-create --name="${image_name}-kernel" --is-public=true --disk-format=aki --container-format=aki < ${kernel_file} | cut -d: -f2 | sed 's/ //')
|
|
rid=$(#{glance_cmd} image-create --name="${image_name}-initrd" --is-public=true --disk-format=ari --container-format=ari < ${ramdisk} | cut -d: -f2 | sed 's/ //')
|
|
glance image-create --name="#{img.to_s}-image" --is-public=true --disk-format=ami --container-format=ami --property kernel_id=$kid --property ramdisk_id=$rid < ${kernel}0
|
|
EOH
|
|
when ".img", ".qcow2"
|
|
code <<-EOH
|
|
#{glance_cmd} image-create --name="#{img.to_s}-image" --is-public=true --container-format=bare --disk-format=qcow2 --copy-from="#{node["glance"]["image"][img]}"
|
|
EOH
|
|
end
|
|
not_if "#{glance_cmd} image-list | grep #{img.to_s}-image"
|
|
end
|
|
end
|
|
end
|