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
This commit is contained in:
galstrom21 2014-05-13 16:14:45 -04:00
parent adbd34e188
commit 6b526d526e
3 changed files with 17 additions and 0 deletions

View File

@ -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

View File

@ -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"

View File

@ -10,6 +10,11 @@
"override_attributes": {
"openstack": {
"developer_mode": true,
"identity": {
"catalog": {
"backend": "templated"
}
},
"endpoints": {
"identity-bind": {
"host": "0.0.0.0"