Skip to content

Instantly share code, notes, and snippets.

@al-indigo
Created April 25, 2016 15:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save al-indigo/3bc951dd9119e14e02428f2f78f1380e to your computer and use it in GitHub Desktop.
Save al-indigo/3bc951dd9119e14e02428f2f78f1380e to your computer and use it in GitHub Desktop.
├── compute_deploy.yml
├── controller_deploy.yml
├── group_vars
│   └── all
├── hosts
├── network_deploy.yml
├── object_storage_deploy.yml
├── roles
│   ├── Stouts.mongodb-develop
│   │   └── tasks
│   │   └── create_db_and_user.yml
│   ├── client-environment
│   │   ├── defaults
│   │   │   └── main.yml
│   │   ├── tasks
│   │   │   ├── configuration.yml
│   │   │   ├── install_clients.yml
│   │   │   └── main.yml
│   │   └── templates
│   │   └── admin.sh.j2
│   ├── common_dependencies
│   │   └── tasks
│   │   ├── facts.yml
│   │   ├── main.yml
│   │   ├── packages.yml
│   │   └── packages_debian.yml
│   ├── management-scripts
│   │   ├── defaults
│   │   │   └── main.yml
│   │   └── tasks
│   │   ├── create_kill_script.yml
│   │   ├── create_restart_script.yml
│   │   ├── create_run_script.yml
│   │   └── main.yml
│   ├── openstack-ceilometer
│   │   ├── defaults
│   │   │   └── main.yml
│   │   ├── tasks
│   │   │   ├── configuration.yml
│   │   │   ├── main.yml
│   │   │   └── packages.yml
│   │   └── templates
│   │   └── ceilometer.conf.j2
│   ├── openstack-cinder
│   │   ├── defaults
│   │   │   └── main.yml
│   │   ├── tasks
│   │   │   ├── configuration.yml
│   │   │   ├── configuration_lvm.yml
│   │   │   ├── facts.yml
│   │   │   ├── git_repo.yml
│   │   │   ├── main.yml
│   │   │   ├── packages.yml
│   │   │   ├── packages_debian.yml
│   │   │   └── python_dependencies.yml
│   │   └── templates
│   │   └── cinder.conf.j2
│   ├── openstack-glance
│   │   ├── defaults
│   │   │   └── main.yml
│   │   ├── tasks
│   │   │   ├── configuration.yml
│   │   │   ├── facts.yml
│   │   │   ├── git_repo.yml
│   │   │   ├── main.yml
│   │   │   ├── packages.yml
│   │   │   ├── packages_debian.yml
│   │   │   └── python_dependencies.yml
│   │   └── templates
│   │   ├── glance-api.conf.j2
│   │   └── glance-registry.conf.j2
│   ├── openstack-horizon
│   │   ├── defaults
│   │   │   └── main.yml
│   │   ├── tasks
│   │   │   ├── configuration.yml
│   │   │   ├── facts.yml
│   │   │   ├── git_repo.yml
│   │   │   ├── main.yml
│   │   │   ├── packages.yml
│   │   │   ├── packages_debian.yml
│   │   │   └── python_dependencies.yml
│   │   └── templates
│   │   └── local_settings.py.example.j2
│   ├── openstack-keystone
│   │   ├── LICENSE
│   │   ├── README.md
│   │   ├── defaults
│   │   │   └── main.yml
│   │   ├── files
│   │   │   ├── keystone-paste.ini
│   │   │   └── policy.json
│   │   ├── handlers
│   │   │   └── main.yml
│   │   ├── library
│   │   │   ├── keystone_endpoint.py
│   │   │   └── keystone_service.py
│   │   ├── meta
│   │   │   └── main.yml
│   │   ├── tasks
│   │   │   ├── configuration.yml
│   │   │   ├── endpoints.yml
│   │   │   ├── facts.yml
│   │   │   ├── git_repo.yml
│   │   │   ├── main.yml
│   │   │   ├── maintenance.yml
│   │   │   ├── packages.yml
│   │   │   ├── packages_debian.yml
│   │   │   ├── packages_redhat.yml
│   │   │   ├── python_dependencies.yml
│   │   │   ├── roles.yml
│   │   │   ├── run_apache.yml
│   │   │   ├── run_keystone.yml
│   │   │   ├── run_profile.yml
│   │   │   ├── run_uwsgi.yml
│   │   │   ├── tenants.yml
│   │   │   ├── users.yml
│   │   │   └── wsgi_configuration.yml
│   │   ├── templates
│   │   │   ├── application.py.j2
│   │   │   ├── application_profile.py.j2
│   │   │   ├── keystone_profile_run.py.j2
│   │   │   ├── keystone_server_block.j2
│   │   │   ├── nginx.conf.j2
│   │   │   ├── uwsgi-keystone.ini.j2
│   │   │   └── wsgi-keystone.conf.j2
│   │   ├── tests
│   │   │   ├── inventory
│   │   │   └── test.yml
│   │   └── vars
│   │   └── main.yml
│   ├── openstack-neutron
│   │   ├── defaults
│   │   │   └── main.yml
│   │   ├── tasks
│   │   │   ├── compute_prerequisites.yml
│   │   │   ├── configuration.yml
│   │   │   ├── facts.yml
│   │   │   ├── git_repo.yml
│   │   │   ├── main.yml
│   │   │   ├── network_node_configuration.yml
│   │   │   ├── packages.yml
│   │   │   ├── packages_debian.yml
│   │   │   └── python_dependencies.yml
│   │   └── templates
│   │   ├── dhcp_agent.ini.j2
│   │   ├── l3_agent.ini.j2
│   │   ├── metadata_agent.ini.j2
│   │   ├── ml2_conf.ini.j2
│   │   └── neutron.conf.j2
│   ├── openstack-nova
│   │   ├── defaults
│   │   │   └── main.yml
│   │   ├── files
│   │   │   └── nova-compute.conf
│   │   ├── tasks
│   │   │   ├── configuration.yml
│   │   │   ├── facts.yml
│   │   │   ├── git_repo.yml
│   │   │   ├── main.yml
│   │   │   ├── packages.yml
│   │   │   ├── packages_debian.yml
│   │   │   ├── python_dependencies.yml
│   │   │   └── rabbitmq_configuration.yml
│   │   └── templates
│   │   ├── nova.conf.compute.j2
│   │   └── nova.conf.controller.j2
│   ├── openstack-sahara
│   │   ├── defaults
│   │   │   └── main.yml
│   │   ├── tasks
│   │   │   ├── configuration.yml
│   │   │   ├── git_repo.yml
│   │   │   ├── main.yml
│   │   │   ├── packages.yml
│   │   │   └── python_dependencies.yml
│   │   └── templates
│   │   └── sahara.conf.j2
│   ├── openstack-swift
│   │   ├── defaults
│   │   │   └── main.yml
│   │   ├── tasks
│   │   │   ├── configuration.yml
│   │   │   ├── facts.yml
│   │   │   ├── main.yml
│   │   │   ├── packages.yml
│   │   │   └── packages_debian.yml
│   │   └── templates
│   │   ├── account-server.conf.j2
│   │   ├── container-server.conf.j2
│   │   ├── object-server.conf.j2
│   │   ├── proxy-server.conf.j2
│   │   ├── rsyncd.conf.append.j2
│   │   └── swift.conf.j2
│   └── postgresql
│   ├── LICENSE
│   ├── README.md
│   ├── Vagrantfile
│   ├── defaults
│   │   └── main.yml
│   ├── handlers
│   │   └── main.yml
│   ├── meta
│   │   └── main.yml
│   ├── tasks
│   │   ├── configure.yml
│   │   ├── databases.yml
│   │   ├── extensions
│   │   │   ├── contrib.yml
│   │   │   ├── dev_headers.yml
│   │   │   └── postgis.yml
│   │   ├── extensions.yml
│   │   ├── install.yml
│   │   ├── main.yml
│   │   ├── monit.yml
│   │   ├── users.yml
│   │   └── users_privileges.yml
│   ├── templates
│   │   ├── etc_apt_preferences.d_apt_postgresql_org_pub_repos_apt.pref.j2
│   │   ├── etc_monit_conf.d_postgresql.j2
│   │   ├── pg_hba.conf.j2
│   │   ├── postgresql.conf-9.3.j2
│   │   ├── postgresql.conf-9.3.orig
│   │   ├── postgresql.conf-9.4.j2
│   │   └── postgresql.conf-9.4.orig
│   ├── test.yml
│   ├── vagrant-inventory
│   └── vars
│   └── test.yml
├── test.yml
├── tools.yml
└── utils_deploy.yml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment