
To make environment config easier add a bind-interface, very similar to the existing bind-host attribuite. Cleanup endpoint recipe to skip parent override keys. Change-Id: Ic830a8bae71a690682ceaf876eaff40540e28b5f Closes-Bug: #1411840
35 lines
1.2 KiB
Ruby
35 lines
1.2 KiB
Ruby
# encoding: UTF-8
|
|
#
|
|
# Cookbook Name:: openstack-common
|
|
# recipe:: set_endpoints_by_interface
|
|
#
|
|
# Copyright 2013, 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.
|
|
#
|
|
|
|
class ::Chef::Recipe # rubocop:disable Documentation
|
|
include ::Openstack
|
|
end
|
|
|
|
# iterate over the endpoints, look for bind_interface to set the host
|
|
node['openstack']['endpoints'].keys.each do |component|
|
|
# Skip the overrides at the parent level
|
|
unless %w(host, family, bind-host, bind_interface).include? component
|
|
unless node['openstack']['endpoints'][component]['bind_interface'].nil?
|
|
ip_address = address node['openstack']['endpoints'][component]
|
|
node.default['openstack']['endpoints'][component]['host'] = ip_address
|
|
end
|
|
end
|
|
end
|