From 6b526d526eb303ccc9fec087c2141006f6260925 Mon Sep 17 00:00:00 2001 From: galstrom21 Date: Tue, 13 May 2014 16:14:45 -0400 Subject: [PATCH] Updating identity-bind to use 0.0.0.0 This change is required to allow for keystone client to connect from outside of vagrant. Also setting identity backend to templated. Also updating the Vagrantfile to expose the keystone port-forwards. Change-Id: If4d4ed8c3d6ef7457b172c5afdb03d0762d19bb6 --- Vagrantfile-aio-neutron | 2 ++ environments/vagrant-aio-neutron.json | 10 ++++++++++ environments/vagrant-aio-nova.json | 5 +++++ 3 files changed, 17 insertions(+) diff --git a/Vagrantfile-aio-neutron b/Vagrantfile-aio-neutron index b056394..1467631 100644 --- a/Vagrantfile-aio-neutron +++ b/Vagrantfile-aio-neutron @@ -53,9 +53,11 @@ Vagrant.configure("2") do |config| ubuntu1204.vm.box_url = "http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_ubuntu-12.04_chef-provisionerless.box" ubuntu1204.vm.network "forwarded_port", guest: 443, host: 8443 # dashboard-ssl + ubuntu1204.vm.network "forwarded_port", guest: 5000, host: 5000 # identity-api ubuntu1204.vm.network "forwarded_port", guest: 8773, host: 8773 # compute-ec2-api ubuntu1204.vm.network "forwarded_port", guest: 8774, host: 8774 # compute-api ubuntu1204.vm.network "forwarded_port", guest: 4002, host: 4002 # chef-zero + ubuntu1204.vm.network "forwarded_port", guest: 35357, host: 35357 # identity-admin-api ubuntu1204.vm.provision :chef_client do |chef| chef.environment = chef_environment diff --git a/environments/vagrant-aio-neutron.json b/environments/vagrant-aio-neutron.json index 2ef75e8..c8e315d 100644 --- a/environments/vagrant-aio-neutron.json +++ b/environments/vagrant-aio-neutron.json @@ -10,6 +10,16 @@ "override_attributes": { "openstack": { "developer_mode": true, + "identity": { + "catalog": { + "backend": "templated" + } + }, + "endpoints": { + "identity-bind": { + "host": "0.0.0.0" + } + }, "network": { "openvswitch": { "local_ip_interface": "eth1" diff --git a/environments/vagrant-aio-nova.json b/environments/vagrant-aio-nova.json index 5d9a565..bf08ad0 100644 --- a/environments/vagrant-aio-nova.json +++ b/environments/vagrant-aio-nova.json @@ -10,6 +10,11 @@ "override_attributes": { "openstack": { "developer_mode": true, + "identity": { + "catalog": { + "backend": "templated" + } + }, "endpoints": { "identity-bind": { "host": "0.0.0.0"