Skip to content

Instantly share code, notes, and snippets.

@dizz
Created July 8, 2013 16:05
Show Gist options
  • Save dizz/5950134 to your computer and use it in GitHub Desktop.
Save dizz/5950134 to your computer and use it in GitHub Desktop.
environment structures
root@foreman:/etc/puppet# tree environments/
environments/
|-- common
|-- development
| `-- openstack
| |-- files
| | |-- RPM-GPG-KEY-EPEL-6
| | `-- RPM-GPG-KEY-RDO-Grizzly
| |-- Gemfile
| |-- LICENSE
| |-- manifests
| | |-- all.pp
| | |-- auth_file.pp
| | |-- cinder
| | | |-- all.pp
| | | |-- controller.pp
| | | `-- storage.pp
| | |-- client.pp
| | |-- compute.pp
| | |-- controller.pp
| | |-- db
| | | `-- mysql.pp
| | |-- glance.pp
| | |-- horizon.pp
| | |-- keystone.pp
| | |-- nova
| | | `-- controller.pp
| | |-- provision.pp
| | |-- quantum.pp
| | |-- repo
| | | |-- epel.pp
| | | |-- rdo.pp
| | | |-- uca.pp
| | | `-- yum_refresh.pp
| | |-- repo.pp
| | |-- swift
| | | |-- proxy.pp
| | | `-- storage-node.pp
| | `-- test_file.pp
| |-- Modulefile
| |-- other_repos.yaml
| |-- Rakefile
| |-- README.md
| |-- spec
| | |-- classes
| | | |-- openstack_all_spec.rb
| | | |-- openstack_auth_file_spec.rb
| | | |-- openstack_cinder_all_spec.rb
| | | |-- openstack_cinder_controller_spec.rb
| | | |-- openstack_cinder_storage_spec.rb
| | | |-- openstack_client_spec.rb
| | | |-- openstack_compute_spec.rb
| | | |-- openstack_controller_spec.rb
| | | |-- openstack_glance_spec.rb
| | | |-- openstack_horizon_spec.rb
| | | |-- openstack_keystone_spec.rb
| | | |-- openstack_nova_controller_spec.rb
| | | |-- openstack_quantum_spec.rb
| | | |-- openstack_repo_spec.rb
| | | |-- openstack_swift_storage-node.rb
| | | `-- openstack_test_file_spec.rb
| | `-- spec_helper.rb
| |-- templates
| | `-- test_nova.sh.erb
| `-- tests
| |-- all.pp
| |-- cloudcontroller.pp
| |-- compute.pp
| `-- site.pp
`-- production
`-- openstack
|-- files
| |-- RPM-GPG-KEY-EPEL-6
| `-- RPM-GPG-KEY-RDO-Grizzly
|-- Gemfile
|-- LICENSE
|-- manifests
| |-- all.pp
| |-- auth_file.pp
| |-- cinder
| | |-- all.pp
| | |-- controller.pp
| | `-- storage.pp
| |-- client.pp
| |-- compute.pp
| |-- controller.pp
| |-- db
| | `-- mysql.pp
| |-- glance.pp
| |-- horizon.pp
| |-- keystone.pp
| |-- nova
| | `-- controller.pp
| |-- provision.pp
| |-- quantum.pp
| |-- repo
| | |-- epel.pp
| | |-- rdo.pp
| | |-- uca.pp
| | `-- yum_refresh.pp
| |-- repo.pp
| |-- swift
| | |-- proxy.pp
| | `-- storage-node.pp
| `-- test_file.pp
|-- Modulefile
|-- other_repos.yaml
|-- Rakefile
|-- README.md
|-- spec
| |-- classes
| | |-- openstack_all_spec.rb
| | |-- openstack_auth_file_spec.rb
| | |-- openstack_cinder_all_spec.rb
| | |-- openstack_cinder_controller_spec.rb
| | |-- openstack_cinder_storage_spec.rb
| | |-- openstack_client_spec.rb
| | |-- openstack_compute_spec.rb
| | |-- openstack_controller_spec.rb
| | |-- openstack_glance_spec.rb
| | |-- openstack_horizon_spec.rb
| | |-- openstack_keystone_spec.rb
| | |-- openstack_nova_controller_spec.rb
| | |-- openstack_quantum_spec.rb
| | |-- openstack_repo_spec.rb
| | |-- openstack_swift_storage-node.rb
| | `-- openstack_test_file_spec.rb
| `-- spec_helper.rb
|-- templates
| `-- test_nova.sh.erb
`-- tests
|-- all.pp
|-- cloudcontroller.pp
|-- compute.pp
`-- site.pp
27 directories, 106 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment