Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
Added a bit of networking documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyash authored and mancdaz committed Mar 22, 2013
1 parent 6e157f6 commit 9ef222c
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ Each of the cookbooks in the cookbooks directory is actually a [git submodule](h

There are a number of different chef roles that are included with these cookbooks. Descriptions of each of the roles can be found in the [readme](https://github.com/rcbops/chef-cookbooks/blob/master/roles/README.md) in the roles directory.

## Network configuration ##
Network configuration is stored in Chef `environment`. Please see `environments/example.json` and [networking documentation](networking.md).

## Usage ##

##### getting the cookbooks #####
Expand Down
24 changes: 24 additions & 0 deletions networking.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
The following section is incomplete but is a good start.

* Services that will listen on IP from the network specified in `node['osops_networks']['networks']['nova']`
* `cinder-scheduler`
* `keystone`
* `nova-cert`
* `nova-consoleauth`
* `nova-novncproxy`
* `nova-scheduler`
* `ntpd`
* `ZeroMQ`
* Services that will listen on IP from the network specified in `node['osops_networks']['networks']['public']`
* `apache2` (dashboard)
* `glance-api`
* `glance-registry`
* `nova-api`
* Services that will listen on IP from the network specified in `node['osops_networks']['networks']['management']`
* TBD
* `node['nova']['networks']['ipv4_cidr']` (with parallel `label` attribute `public`)
*Warning*: this goes into MySQL database `nova`, table `networks`. You have to update it manually in MySQL if you change the value later, the recipes do not do that.
* `node['nova']['networks']['ipv4_cidr']` (with parallel `label` attribute `private`)
Warning: same as above.


0 comments on commit 9ef222c

Please sign in to comment.