cookbook-openstack-identity/recipes/cloud_config.rb
Jens Harbott f2902385ef Add a cloud_config recipe
Using a cloud config file when accessing a cloud is the modern variant
of setting lots of environment variables, so we add a new recipe that
produces a cloud config matching what we are deploying.

Clean up the old openrc template a bit.

Change-Id: I8574d9f4299be5b2a374140b461ef48e9e80ae6b
2019-08-30 14:29:33 +00:00

62 lines
1.9 KiB
Ruby

# encoding: UTF-8
#
# Cookbook Name:: openstack-identity
# recipe:: cloud_config
#
# Copyright 2019 x-ion GmbH
#
# 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.
# This recipe creates a fully usable cloud config file to be used directly
# by the openstack client or sdk.
class ::Chef::Recipe
include ::Openstack
end
ksadmin_project = node['openstack']['identity']['admin_project']
project_domain_name = node['openstack']['identity']['admin_project_domain']
ksadmin_user = node['openstack']['identity']['admin_user']
admin_domain_name = node['openstack']['identity']['admin_domain_name']
ksadmin_pass = get_password 'user', ksadmin_user
identity_endpoint = public_endpoint 'identity'
auth_url = ::URI.decode identity_endpoint.to_s
cloud_config = node['openstack']['identity']['cloud_config']
directory cloud_config['path'] do
owner cloud_config['user']
group cloud_config['group']
mode cloud_config['path_mode']
recursive true
end
template "#{cloud_config['path']}/#{cloud_config['file']}" do
source 'cloud_config.erb'
owner cloud_config['user']
group cloud_config['group']
mode cloud_config['file_mode']
sensitive true
variables(
cloud_name: cloud_config['cloud_name'],
user: ksadmin_user,
user_domain_name: admin_domain_name,
project: ksadmin_project,
project_domain_name: project_domain_name,
password: ksadmin_pass,
identity_endpoint: auth_url
)
end