# # Cookbook Name:: nova # Recipe:: keystone_registration # # Copyright 2013, AT&T # # 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 identity_admin_endpoint = endpoint "identity-admin" bootstrap_token = secret "secrets", "keystone_bootstrap_token" auth_uri = ::URI.decode identity_admin_endpoint.to_s service_pass = service_password "nova" nova_api_endpoint = endpoint "compute-api" ec2_admin_endpoint = endpoint "compute-ec2-admin" ec2_public_endpoint = endpoint "compute-ec2-api" # Register Service Tenant openstack_identity_register "Register Service Tenant" do auth_uri auth_uri bootstrap_token bootstrap_token tenant_name node["openstack-compute"]["service_tenant_name"] tenant_description "Service Tenant" action :create_tenant end # Register Service User openstack_identity_register "Register Service User" do auth_uri auth_uri bootstrap_token bootstrap_token tenant_name node["openstack-compute"]["service_tenant_name"] user_name node["openstack-compute"]["service_user"] user_pass service_pass action :create_user end ## Grant Admin role to Service User for Service Tenant ## openstack_identity_register "Grant 'admin' Role to Service User for Service Tenant" do auth_uri auth_uri bootstrap_token bootstrap_token tenant_name node["openstack-compute"]["service_tenant_name"] user_name node["openstack-compute"]["service_user"] role_name node["openstack-compute"]["service_role"] action :grant_role end # Register Compute Service openstack_identity_register "Register Compute Service" do auth_uri auth_uri bootstrap_token bootstrap_token service_name "nova" service_type "compute" service_description "Nova Compute Service" action :create_service end # Register Compute Endpoint openstack_identity_register "Register Compute Endpoint" do auth_uri auth_uri bootstrap_token bootstrap_token service_type "compute" endpoint_region node["openstack-compute"]["region"] endpoint_adminurl ::URI.decode nova_api_endpoint.to_s endpoint_internalurl ::URI.decode nova_api_endpoint.to_s endpoint_publicurl ::URI.decode nova_api_endpoint.to_s action :create_endpoint end # Register Service Tenant openstack_identity_register "Register Service Tenant" do auth_uri auth_uri bootstrap_token bootstrap_token tenant_name node["openstack-compute"]["service_tenant_name"] tenant_description "Service Tenant" action :create_tenant end # Register Service User openstack_identity_register "Register Service User" do auth_uri auth_uri bootstrap_token bootstrap_token tenant_name node["openstack-compute"]["service_tenant_name"] user_name node["openstack-compute"]["service_user"] user_pass service_pass action :create_user end # Grant Admin role to Service User for Service Tenant openstack_identity_register "Grant 'admin' Role to Service User for Service Tenant" do auth_uri auth_uri bootstrap_token bootstrap_token tenant_name node["openstack-compute"]["service_tenant_name"] user_name node["openstack-compute"]["service_user"] role_name node["openstack-compute"]["service_role"] action :grant_role end # Register EC2 Service openstack_identity_register "Register EC2 Service" do auth_uri auth_uri bootstrap_token bootstrap_token service_name "ec2" service_type "ec2" service_description "EC2 Compatibility Layer" action :create_service end # Register EC2 Endpoint openstack_identity_register "Register Compute Endpoint" do auth_uri auth_uri bootstrap_token bootstrap_token service_type "ec2" endpoint_region node["openstack-compute"]["region"] endpoint_adminurl ::URI.decode ec2_admin_endpoint.to_s endpoint_internalurl ::URI.decode ec2_public_endpoint.to_s endpoint_publicurl ::URI.decode ec2_public_endpoint.to_s action :create_endpoint end