1. 프로젝트 트리(디렉토리)
origin-server
├── admin-console
│ ├── app
│ │ ├── assets
│ │ │ ├── images
│ │ │ │ └── admin_console
│ │ │ ├── javascripts
│ │ │ │ └── admin_console
│ │ │ └── stylesheets
│ │ │ └── admin_console
│ │ ├── controllers
│ │ │ └── admin_console
│ │ │ └── api
│ │ │ └── search
│ │ ├── helpers
│ │ │ └── admin_console
│ │ ├── models
│ │ │ └── admin_console
│ │ └── views
│ │ ├── admin_console
│ │ │ ├── application
│ │ │ ├── applications
│ │ │ ├── gears
│ │ │ ├── index
│ │ │ ├── nodes
│ │ │ ├── profiles
│ │ │ ├── search
│ │ │ ├── stats
│ │ │ ├── suggestions
│ │ │ │ ├── capacity
│ │ │ │ │ └── remove
│ │ │ │ └── config
│ │ │ └── users
│ │ └── layouts
│ │ └── admin_console
│ ├── conf
│ ├── config
│ │ └── initializers
│ ├── lib
│ │ ├── admin_console
│ │ └── tasks
│ ├── script
│ └── test
│ ├── dummy
│ │ ├── app
│ │ │ ├── assets
│ │ │ │ ├── javascripts
│ │ │ │ └── stylesheets
│ │ │ ├── controllers
│ │ │ ├── helpers
│ │ │ ├── mailers
│ │ │ ├── models
│ │ │ └── views
│ │ │ └── layouts
│ │ ├── config
│ │ │ ├── environments
│ │ │ ├── initializers
│ │ │ └── locales
│ │ ├── lib
│ │ │ └── assets
│ │ ├── log
│ │ ├── public
│ │ └── script
│ ├── fixtures
│ │ └── admin_console
│ ├── functional
│ │ └── admin_console
│ │ └── api
│ │ └── search
│ ├── integration
│ │ └── admin_console
│ ├── support
│ └── unit
│ └── helpers
│ └── admin_console
├── broker
│ ├── app
│ │ ├── controllers
│ │ └── helpers
│ ├── bin
│ ├── conf
│ │ └── plugins.d
│ ├── config
│ │ ├── environments
│ │ └── initializers
│ ├── db
│ ├── doc
│ │ ├── assets
│ │ │ └── descriptions
│ │ ├── bin
│ │ └── html
│ │ ├── 16
│ │ └── 17
│ ├── httpd
│ ├── init.d
│ ├── lib
│ │ └── tasks
│ ├── misc
│ ├── public
│ ├── script
│ ├── systemd
│ ├── test
│ │ ├── fixtures
│ │ ├── functional
│ │ ├── functional_ext
│ │ ├── helpers
│ │ │ └── rest
│ │ └── unit
│ │ └── helpers
│ └── tmp
│ └── cache
├── broker-util
│ ├── lib
│ └── man
├── cartridges
│ ├── dependencies
│ ├── openshift-origin-cartridge-10gen-mms-agent
│ │ ├── bin
│ │ └── metadata
│ ├── openshift-origin-cartridge-cron
│ │ ├── bin
│ │ ├── configuration
│ │ └── metadata
│ ├── openshift-origin-cartridge-diy
│ │ ├── bin
│ │ ├── configuration
│ │ │ └── etc
│ │ │ └── conf.d
│ │ ├── env
│ │ ├── hooks
│ │ ├── metadata
│ │ └── usr
│ │ └── template
│ │ ├── diy
│ │ └── misc
│ ├── openshift-origin-cartridge-haproxy
│ │ ├── bin
│ │ ├── env
│ │ ├── hooks
│ │ ├── metadata
│ │ ├── usr
│ │ │ └── bin
│ │ └── versions
│ │ └── 1.4
│ │ └── configuration
│ ├── openshift-origin-cartridge-jbossas
│ │ ├── bin
│ │ │ └── tools
│ │ ├── env
│ │ ├── hooks
│ │ ├── metadata
│ │ └── versions
│ │ └── 7
│ │ ├── bin
│ │ ├── modules
│ │ ├── standalone
│ │ │ └── configuration
│ │ └── template
│ │ ├── deployments
│ │ └── src
│ │ └── main
│ │ ├── java
│ │ ├── resources
│ │ └── webapp
│ │ ├── WEB-INF
│ │ └── images
│ ├── openshift-origin-cartridge-jbosseap
│ │ ├── bin
│ │ │ └── tools
│ │ ├── env
│ │ ├── hooks
│ │ ├── metadata
│ │ └── versions
│ │ ├── 6
│ │ │ ├── bin -> ../shared/bin
│ │ │ ├── modules -> ../shared/modules
│ │ │ ├── standalone -> ../shared/standalone
│ │ │ └── template -> ../shared/template
│ │ └── shared
│ │ ├── bin
│ │ ├── modules
│ │ ├── standalone
│ │ │ └── configuration
│ │ └── template
│ │ ├── deployments
│ │ └── src
│ │ └── main
│ │ ├── java
│ │ ├── resources
│ │ └── webapp
│ │ ├── WEB-INF
│ │ └── images
│ ├── openshift-origin-cartridge-jbossews
│ │ ├── bin
│ │ ├── env
│ │ ├── metadata
│ │ ├── template
│ │ │ ├── src
│ │ │ │ └── main
│ │ │ │ ├── java
│ │ │ │ ├── resources
│ │ │ │ └── webapp
│ │ │ │ ├── WEB-INF
│ │ │ │ └── images
│ │ │ └── webapps
│ │ └── usr
│ │ └── versions
│ │ ├── 1.0
│ │ │ └── configuration
│ │ ├── 2.0
│ │ │ └── configuration
│ │ └── shared
│ │ └── configuration
│ ├── openshift-origin-cartridge-jenkins
│ │ ├── bin
│ │ ├── configuration
│ │ │ ├── plugins
│ │ │ ├── userContent
│ │ │ └── users
│ │ │ ├── admin
│ │ │ └── system_builder
│ │ ├── env
│ │ ├── metadata
│ │ └── usr
│ │ ├── lib
│ │ └── template
│ ├── openshift-origin-cartridge-jenkins-client
│ │ ├── bin
│ │ ├── configuration
│ │ └── metadata
│ ├── openshift-origin-cartridge-mariadb
│ │ ├── bin
│ │ ├── conf
│ │ ├── env
│ │ ├── hooks
│ │ ├── lib
│ │ └── metadata
│ ├── openshift-origin-cartridge-mock
│ │ ├── bin
│ │ ├── conf
│ │ ├── conf.d
│ │ ├── env
│ │ ├── metadata
│ │ ├── template
│ │ └── usr
│ │ └── bin
│ ├── openshift-origin-cartridge-mock-plugin
│ │ ├── bin
│ │ ├── conf
│ │ ├── conf.d
│ │ ├── env
│ │ ├── hooks
│ │ ├── metadata
│ │ └── usr
│ ├── openshift-origin-cartridge-mongodb
│ │ ├── bin
│ │ ├── conf
│ │ ├── env
│ │ ├── hooks
│ │ └── metadata
│ ├── openshift-origin-cartridge-mysql
│ │ ├── bin
│ │ ├── conf
│ │ ├── env
│ │ ├── hooks
│ │ ├── lib
│ │ └── metadata
│ ├── openshift-origin-cartridge-nodejs
│ │ ├── bin
│ │ ├── env
│ │ ├── lib
│ │ ├── logs
│ │ ├── metadata
│ │ ├── usr
│ │ │ └── template
│ │ │ └── node_modules
│ │ └── versions
│ │ ├── 0.10 -> shared/
│ │ ├── 0.6 -> shared/
│ │ └── shared
│ │ ├── configuration
│ │ └── etc
│ │ └── conf.d
│ ├── openshift-origin-cartridge-perl
│ │ ├── bin
│ │ ├── env
│ │ ├── logs
│ │ ├── metadata
│ │ ├── run
│ │ ├── usr
│ │ │ ├── etc
│ │ │ │ └── conf.d
│ │ │ ├── lib
│ │ │ └── template
│ │ └── versions
│ │ ├── 5.10
│ │ │ └── etc -> ../shared/etc/
│ │ └── shared
│ │ └── etc
│ │ ├── conf
│ │ └── conf.d
│ ├── openshift-origin-cartridge-php
│ │ ├── bin
│ │ ├── env
│ │ ├── metadata
│ │ └── usr
│ │ ├── 5.3
│ │ │ └── etc
│ │ │ └── php.d
│ │ ├── 5.4
│ │ │ └── etc
│ │ │ ├── conf.d
│ │ │ └── php.d
│ │ ├── bin
│ │ ├── lib
│ │ ├── shared
│ │ │ └── etc
│ │ │ ├── conf
│ │ │ └── conf.d
│ │ └── template
│ ├── openshift-origin-cartridge-phpmyadmin
│ │ ├── bin
│ │ ├── env
│ │ ├── metadata
│ │ ├── usr
│ │ │ └── html
│ │ └── versions
│ │ ├── 3
│ │ │ ├── conf -> ../shared/conf
│ │ │ ├── conf.d -> ../shared/conf.d
│ │ │ └── phpMyAdmin -> ../shared/phpMyAdmin
│ │ ├── 3.4
│ │ │ ├── conf -> ../shared/conf
│ │ │ ├── conf.d -> ../shared/conf.d
│ │ │ └── phpMyAdmin -> ../shared/phpMyAdmin
│ │ ├── 4
│ │ │ ├── conf -> ../shared/conf
│ │ │ ├── conf.d -> ../shared/conf.d
│ │ │ └── phpMyAdmin -> ../shared/phpMyAdmin
│ │ └── shared
│ │ ├── conf
│ │ ├── conf.d
│ │ └── phpMyAdmin
│ ├── openshift-origin-cartridge-postgresql
│ │ ├── bin
│ │ ├── env
│ │ ├── hooks
│ │ ├── lib
│ │ ├── metadata
│ │ ├── template
│ │ └── versions
│ │ ├── 8.4
│ │ │ └── conf
│ │ ├── 9.2
│ │ │ └── conf
│ │ └── shared
│ │ └── conf
│ ├── openshift-origin-cartridge-python
│ │ ├── bin
│ │ ├── env
│ │ ├── logs
│ │ ├── metadata
│ │ ├── run
│ │ └── usr
│ │ └── versions
│ │ ├── 2.7-scl
│ │ │ ├── bin
│ │ │ ├── etc
│ │ │ │ └── conf.d
│ │ │ └── lib
│ │ ├── 3.3-scl
│ │ │ ├── bin
│ │ │ ├── etc
│ │ │ │ └── conf.d
│ │ │ ├── lib
│ │ │ ├── metadata
│ │ │ └── template
│ │ └── shared
│ │ ├── bin
│ │ ├── etc
│ │ │ ├── conf
│ │ │ └── conf.d
│ │ ├── lib
│ │ ├── metadata
│ │ └── template
│ ├── openshift-origin-cartridge-ruby
│ │ ├── bin
│ │ ├── env
│ │ ├── lib
│ │ ├── logs
│ │ ├── metadata
│ │ ├── run
│ │ └── versions
│ │ ├── 1.8
│ │ │ ├── etc
│ │ │ │ ├── conf -> ../../shared/etc/conf
│ │ │ │ └── conf.d
│ │ │ └── template
│ │ │ ├── public -> ../../shared/template/public/
│ │ │ └── tmp -> ../../shared/template/tmp/
│ │ ├── 1.9
│ │ │ ├── etc
│ │ │ │ ├── conf -> ../../shared/etc/conf
│ │ │ │ └── conf.d
│ │ │ └── template
│ │ │ ├── public -> ../../shared/template/public/
│ │ │ └── tmp -> ../../shared/template/tmp/
│ │ ├── 2.0
│ │ │ ├── etc
│ │ │ │ ├── conf -> ../../shared/etc/conf
│ │ │ │ └── conf.d
│ │ │ └── template -> ../shared/template
│ │ └── shared
│ │ ├── etc
│ │ │ ├── conf
│ │ │ └── conf.d
│ │ └── template
│ │ ├── public
│ │ └── tmp
│ └── openshift-origin-cartridge-switchyard
│ ├── bin
│ └── metadata
├── common
│ ├── bin
│ │ └── man
│ ├── lib
│ │ └── openshift-origin-common
│ │ ├── exceptions
│ │ ├── models
│ │ └── utils
│ └── test
│ └── unit
├── console
│ ├── app
│ │ ├── assets
│ │ │ ├── fonts
│ │ │ ├── images
│ │ │ │ └── console
│ │ │ ├── javascripts
│ │ │ │ └── console
│ │ │ └── stylesheets
│ │ │ └── console
│ │ │ └── rcue
│ │ ├── controllers
│ │ │ ├── console
│ │ │ │ └── auth
│ │ │ └── fixtures
│ │ ├── helpers
│ │ │ └── console
│ │ ├── models
│ │ │ └── rest_api
│ │ │ └── railties
│ │ └── views
│ │ ├── account
│ │ ├── aliases
│ │ ├── application_types
│ │ ├── applications
│ │ ├── authorizations
│ │ ├── building
│ │ ├── cartridge_types
│ │ ├── cartridges
│ │ ├── console
│ │ │ └── help
│ │ ├── domains
│ │ ├── keys
│ │ ├── layouts
│ │ │ └── console
│ │ ├── members
│ │ ├── restarts
│ │ ├── scaling
│ │ ├── settings
│ │ ├── shared
│ │ ├── storage
│ │ └── teams
│ ├── bin
│ │ └── man
│ ├── conf
│ ├── config
│ │ ├── initializers
│ │ └── locales
│ ├── lib
│ │ ├── active_resource
│ │ │ └── associations
│ │ │ └── builder
│ │ ├── console
│ │ │ ├── formtastic
│ │ │ └── rails
│ │ └── tasks
│ ├── script
│ ├── test
│ │ ├── fixtures
│ │ ├── functional
│ │ ├── integration
│ │ │ └── rest_api
│ │ ├── rails_app
│ │ │ ├── app
│ │ │ │ └── controllers
│ │ │ ├── config
│ │ │ │ ├── environments
│ │ │ │ ├── initializers
│ │ │ │ └── locales
│ │ │ ├── public
│ │ │ └── script
│ │ ├── support
│ │ └── unit
│ │ └── helpers
│ └── vendor
│ └── assets
│ └── javascripts
├── controller
│ ├── app
│ │ ├── controllers
│ │ ├── helpers
│ │ ├── models
│ │ │ ├── admin
│ │ │ │ ├── stats
│ │ │ │ └── suggestion
│ │ │ │ └── advisor
│ │ │ └── scope
│ │ ├── pending_ops_models
│ │ ├── plugin_models
│ │ ├── rest_models
│ │ └── validators
│ ├── config
│ │ └── initializers
│ ├── lib
│ │ ├── admin
│ │ │ ├── stats
│ │ │ └── suggestion
│ │ └── openshift
│ │ ├── auth
│ │ └── controller
│ └── test
│ ├── cucumber
│ │ ├── misc
│ │ │ ├── descriptor
│ │ │ └── php
│ │ ├── step_definitions
│ │ └── support
│ ├── ddns
│ ├── support
│ └── unit
├── documentation
│ ├── archive
│ ├── files
│ ├── fonts
│ ├── images
│ │ └── deployment_guide_vm
│ ├── stylesheets
│ │ └── sass
│ │ ├── fonts
│ │ └── settings
│ └── templates
├── extras
│ ├── avahi-cname-manager
│ │ ├── bin
│ │ ├── conf
│ │ ├── init.d
│ │ └── systemd
│ └── nsjoin
├── logshifter
├── msg-common
│ └── agent
├── node
│ ├── conf
│ │ └── env
│ ├── jobs
│ ├── lib
│ │ └── openshift-origin-node
│ │ ├── model
│ │ │ ├── application_container_ext
│ │ │ ├── frontend
│ │ │ │ └── http
│ │ │ │ └── plugins
│ │ │ └── watchman
│ │ └── utils
│ │ ├── cgroups
│ │ └── logger
│ ├── misc
│ │ ├── bin
│ │ ├── doc
│ │ ├── etc
│ │ ├── init
│ │ ├── libexec
│ │ │ └── lib
│ │ ├── sbin
│ │ ├── services
│ │ └── usr
│ │ └── lib
│ │ └── cartridge_sdk
│ │ ├── bash
│ │ └── ruby
│ └── test
│ ├── coverage
│ ├── gear_functional
│ ├── node_functional
│ ├── support
│ └── unit
│ ├── data
│ └── helpers
├── node-proxy
│ ├── bin
│ ├── config
│ │ ├── logrotate.d
│ │ ├── test
│ │ └── unused
│ ├── lib
│ │ ├── logger
│ │ ├── plugins
│ │ ├── proxy
│ │ └── utils
│ ├── scripts
│ │ ├── bin
│ │ ├── init.d
│ │ └── systemd
│ └── test
├── node-util
│ ├── bin
│ ├── conf
│ │ ├── oddjob
│ │ ├── sysconfig
│ │ └── watchman
│ │ └── plugins.d
│ ├── init.d
│ ├── man8
│ ├── sbin
│ ├── services
│ └── www
│ └── html
├── openshift-console
│ ├── app
│ │ ├── assets
│ │ │ ├── images
│ │ │ ├── javascripts
│ │ │ └── stylesheets
│ │ ├── controllers
│ │ ├── helpers
│ │ ├── mailers
│ │ ├── models
│ │ └── views
│ │ └── layouts
│ ├── config
│ │ ├── environments
│ │ ├── initializers
│ │ └── locales
│ ├── etc
│ │ └── openshift
│ ├── httpd
│ │ └── conf.d
│ ├── init.d
│ ├── log
│ ├── public
│ ├── script
│ ├── systemd
│ ├── test
│ │ ├── fixtures
│ │ ├── functional
│ │ ├── integration
│ │ ├── performance
│ │ └── unit
│ └── vendor
│ ├── assets
│ │ ├── javascripts
│ │ └── stylesheets
│ └── plugins
├── pam_openshift
├── plugin-examples
│ └── gear-placement
│ ├── conf
│ ├── config
│ │ └── initializers
│ └── lib
│ └── openshift
├── plugins
│ ├── auth
│ │ ├── kerberos
│ │ │ ├── app
│ │ │ │ ├── controllers
│ │ │ │ └── models
│ │ │ ├── conf
│ │ │ ├── config
│ │ │ │ └── initializers
│ │ │ ├── doc
│ │ │ └── lib
│ │ │ └── openshift
│ │ ├── mongo
│ │ │ ├── app
│ │ │ │ ├── controllers
│ │ │ │ └── models
│ │ │ ├── bin
│ │ │ ├── conf
│ │ │ ├── config
│ │ │ │ └── initializers
│ │ │ ├── doc
│ │ │ ├── lib
│ │ │ │ └── openshift
│ │ │ └── test
│ │ │ ├── dummy
│ │ │ │ ├── app
│ │ │ │ │ ├── controllers
│ │ │ │ │ ├── helpers
│ │ │ │ │ └── views
│ │ │ │ │ └── layouts
│ │ │ │ ├── config
│ │ │ │ │ ├── environments
│ │ │ │ │ ├── initializers
│ │ │ │ │ └── locales
│ │ │ │ ├── db
│ │ │ │ ├── doc
│ │ │ │ ├── lib
│ │ │ │ │ └── tasks
│ │ │ │ ├── public
│ │ │ │ │ ├── images
│ │ │ │ │ ├── javascripts
│ │ │ │ │ └── stylesheets
│ │ │ │ ├── script
│ │ │ │ ├── test
│ │ │ │ │ └── performance
│ │ │ │ └── vendor
│ │ │ │ └── plugins
│ │ │ └── functional
│ │ └── remote-user
│ │ ├── conf
│ │ ├── config
│ │ │ └── initializers
│ │ ├── doc
│ │ ├── lib
│ │ │ └── openshift
│ │ └── test
│ │ ├── dummy
│ │ │ ├── app
│ │ │ │ ├── controllers
│ │ │ │ ├── helpers
│ │ │ │ └── views
│ │ │ │ └── layouts
│ │ │ ├── config
│ │ │ │ ├── environments
│ │ │ │ ├── initializers
│ │ │ │ └── locales
│ │ │ ├── db
│ │ │ ├── doc
│ │ │ ├── lib
│ │ │ │ └── tasks
│ │ │ ├── public
│ │ │ │ ├── images
│ │ │ │ ├── javascripts
│ │ │ │ └── stylesheets
│ │ │ ├── script
│ │ │ ├── test
│ │ │ │ └── performance
│ │ │ └── vendor
│ │ │ └── plugins
│ │ ├── functional
│ │ └── unit
│ ├── container
│ │ ├── libvirt
│ │ │ ├── conf
│ │ │ ├── lib
│ │ │ │ └── openshift
│ │ │ │ └── runtime
│ │ │ │ └── containerization
│ │ │ └── misc
│ │ │ └── gear-init
│ │ └── selinux
│ │ ├── conf
│ │ └── lib
│ │ └── openshift
│ │ └── runtime
│ │ └── containerization
│ ├── dns
│ │ ├── avahi
│ │ │ ├── conf
│ │ │ ├── config
│ │ │ │ └── initializers
│ │ │ └── lib
│ │ │ └── openshift
│ │ ├── bind
│ │ │ ├── conf
│ │ │ ├── config
│ │ │ │ └── initializers
│ │ │ ├── doc
│ │ │ │ └── examples
│ │ │ └── lib
│ │ │ └── openshift
│ │ ├── nsupdate
│ │ │ ├── conf
│ │ │ ├── config
│ │ │ │ └── initializers
│ │ │ ├── lib
│ │ │ │ └── openshift
│ │ │ └── spec
│ │ │ └── unit
│ │ └── route53
│ │ ├── conf
│ │ ├── config
│ │ │ └── initializers
│ │ ├── lib
│ │ │ └── openshift
│ │ └── spec
│ │ └── unit
│ ├── frontend
│ │ ├── apache-mod-rewrite
│ │ │ ├── conf
│ │ │ ├── httpd
│ │ │ ├── lib
│ │ │ │ └── openshift
│ │ │ │ └── runtime
│ │ │ │ └── frontend
│ │ │ │ └── http
│ │ │ │ └── plugins
│ │ │ └── test
│ │ │ └── functional
│ │ ├── apache-vhost
│ │ │ ├── conf
│ │ │ ├── httpd
│ │ │ ├── lib
│ │ │ │ └── openshift
│ │ │ │ └── runtime
│ │ │ │ └── frontend
│ │ │ │ └── http
│ │ │ │ └── plugins
│ │ │ └── test
│ │ │ └── functional
│ │ ├── apachedb
│ │ │ ├── conf
│ │ │ ├── httpd
│ │ │ ├── lib
│ │ │ │ └── openshift
│ │ │ │ └── runtime
│ │ │ │ └── frontend
│ │ │ │ └── http
│ │ │ │ └── plugins
│ │ │ └── test
│ │ │ └── functional
│ │ ├── haproxy-sni-proxy
│ │ │ ├── conf
│ │ │ ├── httpd
│ │ │ ├── lib
│ │ │ │ └── openshift
│ │ │ │ └── runtime
│ │ │ │ └── frontend
│ │ │ │ └── http
│ │ │ │ └── plugins
│ │ │ ├── scripts
│ │ │ └── test
│ │ │ └── functional
│ │ └── nodejs-websocket
│ │ ├── conf
│ │ ├── lib
│ │ │ └── openshift
│ │ │ └── runtime
│ │ │ └── frontend
│ │ │ └── http
│ │ │ └── plugins
│ │ └── test
│ │ └── functional
│ ├── msg-broker
│ │ └── mcollective
│ │ ├── conf
│ │ ├── config
│ │ │ └── initializers
│ │ └── lib
│ │ └── openshift
│ ├── msg-node
│ │ └── mcollective
│ │ ├── facts
│ │ └── src
│ └── routing
│ └── activemq
│ ├── conf
│ ├── config
│ │ └── initializers
│ └── lib
│ └── openshift
├── port-proxy
│ ├── bin
│ ├── config
│ ├── init-scripts
│ └── systemd
├── rel-eng
│ ├── misc
│ └── packages
├── rsyslog-plugin
│ └── mmopenshift
├── util
└── util-scl
2. 파일 포함 프로젝트 트리
origin-server
├── CONTRIBUTING.md
├── Dockerfile
├── README.md
├── Rakefile
├── admin-console
│ ├── Gemfile
│ ├── Gemfile.lock
│ ├── LICENSE
│ ├── README.md
│ ├── Rakefile
│ ├── app
│ │ ├── assets
│ │ │ ├── images
│ │ │ │ └── admin_console
│ │ │ │ ├── favicon-32.png
│ │ │ │ ├── gear-group.svg
│ │ │ │ ├── gear-lg.svg
│ │ │ │ ├── icon-warning-sign.png
│ │ │ │ ├── loader-dark.gif
│ │ │ │ ├── openshift-logo-horizontal.svg
│ │ │ │ ├── origin-admin-console-title.png
│ │ │ │ ├── stars-trees-silhoutte.png
│ │ │ │ ├── user.svg
│ │ │ │ └── web-stack-lg.svg
│ │ │ ├── javascripts
│ │ │ │ ├── admin_console
│ │ │ │ │ ├── graph_generator.js
│ │ │ │ │ └── util.js
│ │ │ │ └── admin_console.js
│ │ │ └── stylesheets
│ │ │ ├── admin_console
│ │ │ │ ├── _buttons.scss
│ │ │ │ ├── _capacity.scss
│ │ │ │ ├── _core.scss
│ │ │ │ ├── _forms.scss
│ │ │ │ ├── _graph.scss
│ │ │ │ ├── _hero-unit.scss
│ │ │ │ ├── _labels-badges.scss
│ │ │ │ ├── _navbar.scss
│ │ │ │ ├── _progress-bars.scss
│ │ │ │ ├── _rcue.scss
│ │ │ │ ├── _responsive-utilities.scss
│ │ │ │ ├── _sprites.scss
│ │ │ │ ├── _tile.scss
│ │ │ │ ├── _tooltip.scss
│ │ │ │ ├── _type.scss
│ │ │ │ └── _variables.scss
│ │ │ └── admin_console.css.scss
│ │ ├── controllers
│ │ │ └── admin_console
│ │ │ ├── api
│ │ │ │ ├── api_controller.rb
│ │ │ │ └── search
│ │ │ │ ├── README.md
│ │ │ │ ├── applications_controller.rb
│ │ │ │ ├── districts_controller.rb
│ │ │ │ ├── domains_controller.rb
│ │ │ │ ├── usages_controller.rb
│ │ │ │ └── users_controller.rb
│ │ │ ├── application_controller.rb
│ │ │ ├── applications_controller.rb
│ │ │ ├── gears_controller.rb
│ │ │ ├── index_controller.rb
│ │ │ ├── nodes_controller.rb
│ │ │ ├── profiles_controller.rb
│ │ │ ├── rescue.rb
│ │ │ ├── search_controller.rb
│ │ │ ├── stats_controller.rb
│ │ │ ├── suggestions_controller.rb
│ │ │ └── users_controller.rb
│ │ ├── helpers
│ │ │ └── admin_console
│ │ │ ├── application_helper.rb
│ │ │ ├── capacity_planning_helper.rb
│ │ │ ├── html5_boilerplate_helper.rb
│ │ │ ├── layout_helper.rb
│ │ │ ├── statistic_generator.rb
│ │ │ └── suggestion_helper.rb
│ │ ├── models
│ │ │ └── admin_console
│ │ │ ├── application_stats.rb
│ │ │ ├── bin.rb
│ │ │ ├── cloud_user_stats.rb
│ │ │ ├── domain_stats.rb
│ │ │ └── stats.rb
│ │ └── views
│ │ ├── admin_console
│ │ │ ├── application
│ │ │ │ ├── error.html.haml
│ │ │ │ └── not_found.html.haml
│ │ │ ├── applications
│ │ │ │ └── show.html.haml
│ │ │ ├── gears
│ │ │ │ └── show.html.haml
│ │ │ ├── index
│ │ │ │ ├── _profile.html.haml
│ │ │ │ ├── _suggestions.html.haml
│ │ │ │ ├── _welcome.html.haml
│ │ │ │ └── index.html.haml
│ │ │ ├── nodes
│ │ │ │ └── show.html.haml
│ │ │ ├── profiles
│ │ │ │ └── show.html.haml
│ │ │ ├── search
│ │ │ │ └── index.html.haml
│ │ │ ├── stats
│ │ │ │ └── index.html.haml
│ │ │ ├── suggestions
│ │ │ │ ├── _base.html.haml
│ │ │ │ ├── _error.html.haml
│ │ │ │ ├── _missing_nodes.html.haml
│ │ │ │ ├── capacity
│ │ │ │ │ ├── _add.html.haml
│ │ │ │ │ └── remove
│ │ │ │ │ ├── _compact_district.html.haml
│ │ │ │ │ └── _node.html.haml
│ │ │ │ ├── config
│ │ │ │ │ ├── _fix_gear_down.html.haml
│ │ │ │ │ └── _fix_val.html.haml
│ │ │ │ └── index.html.haml
│ │ │ └── users
│ │ │ └── show.html.haml
│ │ └── layouts
│ │ ├── admin_console
│ │ │ ├── _head.html.haml
│ │ │ ├── _header.html.haml
│ │ │ ├── _identity.html.haml
│ │ │ ├── _javascripts.html.haml
│ │ │ └── _stylesheets.html.haml
│ │ └── admin_console.html.haml
│ ├── conf
│ │ └── openshift-origin-admin-console.conf
│ ├── config
│ │ ├── initializers
│ │ │ └── openshift-origin-admin-console.rb
│ │ └── routes.rb
│ ├── lib
│ │ ├── admin_console
│ │ │ ├── engine.rb
│ │ │ └── version.rb
│ │ ├── openshift-origin-admin-console.rb
│ │ └── tasks
│ │ └── admin_console_tasks.rake
│ ├── openshift-origin-admin-console.gemspec
│ ├── rubygem-openshift-origin-admin-console.spec
│ ├── script
│ │ ├── load-fake-data
│ │ └── rails
│ └── test
│ ├── admin_console_test.rb
│ ├── dummy
│ │ ├── README.rdoc
│ │ ├── Rakefile
│ │ ├── app
│ │ │ ├── assets
│ │ │ │ ├── javascripts
│ │ │ │ │ └── application.js
│ │ │ │ └── stylesheets
│ │ │ │ └── application.css
│ │ │ ├── controllers
│ │ │ │ └── application_controller.rb
│ │ │ ├── helpers
│ │ │ │ └── application_helper.rb
│ │ │ ├── mailers
│ │ │ ├── models
│ │ │ └── views
│ │ │ └── layouts
│ │ │ └── application.html.erb
│ │ ├── config
│ │ │ ├── application.rb
│ │ │ ├── boot.rb
│ │ │ ├── database.yml
│ │ │ ├── environment.rb
│ │ │ ├── environments
│ │ │ │ ├── development.rb
│ │ │ │ ├── production.rb
│ │ │ │ └── test.rb
│ │ │ ├── initializers
│ │ │ │ ├── backtrace_silencers.rb
│ │ │ │ ├── inflections.rb
│ │ │ │ ├── mime_types.rb
│ │ │ │ ├── secret_token.rb
│ │ │ │ ├── session_store.rb
│ │ │ │ └── wrap_parameters.rb
│ │ │ ├── locales
│ │ │ │ └── en.yml
│ │ │ └── routes.rb
│ │ ├── config.ru
│ │ ├── lib
│ │ │ └── assets
│ │ ├── log
│ │ ├── public
│ │ │ ├── 404.html
│ │ │ ├── 422.html
│ │ │ ├── 500.html
│ │ │ └── favicon.ico
│ │ └── script
│ │ └── rails
│ ├── fixtures
│ │ └── admin_console
│ │ ├── district_with_node_and_undistricted_node.json
│ │ ├── empty_district_and_node.json
│ │ ├── empty_node_only.json
│ │ ├── no_profiles.json
│ │ └── overactive_node.json
│ ├── functional
│ │ └── admin_console
│ │ ├── api
│ │ │ └── search
│ │ │ ├── applications_controller_test.rb
│ │ │ ├── districts_controller_test.rb
│ │ │ ├── domains_controller_test.rb
│ │ │ ├── usages_controller_test.rb
│ │ │ └── users_controller_test.rb
│ │ ├── applications_controller_test.rb
│ │ ├── gears_controller_test.rb
│ │ ├── index_controller_test.rb
│ │ ├── profiles_controller_test.rb
│ │ ├── suggestions_controller_test.rb
│ │ └── users_controller_test.rb
│ ├── integration
│ │ └── admin_console
│ │ └── web_flows_test.rb
│ ├── support
│ │ ├── base.rb
│ │ ├── capybara.rb
│ │ └── errors.rb
│ ├── test_helper.rb
│ └── unit
│ └── helpers
│ └── admin_console
│ └── home_helper_test.rb
├── broker
│ ├── COPYRIGHT
│ ├── Gemfile
│ ├── LICENSE
│ ├── README
│ ├── README.md
│ ├── Rakefile
│ ├── app
│ │ ├── controllers
│ │ │ └── application_controller.rb
│ │ └── helpers
│ │ └── application_helper.rb
│ ├── bin
│ │ └── oo-broker
│ ├── conf
│ │ ├── broker.conf
│ │ ├── plugins.d
│ │ │ └── README
│ │ └── quickstarts.json
│ ├── config
│ │ ├── application.rb
│ │ ├── boot.rb
│ │ ├── environment.rb
│ │ ├── environments
│ │ │ ├── development.rb
│ │ │ ├── production.rb
│ │ │ └── test.rb
│ │ ├── initializers
│ │ │ ├── backtrace_silencers.rb
│ │ │ ├── extended_logger.rb
│ │ │ ├── inflections.rb
│ │ │ ├── mime_types.rb
│ │ │ ├── secret_token.rb
│ │ │ └── session_store.rb
│ │ ├── mongoid.yml
│ │ └── routes.rb
│ ├── config.ru
│ ├── db
│ │ └── seeds.rb
│ ├── doc
│ │ ├── assets
│ │ │ ├── certificate.txt
│ │ │ ├── descriptions
│ │ │ │ ├── alias.html
│ │ │ │ ├── api.html
│ │ │ │ ├── application.html
│ │ │ │ ├── application.yml
│ │ │ │ ├── authorization.html
│ │ │ │ ├── cartridge.html
│ │ │ │ ├── deployment.html
│ │ │ │ ├── descriptor.html
│ │ │ │ ├── domain.html
│ │ │ │ ├── environment_variable.html
│ │ │ │ ├── gear_group.html
│ │ │ │ ├── key.html
│ │ │ │ ├── member.html
│ │ │ │ ├── quick_start.html
│ │ │ │ ├── team.html
│ │ │ │ └── user.html
│ │ │ ├── header.txt
│ │ │ ├── params.yml
│ │ │ ├── private-key.txt
│ │ │ └── ssh-key.txt
│ │ ├── bin
│ │ │ └── generate-rest-docs
│ │ └── html
│ │ ├── 16
│ │ │ ├── alias-response-createnewalias-1-6.html
│ │ │ ├── alias-response-deletealias-1-6.html
│ │ │ ├── alias-response-getalias-1-6.html
│ │ │ ├── alias-response-listapplicationaliases-1-6.html
│ │ │ ├── alias-response-updatealias-1-6.html
│ │ │ ├── api-response-apientrypoint-1-6.html
│ │ │ ├── api-response-listquickstarts-1-6.html
│ │ │ ├── api-response-searchquickstarts-1-6.html
│ │ │ ├── application-response-createnewapplication-1-6.html
│ │ │ ├── application-response-deleteapplication-1-6.html
│ │ │ ├── application-response-deploytheapplication-1-6.html
│ │ │ ├── application-response-forcestopapplication-1-6.html
│ │ │ ├── application-response-getapplication-1-6.html
│ │ │ ├── application-response-listapplication-1-6.html
│ │ │ ├── application-response-listapplicationsbyowner-1-6.html
│ │ │ ├── application-response-listapplicationsforadomain-1-6.html
│ │ │ ├── application-response-maketheapplicationhighlyavailable(ha)-1-6.html
│ │ │ ├── application-response-ractivateanapplicationtoaspecificdeployment-1-6.html
│ │ │ ├── application-response-reloadtheapplication-1-6.html
│ │ │ ├── application-response-resolvedns-1-6.html
│ │ │ ├── application-response-restartapplication-1-6.html
│ │ │ ├── application-response-scaledownapplication-1-6.html
│ │ │ ├── application-response-scaleupapplication-1-6.html
│ │ │ ├── application-response-startapplication-1-6.html
│ │ │ ├── application-response-stopapplication-1-6.html
│ │ │ ├── application-response-tidytheapplicationframework-1-6.html
│ │ │ ├── application-response-triggerthreaddump-1-6.html
│ │ │ ├── application-response-updateapplication-1-6.html
│ │ │ ├── authorization-response-addnewauthorization-1-6.html
│ │ │ ├── authorization-response-deleteauthorization-1-6.html
│ │ │ ├── authorization-response-getauthorization-1-6.html
│ │ │ ├── authorization-response-listauthorizations-1-6.html
│ │ │ ├── authorization-response-updateauthorization-1-6.html
│ │ │ ├── cartridge-response-addembeddedcartridge-1-6.html
│ │ │ ├── cartridge-response-deletecartridge-1-6.html
│ │ │ ├── cartridge-response-getcartridge-1-6.html
│ │ │ ├── cartridge-response-listcartridges-1-6.html
│ │ │ ├── cartridge-response-listembeddedcartridges-1-6.html
│ │ │ ├── cartridge-response-listpubliccartridges-1-6.html
│ │ │ ├── cartridge-response-reloadcartridge-1-6.html
│ │ │ ├── cartridge-response-restartcartridge-1-6.html
│ │ │ ├── cartridge-response-startcartridge-1-6.html
│ │ │ ├── cartridge-response-stopcartridge-1-6.html
│ │ │ ├── cartridge-response-updatecartridgeconfiguration-1-6.html
│ │ │ ├── deployment-response-listalldeployments-1-6.html
│ │ │ ├── deployment-response-updatedeployments(specialpermissionsisrequiredtoupdatedeployments)-1-6.html
│ │ │ ├── deployment-response-updatedeployments-1-6.html
│ │ │ ├── deployment-response-updatedeployments.specialpermissionsisrequiredtoupdatedeployments-1-6.html
│ │ │ ├── descriptor-response-getapplicationdescriptor-1-6.html
│ │ │ ├── domain-response-createnewdomain-1-6.html
│ │ │ ├── domain-response-deletedomain-1-6.html
│ │ │ ├── domain-response-getdomain-1-6.html
│ │ │ ├── domain-response-listalldomainsyouhaveaccessto-1-6.html
│ │ │ ├── domain-response-listdomains-1-6.html
│ │ │ ├── domain-response-listdomainsbyowner-1-6.html
│ │ │ ├── domain-response-updatedomain-1-6.html
│ │ │ ├── environment_variable-response-addanenvironmentvariable-1-6.html
│ │ │ ├── environment_variable-response-deleteenvironmentvariable-1-6.html
│ │ │ ├── environment_variable-response-getenvironmentvariable-1-6.html
│ │ │ ├── environment_variable-response-listallenvironmentvariables-1-6.html
│ │ │ ├── environment_variable-response-updateenvironmentvariable-1-6.html
│ │ │ ├── gear_group-response-getapplicationgeargroups-1-6.html
│ │ │ ├── key-response-addnewsshkey-1-6.html
│ │ │ ├── key-response-deletesshkey-1-6.html
│ │ │ ├── key-response-getsshkey-1-6.html
│ │ │ ├── key-response-listsshkeys-1-6.html
│ │ │ ├── key-response-updatesshkey-1-6.html
│ │ │ ├── member-response-addmember-1-6.html
│ │ │ ├── member-response-addorremoveoneormorememberstoorfromthisteam.-1-6.html
│ │ │ ├── member-response-addorremoveoneormorememberstothisdomain.-1-6.html
│ │ │ ├── member-response-deletemember-1-6.html
│ │ │ ├── member-response-getmember-1-6.html
│ │ │ ├── member-response-listmembers-1-6.html
│ │ │ ├── member-response-listmembersofthisapplication-1-6.html
│ │ │ ├── member-response-listmembersofthisdomain-1-6.html
│ │ │ ├── member-response-updatemember-1-6.html
│ │ │ ├── rest-api-1-6.html
│ │ │ ├── team-response-createnewteam-1-6.html
│ │ │ ├── team-response-getteam-1-6.html
│ │ │ ├── team-response-listallteamsyouareamemberof-1-6.html
│ │ │ ├── team-response-listteamsbyowner-1-6.html
│ │ │ ├── team-response-searchteamsbyname-1-6.html
│ │ │ └── user-response-getuserinformation-1-6.html
│ │ └── 17
│ │ ├── alias-response-createnewalias-1-7.html
│ │ ├── alias-response-deletealias-1-7.html
│ │ ├── alias-response-getalias-1-7.html
│ │ ├── alias-response-listapplicationaliases-1-7.html
│ │ ├── alias-response-updatealias-1-7.html
│ │ ├── api-response-apientrypoint-1-7.html
│ │ ├── application-response-createnewapplication-1-7.html
│ │ ├── application-response-deleteapplication-1-7.html
│ │ ├── application-response-deploytheapplication-1-7.html
│ │ ├── application-response-forcestopapplication-1-7.html
│ │ ├── application-response-getapplication-1-7.html
│ │ ├── application-response-listapplication-1-7.html
│ │ ├── application-response-listapplicationsbyowner-1-7.html
│ │ ├── application-response-listapplicationsforadomain-1-7.html
│ │ ├── application-response-maketheapplicationhighlyavailable(ha)-1-7.html
│ │ ├── application-response-reloadtheapplication-1-7.html
│ │ ├── application-response-resolvedns-1-7.html
│ │ ├── application-response-restartapplication-1-7.html
│ │ ├── application-response-scaledownapplication-1-7.html
│ │ ├── application-response-scaleupapplication-1-7.html
│ │ ├── application-response-startapplication-1-7.html
│ │ ├── application-response-stopapplication-1-7.html
│ │ ├── application-response-tidytheapplicationframework-1-7.html
│ │ ├── application-response-triggerthreaddump-1-7.html
│ │ ├── application-response-updateapplication-1-7.html
│ │ ├── authorization-response-addnewauthorization-1-7.html
│ │ ├── authorization-response-deleteauthorization-1-7.html
│ │ ├── authorization-response-getauthorization-1-7.html
│ │ ├── authorization-response-listauthorizations-1-7.html
│ │ ├── authorization-response-updateauthorization-1-7.html
│ │ ├── cartridge-response-addembeddedcartridge-1-7.html
│ │ ├── cartridge-response-deletecartridge-1-7.html
│ │ ├── cartridge-response-getcartridge-1-7.html
│ │ ├── cartridge-response-listembeddedcartridges-1-7.html
│ │ ├── cartridge-response-listpubliccartridges-1-7.html
│ │ ├── cartridge-response-reloadcartridge-1-7.html
│ │ ├── cartridge-response-restartcartridge-1-7.html
│ │ ├── cartridge-response-startcartridge-1-7.html
│ │ ├── cartridge-response-stopcartridge-1-7.html
│ │ ├── cartridge-response-updatecartridgeconfiguration-1-7.html
│ │ ├── deployment-response-listalldeployments-1-7.html
│ │ ├── deployment-response-updatedeployments(specialpermissionsisrequiredtoupdatedeployments)-1-7.html
│ │ ├── descriptor-response-getapplicationdescriptor-1-7.html
│ │ ├── domain-response-createnewdomain-1-7.html
│ │ ├── domain-response-getdomain-1-7.html
│ │ ├── domain-response-listalldomainsyouhaveaccessto-1-7.html
│ │ ├── domain-response-listdomainsbyowner-1-7.html
│ │ ├── environment_variable-response-addanenvironmentvariable-1-7.html
│ │ ├── environment_variable-response-deleteenvironmentvariable-1-7.html
│ │ ├── environment_variable-response-getenvironmentvariable-1-7.html
│ │ ├── environment_variable-response-listallenvironmentvariables-1-7.html
│ │ ├── environment_variable-response-updateenvironmentvariable-1-7.html
│ │ ├── gear_group-response-getapplicationgeargroups-1-7.html
│ │ ├── key-response-addnewsshkey-1-7.html
│ │ ├── key-response-deletesshkey-1-7.html
│ │ ├── key-response-getsshkey-1-7.html
│ │ ├── key-response-listsshkeys-1-7.html
│ │ ├── key-response-updatesshkey-1-7.html
│ │ ├── member-response-addmember-1-7.html
│ │ ├── member-response-addorremoveoneormorememberstoorfromthisteam.-1-7.html
│ │ ├── member-response-addorremoveoneormorememberstothisdomain.-1-7.html
│ │ ├── member-response-deletemember-1-7.html
│ │ ├── member-response-getmember-1-7.html
│ │ ├── member-response-listmembers-1-7.html
│ │ ├── member-response-listmembersofthisapplication-1-7.html
│ │ ├── member-response-listmembersofthisdomain-1-7.html
│ │ ├── member-response-updatemember-1-7.html
│ │ ├── rest-api-1-7.html
│ │ ├── team-response-createnewteam-1-7.html
│ │ ├── team-response-getteam-1-7.html
│ │ ├── team-response-listallteamsyouareamemberof-1-7.html
│ │ ├── team-response-listteamsbyowner-1-7.html
│ │ ├── team-response-searchteamsbyname-1-7.html
│ │ └── user-response-getuserinformation-1-7.html
│ ├── httpd
│ │ ├── 000002_openshift_origin_broker_proxy.conf
│ │ ├── 000002_openshift_origin_broker_servername.conf
│ │ ├── broker-scl-ruby193.conf
│ │ ├── broker.conf
│ │ ├── httpd.conf.apache-2.3
│ │ └── httpd.conf.apache-2.4
│ ├── init.d
│ │ └── openshift-broker
│ ├── lib
│ │ └── tasks
│ │ └── test_suites.rake
│ ├── misc
│ │ └── docker_broker_plugins.rb
│ ├── openshift-origin-broker.spec
│ ├── public
│ │ ├── 404.html
│ │ ├── 422.html
│ │ ├── 500.html
│ │ ├── favicon.ico
│ │ └── robots.txt
│ ├── script
│ │ ├── broker_ruby
│ │ ├── oss-bind-setup.sh
│ │ └── rails
│ ├── systemd
│ │ ├── openshift-broker.env
│ │ └── openshift-broker.service
│ ├── test
│ │ ├── coverage_helper.rb
│ │ ├── fixtures
│ │ │ └── external_manifest.yml
│ │ ├── functional
│ │ │ ├── access_controlled_test.rb
│ │ │ ├── admin_stats_db_test.rb
│ │ │ ├── alias_controller_test.rb
│ │ │ ├── alias_test.rb
│ │ │ ├── api_controller_test.rb
│ │ │ ├── app_events_controller_test.rb
│ │ │ ├── application_controller_test.rb
│ │ │ ├── application_test.rb
│ │ │ ├── authorizations_controller_test.rb
│ │ │ ├── cartridge_type_test.rb
│ │ │ ├── cartridges_controller_test.rb
│ │ │ ├── cloud_user_test.rb
│ │ │ ├── deployment_test.rb
│ │ │ ├── deployments_controller_test.rb
│ │ │ ├── descriptors_controller_test.rb
│ │ │ ├── distributed_lock_test.rb
│ │ │ ├── district_test.rb
│ │ │ ├── dns_resolvable_controller_test.rb
│ │ │ ├── domain_members_controller_test.rb
│ │ │ ├── domain_test.rb
│ │ │ ├── domains_controller_test.rb
│ │ │ ├── emb_cart_controller_test.rb
│ │ │ ├── emb_cart_events_controller_test.rb
│ │ │ ├── environment_controller_test.rb
│ │ │ ├── environment_variables_controller_test.rb
│ │ │ ├── gear_groups_controller_test.rb
│ │ │ ├── gears_controller_test.rb
│ │ │ ├── keys_controller_test.rb
│ │ │ ├── lock_test.rb
│ │ │ ├── name_server_cache_test.rb
│ │ │ ├── node_selection_test.rb
│ │ │ ├── oauth_controller_test.rb
│ │ │ ├── quickstarts_controller_test.rb
│ │ │ ├── region_test.rb
│ │ │ ├── regions_controller_test.rb
│ │ │ ├── rest_api_test.rb
│ │ │ ├── sub_user_test.rb
│ │ │ ├── team_members_controller_test.rb
│ │ │ ├── teams_controller_test.rb
│ │ │ ├── usage_model_test.rb
│ │ │ └── user_controller_test.rb
│ │ ├── functional_ext
│ │ │ ├── alias_test.rb
│ │ │ ├── app_cartridge_events_test.rb
│ │ │ ├── app_cartridges_test.rb
│ │ │ ├── app_events_test.rb
│ │ │ ├── application_test.rb
│ │ │ ├── deployment_test.rb
│ │ │ ├── domain_test.rb
│ │ │ ├── oo_admin_ctl_user_test.rb
│ │ │ ├── removed_nodes_app_fixup_test.rb
│ │ │ └── rest_api_nolinks_test.rb
│ │ ├── helpers
│ │ │ └── rest
│ │ │ ├── README.txt
│ │ │ ├── api.rb
│ │ │ ├── api_common.rb
│ │ │ ├── api_models_v1.rb
│ │ │ └── api_v1.rb
│ │ ├── test_helper.rb
│ │ └── unit
│ │ ├── admin_stats_test.rb
│ │ ├── admin_suggestion_test.rb
│ │ ├── authentication_test.rb
│ │ ├── broker_auth_test.rb
│ │ ├── cartridge_cache_test.rb
│ │ ├── cloud_user_test.rb
│ │ ├── config_test.rb
│ │ ├── group_override_test.rb
│ │ ├── helpers
│ │ │ └── admin_stats_helper.rb
│ │ ├── member_test.rb
│ │ ├── pending_ops_test.rb
│ │ ├── scope_test.rb
│ │ ├── subscription_test.rb
│ │ └── team_test.rb
│ └── tmp
│ └── cache
├── broker-util
│ ├── LICENSE
│ ├── lib
│ │ └── app_info.rb
│ ├── man
│ │ ├── oo-accept-broker.8
│ │ ├── oo-accept-broker.txt2man
│ │ ├── oo-accept-systems.8
│ │ ├── oo-accept-systems.txt2man
│ │ ├── oo-admin-broker-auth.8
│ │ ├── oo-admin-broker-cache.8
│ │ ├── oo-admin-broker-cache.txt2man
│ │ ├── oo-admin-chk.8
│ │ ├── oo-admin-chk.txt2man
│ │ ├── oo-admin-clear-pending-ops.8
│ │ ├── oo-admin-clear-pending-ops.txt2man
│ │ ├── oo-admin-ctl-app.8
│ │ ├── oo-admin-ctl-app.txt2man
│ │ ├── oo-admin-ctl-authorization.8
│ │ ├── oo-admin-ctl-authorization.txt2man
│ │ ├── oo-admin-ctl-cartridge.8
│ │ ├── oo-admin-ctl-cartridge.txt2man
│ │ ├── oo-admin-ctl-district.8
│ │ ├── oo-admin-ctl-district.txt2man
│ │ ├── oo-admin-ctl-domain.8
│ │ ├── oo-admin-ctl-domain.txt2man
│ │ ├── oo-admin-ctl-region.8
│ │ ├── oo-admin-ctl-region.txt2man
│ │ ├── oo-admin-ctl-team.8
│ │ ├── oo-admin-ctl-team.txt2man
│ │ ├── oo-admin-ctl-usage.8
│ │ ├── oo-admin-ctl-usage.txt2man
│ │ ├── oo-admin-ctl-user.8
│ │ ├── oo-admin-ctl-user.txt2man
│ │ ├── oo-admin-move.8
│ │ ├── oo-admin-move.txt2man
│ │ ├── oo-admin-repair.8
│ │ ├── oo-admin-repair.txt2man
│ │ ├── oo-admin-upgrade.8
│ │ ├── oo-admin-upgrade.txt2man
│ │ ├── oo-admin-usage.8
│ │ ├── oo-admin-usage.txt2man
│ │ ├── oo-analytics-export.8
│ │ ├── oo-analytics-export.txt2man
│ │ ├── oo-analytics-import.8
│ │ ├── oo-analytics-import.txt2man
│ │ ├── oo-app-info.8
│ │ ├── oo-app-info.txt2man
│ │ ├── oo-quarantine.8
│ │ ├── oo-quarantine.txt2man
│ │ ├── oo-register-dns.8
│ │ ├── oo-register-dns.txt2man
│ │ ├── oo-stats.8
│ │ └── oo-stats.txt2man
│ ├── oo-accept-broker
│ ├── oo-accept-systems
│ ├── oo-admin-broker-auth
│ ├── oo-admin-broker-cache
│ ├── oo-admin-chk
│ ├── oo-admin-clear-pending-ops
│ ├── oo-admin-ctl-app
│ ├── oo-admin-ctl-authorization
│ ├── oo-admin-ctl-cartridge
│ ├── oo-admin-ctl-district
│ ├── oo-admin-ctl-domain
│ ├── oo-admin-ctl-region
│ ├── oo-admin-ctl-team
│ ├── oo-admin-ctl-usage
│ ├── oo-admin-ctl-user
│ ├── oo-admin-move
│ ├── oo-admin-repair
│ ├── oo-admin-upgrade
│ ├── oo-admin-usage
│ ├── oo-analytics-export
│ ├── oo-analytics-import
│ ├── oo-app-info
│ ├── oo-quarantine
│ ├── oo-register-dns
│ ├── oo-stats
│ └── openshift-origin-broker-util.spec
├── cartridges
│ ├── dependencies
│ │ └── openshift-origin-cartridge-dependencies.spec
│ ├── openshift-origin-cartridge-10gen-mms-agent
│ │ ├── COPYRIGHT
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bin
│ │ │ ├── control
│ │ │ ├── install
│ │ │ ├── setup
│ │ │ └── teardown
│ │ ├── metadata
│ │ │ ├── managed_files.yml
│ │ │ └── manifest.yml
│ │ └── openshift-origin-cartridge-10gen-mms-agent.spec
│ ├── openshift-origin-cartridge-cron
│ │ ├── COPYRIGHT
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bin
│ │ │ ├── control
│ │ │ ├── cron_runjobs.sh
│ │ │ ├── install
│ │ │ ├── setup
│ │ │ └── teardown
│ │ ├── configuration
│ │ │ ├── frequencies
│ │ │ └── limits
│ │ ├── metadata
│ │ │ ├── managed_files.yml
│ │ │ └── manifest.yml
│ │ └── openshift-origin-cartridge-cron.spec
│ ├── openshift-origin-cartridge-diy
│ │ ├── COPYRIGHT
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bin
│ │ │ ├── control
│ │ │ └── setup
│ │ ├── configuration
│ │ │ └── etc
│ │ │ └── conf.d
│ │ │ └── openshift.conf.erb
│ │ ├── env
│ │ │ └── OPENSHIFT_DIY_LOG_DIR.erb
│ │ ├── hooks
│ │ ├── metadata
│ │ │ ├── managed_files.yml
│ │ │ └── manifest.yml
│ │ ├── openshift-origin-cartridge-diy.spec
│ │ └── usr
│ │ └── template
│ │ ├── README.md
│ │ ├── diy
│ │ │ ├── index.html
│ │ │ └── testrubyserver.rb
│ │ └── misc
│ ├── openshift-origin-cartridge-haproxy
│ │ ├── COPYRIGHT
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bin
│ │ │ ├── control
│ │ │ ├── setup
│ │ │ └── upgrade
│ │ ├── env
│ │ │ ├── OPENSHIFT_HAPROXY_LOG_DIR.erb
│ │ │ ├── OPENSHIFT_HAPROXY_PATH_ELEMENT.erb
│ │ │ └── OPENSHIFT_HAPROXY_PROXY_GEAR_TTL
│ │ ├── hooks
│ │ │ ├── publish-haproxy-status-url
│ │ │ └── set-haproxy-status-url
│ │ ├── metadata
│ │ │ ├── managed_files.yml
│ │ │ └── manifest.yml
│ │ ├── openshift-origin-cartridge-haproxy.spec
│ │ ├── usr
│ │ │ └── bin
│ │ │ ├── add-gear -> gear-scale-ctl
│ │ │ ├── disable-colocated-gears
│ │ │ ├── fix_local.sh
│ │ │ ├── gear-scale-ctl
│ │ │ ├── gear-scale-ctl.rb
│ │ │ ├── haproxy_ctld
│ │ │ ├── haproxy_ctld.rb
│ │ │ ├── remove-gear -> gear-scale-ctl
│ │ │ ├── ssh
│ │ │ └── update-cluster
│ │ └── versions
│ │ └── 1.4
│ │ └── configuration
│ │ └── haproxy.cfg.erb
│ ├── openshift-origin-cartridge-jbossas
│ │ ├── COPYRIGHT
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bin
│ │ │ ├── control
│ │ │ ├── install
│ │ │ ├── post_install
│ │ │ ├── setup
│ │ │ ├── tools
│ │ │ │ └── jboss-cli.sh
│ │ │ ├── upgrade
│ │ │ └── util
│ │ ├── env
│ │ │ ├── M2_HOME
│ │ │ ├── OPENSHIFT_JBOSSAS_JDK6
│ │ │ ├── OPENSHIFT_JBOSSAS_JDK7
│ │ │ └── OPENSHIFT_JBOSSAS_LOG_DIR.erb
│ │ ├── hooks
│ │ │ ├── publish-jboss-cluster
│ │ │ ├── publish-jboss-remoting
│ │ │ ├── set-jboss-cluster
│ │ │ └── set-jboss-remoting
│ │ ├── metadata
│ │ │ ├── jenkins_artifacts_glob.erb
│ │ │ ├── managed_files.yml
│ │ │ └── manifest.yml
│ │ ├── openshift-origin-cartridge-jbossas.spec
│ │ └── versions
│ │ └── 7
│ │ ├── bin
│ │ │ ├── standalone.conf
│ │ │ └── standalone.sh
│ │ ├── modules
│ │ │ └── postgresql_module.xml
│ │ ├── standalone
│ │ │ └── configuration
│ │ │ ├── logging.properties
│ │ │ ├── settings.base.xml
│ │ │ ├── settings.rhcloud.xml
│ │ │ └── standalone.xml
│ │ └── template
│ │ ├── README.md
│ │ ├── deployments
│ │ ├── pom.xml
│ │ └── src
│ │ └── main
│ │ ├── java
│ │ ├── resources
│ │ └── webapp
│ │ ├── WEB-INF
│ │ │ └── web.xml
│ │ ├── images
│ │ │ └── jbosscorp_logo.png
│ │ ├── index.html
│ │ └── snoop.jsp
│ ├── openshift-origin-cartridge-jbosseap
│ │ ├── COPYRIGHT
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bin
│ │ │ ├── control
│ │ │ ├── install
│ │ │ ├── post_install
│ │ │ ├── setup
│ │ │ ├── tools
│ │ │ │ └── jboss-cli.sh
│ │ │ ├── upgrade
│ │ │ └── util
│ │ ├── env
│ │ │ ├── M2_HOME
│ │ │ ├── OPENSHIFT_JBOSSEAP_JDK6
│ │ │ ├── OPENSHIFT_JBOSSEAP_JDK7
│ │ │ └── OPENSHIFT_JBOSSEAP_LOG_DIR.erb
│ │ ├── hooks
│ │ │ ├── publish-jboss-cluster
│ │ │ ├── publish-jboss-remoting
│ │ │ ├── set-jboss-cluster
│ │ │ └── set-jboss-remoting
│ │ ├── metadata
│ │ │ ├── jenkins_artifacts_glob.erb
│ │ │ ├── managed_files.yml
│ │ │ └── manifest.yml
│ │ ├── openshift-origin-cartridge-jbosseap.spec
│ │ └── versions
│ │ ├── 6
│ │ │ ├── bin -> ../shared/bin
│ │ │ ├── modules -> ../shared/modules
│ │ │ ├── standalone -> ../shared/standalone
│ │ │ └── template -> ../shared/template
│ │ └── shared
│ │ ├── bin
│ │ │ ├── product.conf
│ │ │ ├── standalone.conf
│ │ │ └── standalone.sh
│ │ ├── modules
│ │ │ ├── mysql_module.xml
│ │ │ └── postgresql_module.xml
│ │ ├── standalone
│ │ │ └── configuration
│ │ │ ├── logging.properties
│ │ │ ├── settings.base.xml
│ │ │ ├── settings.rhcloud.xml
│ │ │ └── standalone.xml
│ │ └── template
│ │ ├── README.md
│ │ ├── deployments
│ │ ├── pom.xml
│ │ └── src
│ │ └── main
│ │ ├── java
│ │ ├── resources
│ │ └── webapp
│ │ ├── WEB-INF
│ │ │ └── web.xml
│ │ ├── health.jsp
│ │ ├── images
│ │ │ └── jbosscorp_logo.png
│ │ ├── index.html
│ │ └── snoop.jsp
│ ├── openshift-origin-cartridge-jbossews
│ │ ├── COPYRIGHT
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bin
│ │ │ ├── build
│ │ │ ├── control
│ │ │ ├── deploy
│ │ │ ├── install
│ │ │ ├── post_install
│ │ │ ├── setup
│ │ │ ├── tomcat
│ │ │ ├── upgrade
│ │ │ └── util
│ │ ├── env
│ │ │ ├── M2_HOME
│ │ │ ├── OPENSHIFT_JBOSSEWS_JDK6
│ │ │ ├── OPENSHIFT_JBOSSEWS_JDK7
│ │ │ └── OPENSHIFT_JBOSSEWS_LOG_DIR.erb
│ │ ├── metadata
│ │ │ ├── jenkins_artifacts_glob.erb
│ │ │ ├── managed_files.yml
│ │ │ └── manifest.yml
│ │ ├── openshift-origin-cartridge-jbossews.spec
│ │ ├── template
│ │ │ ├── README.md
│ │ │ ├── pom.xml
│ │ │ ├── src
│ │ │ │ └── main
│ │ │ │ ├── java
│ │ │ │ ├── resources
│ │ │ │ └── webapp
│ │ │ │ ├── WEB-INF
│ │ │ │ │ └── web.xml
│ │ │ │ ├── images
│ │ │ │ │ └── jbosscorp_logo.png
│ │ │ │ ├── index.html
│ │ │ │ └── snoop.jsp
│ │ │ └── webapps
│ │ └── usr
│ │ └── versions
│ │ ├── 1.0
│ │ │ └── configuration
│ │ │ ├── catalina.properties
│ │ │ ├── server.xml
│ │ │ └── web.xml
│ │ ├── 2.0
│ │ │ └── configuration
│ │ │ ├── catalina.properties
│ │ │ ├── server.xml
│ │ │ └── web.xml
│ │ └── shared
│ │ └── configuration
│ │ ├── catalina.policy
│ │ ├── context.xml
│ │ ├── logging.properties
│ │ ├── postgresql_module.xml
│ │ ├── settings.base.xml
│ │ ├── settings.prod.xml
│ │ ├── settings.rhcloud.xml
│ │ ├── settings.stg.xml
│ │ └── tomcat-users.xml
│ ├── openshift-origin-cartridge-jenkins
│ │ ├── COPYRIGHT
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bin
│ │ │ ├── control
│ │ │ ├── git_ssh_wrapper.sh
│ │ │ ├── install
│ │ │ ├── setup
│ │ │ ├── upgrade
│ │ │ └── util
│ │ ├── configuration
│ │ │ ├── config.xml
│ │ │ ├── hudson.model.UpdateCenter.xml
│ │ │ ├── nodeMonitors.xml
│ │ │ ├── org.jenkinsci.main.modules.sshd.SSHD.xml
│ │ │ ├── plugins
│ │ │ │ ├── git.hpi
│ │ │ │ └── openshift.hpi -> /usr/lib64/jenkins/openshift.hpi
│ │ │ ├── queue.xml
│ │ │ ├── userContent
│ │ │ │ └── readme.txt
│ │ │ └── users
│ │ │ ├── admin
│ │ │ │ └── config.xml
│ │ │ └── system_builder
│ │ │ └── config.xml
│ │ ├── env
│ │ │ └── OPENSHIFT_JENKINS_LOG_DIR.erb
│ │ ├── metadata
│ │ │ ├── managed_files.yml
│ │ │ └── manifest.yml
│ │ ├── openshift-origin-cartridge-jenkins.spec
│ │ └── usr
│ │ ├── lib
│ │ │ └── password-encoder.jar
│ │ └── template
│ │ └── README.md
│ ├── openshift-origin-cartridge-jenkins-client
│ │ ├── COPYRIGHT
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bin
│ │ │ ├── control
│ │ │ ├── install
│ │ │ ├── jenkins_build
│ │ │ ├── jenkins_create_job
│ │ │ ├── jenkins_job_action
│ │ │ ├── setup
│ │ │ └── teardown
│ │ ├── configuration
│ │ │ └── jenkins_job_template.xml.erb.hidden
│ │ ├── metadata
│ │ │ ├── jenkins_artifacts_glob
│ │ │ ├── jenkins_shell_command
│ │ │ ├── jenkins_shell_command_windows
│ │ │ ├── managed_files.yml
│ │ │ └── manifest.yml
│ │ └── openshift-origin-cartridge-jenkins-client.spec
│ ├── openshift-origin-cartridge-mariadb
│ │ ├── COPYRIGHT
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bin
│ │ │ ├── build
│ │ │ ├── control
│ │ │ ├── install
│ │ │ ├── post_install
│ │ │ ├── setup
│ │ │ ├── teardown
│ │ │ └── upgrade
│ │ ├── conf
│ │ │ └── my.cnf.erb
│ │ ├── env
│ │ │ ├── OPENSHIFT_MARIADB_DB_LOG_DIR.erb
│ │ │ ├── OPENSHIFT_MARIADB_DB_SOCKET.erb
│ │ │ ├── OPENSHIFT_MYSQL_DB_HOST.erb
│ │ │ ├── OPENSHIFT_MYSQL_DB_LOG_DIR.erb
│ │ │ ├── OPENSHIFT_MYSQL_DB_PORT.erb
│ │ │ └── OPENSHIFT_MYSQL_DB_SOCKET.erb
│ │ ├── hooks
│ │ │ ├── publish-db-connection-info
│ │ │ └── publish-ld-library-path-info
│ │ ├── lib
│ │ │ └── mysql_context
│ │ ├── metadata
│ │ │ ├── managed_files.yml
│ │ │ └── manifest.yml
│ │ └── openshift-origin-cartridge-mariadb.spec
│ ├── openshift-origin-cartridge-mock
│ │ ├── COPYRIGHT
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bin
│ │ │ ├── control
│ │ │ ├── install
│ │ │ ├── metrics
│ │ │ ├── mock_server.rb
│ │ │ ├── post_install
│ │ │ ├── setup
│ │ │ └── teardown
│ │ ├── conf
│ │ │ └── httpd.conf.erb
│ │ ├── conf.d
│ │ │ └── mock.conf.erb
│ │ ├── env
│ │ │ ├── OPENSHIFT_MOCK_EXAMPLE.erb
│ │ │ ├── OPENSHIFT_MOCK_PATH_ELEMENT.erb
│ │ │ └── OPENSHIFT_MOCK_SERVICE_URL.erb
│ │ ├── metadata
│ │ │ ├── managed_files.yml
│ │ │ └── manifest.yml
│ │ ├── mock.conf
│ │ ├── openshift-origin-cartridge-mock.spec
│ │ ├── template
│ │ │ └── index.html
│ │ └── usr
│ │ └── bin
│ │ └── shared-script
│ ├── openshift-origin-cartridge-mock-plugin
│ │ ├── COPYRIGHT
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bin
│ │ │ ├── control
│ │ │ ├── install
│ │ │ ├── metrics
│ │ │ ├── post_install
│ │ │ ├── setup
│ │ │ └── teardown
│ │ ├── conf
│ │ │ └── httpd.conf.erb
│ │ ├── conf.d
│ │ │ └── mock.conf.erb
│ │ ├── env
│ │ │ ├── OPENSHIFT_MOCK_PLUGIN_EXAMPLE.erb
│ │ │ └── OPENSHIFT_MOCK_PLUGIN_SERVICE_URL.erb
│ │ ├── hooks
│ │ │ └── publish-db-connection-info
│ │ ├── metadata
│ │ │ ├── managed_files.yml
│ │ │ └── manifest.yml
│ │ ├── mock-plugin.conf
│ │ ├── openshift-origin-cartridge-mock-plugin.spec
│ │ └── usr
│ │ ├── shared-script
│ │ └── sni-port
│ ├── openshift-origin-cartridge-mongodb
│ │ ├── COPYRIGHT
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bin
│ │ │ ├── control
│ │ │ ├── install
│ │ │ ├── mkjournal
│ │ │ ├── post_install
│ │ │ ├── setup
│ │ │ └── teardown
│ │ ├── conf
│ │ │ └── mongodb.conf.erb
│ │ ├── env
│ │ │ └── OPENSHIFT_MONGODB_DB_LOG_DIR.erb
│ │ ├── hooks
│ │ │ └── publish-nosql-db-connection-info
│ │ ├── metadata
│ │ │ ├── managed_files.yml
│ │ │ └── manifest.yml
│ │ └── openshift-origin-cartridge-mongodb.spec
│ ├── openshift-origin-cartridge-mysql
│ │ ├── COPYRIGHT
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bin
│ │ │ ├── control
│ │ │ ├── install
│ │ │ ├── post_install
│ │ │ ├── setup
│ │ │ ├── teardown
│ │ │ └── upgrade
│ │ ├── conf
│ │ │ └── my.cnf.erb
│ │ ├── env
│ │ │ ├── OPENSHIFT_MYSQL_DB_LOG_DIR.erb
│ │ │ └── OPENSHIFT_MYSQL_DB_SOCKET.erb
│ │ ├── hooks
│ │ │ ├── publish-db-connection-info
│ │ │ └── publish-ld-library-path-info
│ │ ├── lib
│ │ │ └── mysql_context
│ │ ├── metadata
│ │ │ ├── managed_files.yml
│ │ │ └── manifest.yml
│ │ └── openshift-origin-cartridge-mysql.spec
│ ├── openshift-origin-cartridge-nodejs
│ │ ├── COPYRIGHT
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bin
│ │ │ ├── control
│ │ │ ├── install
│ │ │ ├── setup
│ │ │ └── upgrade
│ │ ├── env
│ │ │ ├── OPENSHIFT_NODEJS_LOG_DIR.erb
│ │ │ └── OPENSHIFT_NODEJS_PID_DIR.erb
│ │ ├── lib
│ │ │ ├── nodejs_context
│ │ │ └── util
│ │ ├── logs
│ │ ├── metadata
│ │ │ ├── managed_files.yml
│ │ │ └── manifest.yml
│ │ ├── openshift-origin-cartridge-nodejs.spec
│ │ ├── usr
│ │ │ └── template
│ │ │ ├── README.md
│ │ │ ├── deplist.txt
│ │ │ ├── index.html
│ │ │ ├── node_modules
│ │ │ ├── package.json
│ │ │ └── server.js
│ │ └── versions
│ │ ├── 0.10 -> shared/
│ │ ├── 0.6 -> shared/
│ │ └── shared
│ │ ├── configuration
│ │ │ ├── node.env
│ │ │ └── npm_global_module_list
│ │ └── etc
│ │ └── conf.d
│ ├── openshift-origin-cartridge-perl
│ │ ├── COPYRIGHT
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bin
│ │ │ ├── build
│ │ │ ├── control
│ │ │ ├── install
│ │ │ ├── setup
│ │ │ └── upgrade
│ │ ├── env
│ │ │ ├── CPANMINUS_HOME.erb
│ │ │ ├── OPENSHIFT_PERL_LOG_DIR.erb
│ │ │ └── PERL5LIB.erb
│ │ ├── logs
│ │ ├── metadata
│ │ │ ├── managed_files.yml
│ │ │ └── manifest.yml
│ │ ├── openshift-origin-cartridge-perl.spec
│ │ ├── run
│ │ ├── usr
│ │ │ ├── etc
│ │ │ │ └── conf.d
│ │ │ │ └── openshift.conf.erb
│ │ │ ├── lib
│ │ │ │ └── perl_config
│ │ │ └── template
│ │ │ └── index.pl
│ │ └── versions
│ │ ├── 5.10
│ │ │ └── etc -> ../shared/etc/
│ │ └── shared
│ │ └── etc
│ │ ├── conf
│ │ │ ├── httpd.conf
│ │ │ └── httpd_nolog.conf
│ │ └── conf.d
│ │ └── openshift.conf.erb
│ ├── openshift-origin-cartridge-php
│ │ ├── COPYRIGHT
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bin
│ │ │ ├── control
│ │ │ ├── install
│ │ │ ├── setup
│ │ │ └── upgrade
│ │ ├── env
│ │ │ ├── OPENSHIFT_PHP_LOG_DIR.erb
│ │ │ ├── PHPRC.erb
│ │ │ └── PHP_INI_SCAN_DIR.erb
│ │ ├── metadata
│ │ │ ├── managed_files.yml
│ │ │ └── manifest.yml
│ │ ├── openshift-origin-cartridge-php.spec
│ │ └── usr
│ │ ├── 5.3
│ │ │ └── etc
│ │ │ └── php.d
│ │ │ ├── apc.ini.erb
│ │ │ ├── bcmath.ini
│ │ │ ├── curl.ini
│ │ │ ├── dom.ini
│ │ │ ├── fileinfo.ini
│ │ │ ├── gd.ini
│ │ │ ├── imagick.ini
│ │ │ ├── imap.ini
│ │ │ ├── intl.ini
│ │ │ ├── json.ini
│ │ │ ├── mbstring.ini
│ │ │ ├── mcrypt.ini
│ │ │ ├── memcache.ini
│ │ │ ├── mongo.ini
│ │ │ ├── mysql.ini
│ │ │ ├── mysqli.ini
│ │ │ ├── pdo.ini
│ │ │ ├── pdo_mysql.ini
│ │ │ ├── pdo_pgsql.ini
│ │ │ ├── pdo_sqlite.ini
│ │ │ ├── pgsql.ini
│ │ │ ├── phar.ini
│ │ │ ├── posix.ini
│ │ │ ├── soap.ini
│ │ │ ├── sqlite3.ini
│ │ │ ├── sysvmsg.ini
│ │ │ ├── sysvsem.ini
│ │ │ ├── sysvshm.ini
│ │ │ ├── wddx.ini
│ │ │ ├── xdebug.ini.erb
│ │ │ ├── xmlreader.ini
│ │ │ ├── xmlwriter.ini
│ │ │ ├── xsl.ini
│ │ │ └── zip.ini
│ │ ├── 5.4
│ │ │ └── etc
│ │ │ ├── conf.d
│ │ │ │ └── php.conf
│ │ │ └── php.d
│ │ │ ├── apc.ini.erb
│ │ │ ├── bcmath.ini
│ │ │ ├── curl.ini
│ │ │ ├── dom.ini
│ │ │ ├── fileinfo.ini
│ │ │ ├── gd.ini
│ │ │ ├── imagick.ini
│ │ │ ├── intl.ini
│ │ │ ├── json.ini
│ │ │ ├── ldap.ini
│ │ │ ├── mbstring.ini
│ │ │ ├── mcrypt.ini
│ │ │ ├── memcache.ini
│ │ │ ├── mongo.ini
│ │ │ ├── mysqlnd.ini
│ │ │ ├── mysqlnd_mysql.ini
│ │ │ ├── mysqlnd_mysqli.ini
│ │ │ ├── pdo.ini
│ │ │ ├── pdo_mysqlnd.ini
│ │ │ ├── pdo_pgsql.ini
│ │ │ ├── pdo_sqlite.ini
│ │ │ ├── pgsql.ini
│ │ │ ├── phar.ini
│ │ │ ├── posix.ini
│ │ │ ├── soap.ini
│ │ │ ├── sqlite3.ini
│ │ │ ├── sysvmsg.ini
│ │ │ ├── sysvsem.ini
│ │ │ ├── sysvshm.ini
│ │ │ ├── wddx.ini
│ │ │ ├── xdebug.ini.erb
│ │ │ ├── xmlreader.ini
│ │ │ ├── xmlwriter.ini
│ │ │ ├── xsl.ini
│ │ │ └── zip.ini
│ │ ├── bin
│ │ │ ├── composer -> composer.phar
│ │ │ └── composer.phar
│ │ ├── lib
│ │ │ ├── php_config
│ │ │ └── php_context
│ │ ├── shared
│ │ │ └── etc
│ │ │ ├── conf
│ │ │ │ ├── httpd.conf
│ │ │ │ └── httpd_nolog.conf
│ │ │ ├── conf.d
│ │ │ │ ├── openshift.conf.erb
│ │ │ │ ├── performance.conf.erb
│ │ │ │ └── php.conf
│ │ │ └── php.ini.erb
│ │ └── template
│ │ └── index.php
│ ├── openshift-origin-cartridge-phpmyadmin
│ │ ├── COPYRIGHT
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bin
│ │ │ ├── control
│ │ │ ├── install
│ │ │ ├── setup
│ │ │ └── teardown
│ │ ├── env
│ │ │ └── OPENSHIFT_PHPMYADMIN_LOG_DIR.erb
│ │ ├── metadata
│ │ │ ├── managed_files.yml
│ │ │ └── manifest.yml
│ │ ├── openshift-origin-cartridge-phpmyadmin.spec
│ │ ├── usr
│ │ │ └── html
│ │ │ └── page_disabled.html
│ │ └── versions
│ │ ├── 3
│ │ │ ├── conf -> ../shared/conf
│ │ │ ├── conf.d -> ../shared/conf.d
│ │ │ └── phpMyAdmin -> ../shared/phpMyAdmin
│ │ ├── 3.4
│ │ │ ├── conf -> ../shared/conf
│ │ │ ├── conf.d -> ../shared/conf.d
│ │ │ └── phpMyAdmin -> ../shared/phpMyAdmin
│ │ ├── 4
│ │ │ ├── conf -> ../shared/conf
│ │ │ ├── conf.d -> ../shared/conf.d
│ │ │ └── phpMyAdmin -> ../shared/phpMyAdmin
│ │ └── shared
│ │ ├── conf
│ │ │ ├── httpd.conf.erb
│ │ │ ├── httpd_nolog.conf.erb
│ │ │ └── php.ini.erb
│ │ ├── conf.d
│ │ │ ├── disabled_pages.conf.erb
│ │ │ ├── openshift.conf.erb
│ │ │ ├── php.conf
│ │ │ └── phpMyAdmin.conf
│ │ └── phpMyAdmin
│ │ └── config.inc.php
│ ├── openshift-origin-cartridge-postgresql
│ │ ├── COPYRIGHT
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bin
│ │ │ ├── control
│ │ │ ├── install
│ │ │ ├── post_install
│ │ │ ├── setup
│ │ │ ├── teardown
│ │ │ └── upgrade
│ │ ├── env
│ │ │ ├── OPENSHIFT_POSTGRESQL_DB_LOG_DIR.erb
│ │ │ ├── OPENSHIFT_POSTGRESQL_DB_PID.erb
│ │ │ ├── OPENSHIFT_POSTGRESQL_DB_SOCKET.erb
│ │ │ ├── PGDATA.erb
│ │ │ ├── PGDATABASE.erb
│ │ │ └── PGHOST.erb
│ │ ├── hooks
│ │ │ ├── publish-db-connection-info
│ │ │ └── publish-ld-library-path-info
│ │ ├── lib
│ │ │ └── util
│ │ ├── metadata
│ │ │ ├── managed_files.yml
│ │ │ └── manifest.yml
│ │ ├── openshift-origin-cartridge-postgresql.spec
│ │ ├── template
│ │ │ ├── README.md
│ │ │ ├── health.html
│ │ │ └── index.html
│ │ └── versions
│ │ ├── 8.4
│ │ │ └── conf
│ │ │ ├── pg_hba.conf -> ../../shared/conf/pg_hba.conf
│ │ │ ├── pgdata-template.tar.gz
│ │ │ ├── postgresql.conf.erb
│ │ │ └── psqlrc -> ../../shared/conf/psqlrc
│ │ ├── 9.2
│ │ │ └── conf
│ │ │ ├── pg_hba.conf -> ../../shared/conf/pg_hba.conf
│ │ │ ├── pgdata-template.tar.gz
│ │ │ ├── postgresql.conf.erb
│ │ │ └── psqlrc -> ../../shared/conf/psqlrc
│ │ └── shared
│ │ └── conf
│ │ ├── pg_hba.conf.erb
│ │ └── psqlrc.erb
│ ├── openshift-origin-cartridge-python
│ │ ├── COPYRIGHT
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bin
│ │ │ ├── control
│ │ │ ├── install
│ │ │ ├── setup
│ │ │ └── upgrade
│ │ ├── env
│ │ │ ├── OPENSHIFT_PYTHON_LOG_DIR.erb
│ │ │ └── PYTHON_EGG_CACHE.erb
│ │ ├── logs
│ │ ├── metadata
│ │ │ ├── managed_files.yml
│ │ │ └── manifest.yml
│ │ ├── openshift-origin-cartridge-python.spec
│ │ ├── run
│ │ └── usr
│ │ └── versions
│ │ ├── 2.7-scl
│ │ │ ├── bin
│ │ │ │ └── upgrade
│ │ │ ├── etc
│ │ │ │ └── conf.d
│ │ │ │ └── wsgi.conf
│ │ │ └── lib
│ │ │ ├── python-context
│ │ │ └── update-configuration
│ │ ├── 3.3-scl
│ │ │ ├── bin
│ │ │ │ └── upgrade
│ │ │ ├── etc
│ │ │ │ └── conf.d
│ │ │ │ └── wsgi.conf
│ │ │ ├── lib
│ │ │ │ ├── PIP_LICENSE.txt
│ │ │ │ ├── create-virtenv
│ │ │ │ ├── get-pip.py
│ │ │ │ ├── python-context
│ │ │ │ └── update-configuration
│ │ │ ├── metadata
│ │ │ │ ├── jenkins_shell_command.erb
│ │ │ │ └── rsync.excludes
│ │ │ └── template
│ │ │ └── wsgi.py
│ │ └── shared
│ │ ├── bin
│ │ │ ├── control
│ │ │ ├── install
│ │ │ └── setup
│ │ ├── etc
│ │ │ ├── conf
│ │ │ │ ├── httpd.conf
│ │ │ │ └── httpd_nolog.conf
│ │ │ └── conf.d
│ │ │ ├── openshift.conf.erb
│ │ │ ├── performance.conf.erb
│ │ │ └── wsgi.conf
│ │ ├── lib
│ │ │ ├── create-virtenv
│ │ │ ├── python-context
│ │ │ ├── python_config
│ │ │ ├── update-configuration
│ │ │ └── util
│ │ ├── metadata
│ │ │ ├── jenkins_shell_command.erb
│ │ │ └── rsync.excludes
│ │ └── template
│ │ ├── requirements.txt
│ │ ├── setup.py
│ │ └── wsgi.py
│ ├── openshift-origin-cartridge-ruby
│ │ ├── COPYRIGHT
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bin
│ │ │ ├── control
│ │ │ ├── install
│ │ │ ├── setup
│ │ │ └── upgrade
│ │ ├── env
│ │ │ ├── OPENSHIFT_RUBY_LOG_DIR.erb
│ │ │ └── PASSENGER_TEMP_DIR
│ │ ├── lib
│ │ │ ├── ruby_context
│ │ │ └── util
│ │ ├── logs
│ │ ├── metadata
│ │ │ ├── managed_files.yml
│ │ │ └── manifest.yml
│ │ ├── openshift-origin-cartridge-ruby.spec
│ │ ├── run
│ │ └── versions
│ │ ├── 1.8
│ │ │ ├── etc
│ │ │ │ ├── conf -> ../../shared/etc/conf
│ │ │ │ └── conf.d
│ │ │ │ ├── openshift.conf.erb
│ │ │ │ └── performance.conf.erb -> ../../../shared/etc/conf.d/performance.conf.erb
│ │ │ └── template
│ │ │ ├── README.md -> ../../shared/template/README.md
│ │ │ ├── config.ru
│ │ │ ├── public -> ../../shared/template/public/
│ │ │ └── tmp -> ../../shared/template/tmp/
│ │ ├── 1.9
│ │ │ ├── etc
│ │ │ │ ├── conf -> ../../shared/etc/conf
│ │ │ │ └── conf.d
│ │ │ │ ├── openshift.conf.erb
│ │ │ │ └── performance.conf.erb -> ../../../shared/etc/conf.d/performance.conf.erb
│ │ │ └── template
│ │ │ ├── README.md -> ../../shared/template/README.md
│ │ │ ├── config.ru
│ │ │ ├── public -> ../../shared/template/public/
│ │ │ └── tmp -> ../../shared/template/tmp/
│ │ ├── 2.0
│ │ │ ├── etc
│ │ │ │ ├── conf -> ../../shared/etc/conf
│ │ │ │ └── conf.d
│ │ │ │ ├── openshift.conf.erb
│ │ │ │ └── performance.conf.erb -> ../../../shared/etc/conf.d/performance.conf.erb
│ │ │ └── template -> ../shared/template
│ │ └── shared
│ │ ├── etc
│ │ │ ├── conf
│ │ │ │ ├── httpd.conf
│ │ │ │ └── httpd_nolog.conf
│ │ │ └── conf.d
│ │ │ ├── openshift.conf.erb
│ │ │ └── performance.conf.erb
│ │ └── template
│ │ ├── README.md
│ │ ├── config.ru
│ │ ├── public
│ │ └── tmp
│ └── openshift-origin-cartridge-switchyard
│ ├── COPYRIGHT
│ ├── LICENSE
│ ├── README.md
│ ├── bin
│ │ ├── control
│ │ ├── install
│ │ ├── setup
│ │ ├── teardown
│ │ └── upgrade
│ ├── metadata
│ │ ├── managed_files.yml
│ │ └── manifest.yml
│ └── openshift-origin-cartridge-switchyard.spec
├── common
│ ├── COPYRIGHT
│ ├── Gemfile
│ ├── LICENSE
│ ├── README.md
│ ├── Rakefile
│ ├── bin
│ │ ├── man
│ │ │ ├── oo-diagnostics.8
│ │ │ └── oo-diagnostics.txt2man
│ │ └── oo-diagnostics
│ ├── lib
│ │ ├── openshift-origin-common
│ │ │ ├── config.rb
│ │ │ ├── exceptions
│ │ │ │ └── oo_exception.rb
│ │ │ ├── models
│ │ │ │ ├── cartridge.rb
│ │ │ │ ├── component.rb
│ │ │ │ ├── connection.rb
│ │ │ │ ├── connector.rb
│ │ │ │ ├── endpoint.rb
│ │ │ │ ├── manifest.rb
│ │ │ │ ├── model.rb
│ │ │ │ └── scaling.rb
│ │ │ └── utils
│ │ │ ├── etc_utils.rb
│ │ │ ├── file_needs_sync.rb
│ │ │ ├── git.rb
│ │ │ └── path_utils.rb
│ │ └── openshift-origin-common.rb
│ ├── openshift-origin-common.gemspec
│ ├── rubygem-openshift-origin-common.spec
│ └── test
│ ├── coverage_helper.rb
│ ├── test_helper.rb
│ └── unit
│ ├── etc_utils_test.rb
│ └── manifest_test.rb
├── console
│ ├── COPYRIGHT
│ ├── Gemfile
│ ├── LICENSE
│ ├── README.md
│ ├── Rakefile
│ ├── app
│ │ ├── assets
│ │ │ ├── fonts
│ │ │ │ ├── OpenSans-Bold-webfont.eot
│ │ │ │ ├── OpenSans-Bold-webfont.svg
│ │ │ │ ├── OpenSans-Bold-webfont.ttf
│ │ │ │ ├── OpenSans-Bold-webfont.woff
│ │ │ │ ├── OpenSans-BoldItalic-webfont.eot
│ │ │ │ ├── OpenSans-BoldItalic-webfont.svg
│ │ │ │ ├── OpenSans-BoldItalic-webfont.ttf
│ │ │ │ ├── OpenSans-BoldItalic-webfont.woff
│ │ │ │ ├── OpenSans-ExtraBold-webfont.eot
│ │ │ │ ├── OpenSans-ExtraBold-webfont.svg
│ │ │ │ ├── OpenSans-ExtraBold-webfont.ttf
│ │ │ │ ├── OpenSans-ExtraBold-webfont.woff
│ │ │ │ ├── OpenSans-ExtraBoldItalic-webfont.eot
│ │ │ │ ├── OpenSans-ExtraBoldItalic-webfont.svg
│ │ │ │ ├── OpenSans-ExtraBoldItalic-webfont.ttf
│ │ │ │ ├── OpenSans-ExtraBoldItalic-webfont.woff
│ │ │ │ ├── OpenSans-Italic-webfont.eot
│ │ │ │ ├── OpenSans-Italic-webfont.svg
│ │ │ │ ├── OpenSans-Italic-webfont.ttf
│ │ │ │ ├── OpenSans-Italic-webfont.woff
│ │ │ │ ├── OpenSans-Light-webfont.eot
│ │ │ │ ├── OpenSans-Light-webfont.svg
│ │ │ │ ├── OpenSans-Light-webfont.ttf
│ │ │ │ ├── OpenSans-Light-webfont.woff
│ │ │ │ ├── OpenSans-LightItalic-webfont.eot
│ │ │ │ ├── OpenSans-LightItalic-webfont.svg
│ │ │ │ ├── OpenSans-LightItalic-webfont.ttf
│ │ │ │ ├── OpenSans-LightItalic-webfont.woff
│ │ │ │ ├── OpenSans-Regular-webfont.eot
│ │ │ │ ├── OpenSans-Regular-webfont.svg
│ │ │ │ ├── OpenSans-Regular-webfont.ttf
│ │ │ │ ├── OpenSans-Regular-webfont.woff
│ │ │ │ ├── OpenSans-Semibold-webfont.eot
│ │ │ │ ├── OpenSans-Semibold-webfont.svg
│ │ │ │ ├── OpenSans-Semibold-webfont.ttf
│ │ │ │ ├── OpenSans-Semibold-webfont.woff
│ │ │ │ ├── OpenSans-SemiboldItalic-webfont.eot
│ │ │ │ ├── OpenSans-SemiboldItalic-webfont.svg
│ │ │ │ ├── OpenSans-SemiboldItalic-webfont.ttf
│ │ │ │ ├── OpenSans-SemiboldItalic-webfont.woff
│ │ │ │ ├── openshift-icon.dev.svg
│ │ │ │ ├── openshift-icon.eot
│ │ │ │ ├── openshift-icon.json
│ │ │ │ ├── openshift-icon.svg
│ │ │ │ ├── openshift-icon.ttf
│ │ │ │ ├── openshift-icon.woff
│ │ │ │ ├── openshift-logos-icon.eot
│ │ │ │ ├── openshift-logos-icon.json
│ │ │ │ ├── openshift-logos-icon.svg
│ │ │ │ ├── openshift-logos-icon.ttf
│ │ │ │ └── openshift-logos-icon.woff
│ │ │ ├── images
│ │ │ │ ├── cartridge-edge.gif
│ │ │ │ ├── console
│ │ │ │ │ ├── arrow-down.png
│ │ │ │ │ └── console-sprite.png
│ │ │ │ ├── favicon-32.png
│ │ │ │ ├── favicon.ico
│ │ │ │ ├── icon-user.png
│ │ │ │ ├── icon-user.svg
│ │ │ │ ├── loader-dark.gif
│ │ │ │ ├── loader.gif
│ │ │ │ ├── logo-origin.png
│ │ │ │ ├── logo-origin.svg
│ │ │ │ ├── restart-icon.png
│ │ │ │ ├── restart16x16.png
│ │ │ │ ├── restart34.png
│ │ │ │ ├── sprite-vert.png
│ │ │ │ └── touch-icon-precomposed.png
│ │ │ ├── javascripts
│ │ │ │ ├── console
│ │ │ │ │ ├── bootstrap-collapse.js
│ │ │ │ │ ├── bootstrap-dropdown.js
│ │ │ │ │ ├── bootstrap-popover.js
│ │ │ │ │ ├── bootstrap-tab.js
│ │ │ │ │ ├── bootstrap-tooltip.js
│ │ │ │ │ ├── bootstrap-transition.js
│ │ │ │ │ ├── form.js.coffee
│ │ │ │ │ └── unobtrusive.js.coffee
│ │ │ │ └── console.js
│ │ │ └── stylesheets
│ │ │ ├── _alerts.scss
│ │ │ ├── _breadcrumbs.scss
│ │ │ ├── _buttons.scss
│ │ │ ├── _code.scss
│ │ │ ├── _component-animations.scss
│ │ │ ├── _custom.scss
│ │ │ ├── _footer.scss
│ │ │ ├── _forms.scss
│ │ │ ├── _grid.scss
│ │ │ ├── _iconfont.scss
│ │ │ ├── _input-prepend-append.scss
│ │ │ ├── _labels.scss
│ │ │ ├── _mixins.scss
│ │ │ ├── _opensans.css.scss
│ │ │ ├── _openshift-icon.css.scss
│ │ │ ├── _openshift-logos-icon.css.scss
│ │ │ ├── _override-variables.scss
│ │ │ ├── _reset.scss
│ │ │ ├── _responsive.scss
│ │ │ ├── _ribbon.scss
│ │ │ ├── _type.scss
│ │ │ ├── _utilities.scss
│ │ │ ├── _variables.scss
│ │ │ ├── account.css.scss
│ │ │ ├── common.css.scss
│ │ │ ├── console
│ │ │ │ ├── _application.scss
│ │ │ │ ├── _base.scss
│ │ │ │ ├── _breadcrumbs.scss
│ │ │ │ ├── _core.scss
│ │ │ │ ├── _dropdowns.scss
│ │ │ │ ├── _help.scss
│ │ │ │ ├── _mixins.scss
│ │ │ │ ├── _navbar.scss
│ │ │ │ ├── _popovers.scss
│ │ │ │ ├── _ribbon.scss
│ │ │ │ ├── _tables.scss
│ │ │ │ ├── _tile.scss
│ │ │ │ ├── _variables.scss
│ │ │ │ └── rcue
│ │ │ │ ├── navbar-branded.scss
│ │ │ │ └── navbar.scss
│ │ │ ├── members_form.css.scss
│ │ │ └── origin.css.scss
│ │ ├── controllers
│ │ │ ├── account_controller.rb
│ │ │ ├── aliases_controller.rb
│ │ │ ├── application_types_controller.rb
│ │ │ ├── applications_controller.rb
│ │ │ ├── async_aware.rb
│ │ │ ├── authorizations_controller.rb
│ │ │ ├── building_controller.rb
│ │ │ ├── capability_aware.rb
│ │ │ ├── cartridge_types_controller.rb
│ │ │ ├── cartridges_controller.rb
│ │ │ ├── console
│ │ │ │ ├── auth
│ │ │ │ │ ├── basic.rb
│ │ │ │ │ ├── none.rb
│ │ │ │ │ └── remote_user.rb
│ │ │ │ ├── community_aware.rb
│ │ │ │ └── rescue.rb
│ │ │ ├── console_controller.rb
│ │ │ ├── console_index_controller.rb
│ │ │ ├── cost_aware.rb
│ │ │ ├── domain_aware.rb
│ │ │ ├── domain_members_controller.rb
│ │ │ ├── domain_session_sweeper.rb
│ │ │ ├── domains_controller.rb
│ │ │ ├── fixtures
│ │ │ │ └── applications.rb
│ │ │ ├── keys_controller.rb
│ │ │ ├── members_controller.rb
│ │ │ ├── oauth_controller.rb
│ │ │ ├── restarts_controller.rb
│ │ │ ├── scaling_controller.rb
│ │ │ ├── settings_controller.rb
│ │ │ ├── sshkey_aware.rb
│ │ │ ├── sshkey_session_sweeper.rb
│ │ │ ├── storage_controller.rb
│ │ │ ├── team_aware.rb
│ │ │ ├── team_members_controller.rb
│ │ │ ├── teams_controller.rb
│ │ │ └── user_session_sweeper.rb
│ │ ├── helpers
│ │ │ └── console
│ │ │ ├── broker_helper.rb
│ │ │ ├── community_helper.rb
│ │ │ ├── console_helper.rb
│ │ │ ├── cost_helper.rb
│ │ │ ├── date_helper.rb
│ │ │ ├── errors_helper.rb
│ │ │ ├── help_helper.rb
│ │ │ ├── html5_boilerplate_helper.rb
│ │ │ ├── layout_helper.rb
│ │ │ ├── log_helper.rb
│ │ │ ├── model_helper.rb
│ │ │ └── secured_helper.rb
│ │ ├── models
│ │ │ ├── alias.rb
│ │ │ ├── application.rb
│ │ │ ├── application_associations.rb
│ │ │ ├── application_type.rb
│ │ │ ├── authorization.rb
│ │ │ ├── capabilities.rb
│ │ │ ├── cartridge.rb
│ │ │ ├── cartridge_type.rb
│ │ │ ├── domain.rb
│ │ │ ├── domain_associations.rb
│ │ │ ├── embedded.rb
│ │ │ ├── environment_variable.rb
│ │ │ ├── gear.rb
│ │ │ ├── gear_group.rb
│ │ │ ├── key.rb
│ │ │ ├── member.rb
│ │ │ ├── membership.rb
│ │ │ ├── quickstart.rb
│ │ │ ├── rest_api
│ │ │ │ ├── base.rb
│ │ │ │ ├── cacheable.rb
│ │ │ │ ├── environment.rb
│ │ │ │ ├── info.rb
│ │ │ │ ├── log_subscriber.rb
│ │ │ │ ├── oauth.rb
│ │ │ │ └── railties
│ │ │ │ └── controller_runtime.rb
│ │ │ ├── rest_api.rb
│ │ │ ├── role.rb
│ │ │ ├── team.rb
│ │ │ ├── user.rb
│ │ │ └── user_associations.rb
│ │ └── views
│ │ ├── account
│ │ │ ├── _user.html.haml
│ │ │ └── show.html.haml
│ │ ├── aliases
│ │ │ ├── _certificate_not_allowed.html.haml
│ │ │ ├── _form.html.haml
│ │ │ ├── delete.html.haml
│ │ │ ├── edit.html.haml
│ │ │ ├── index.html.haml
│ │ │ └── new.html.haml
│ │ ├── application_types
│ │ │ ├── _application_type.html.haml
│ │ │ ├── _application_type_notifications.html.haml
│ │ │ ├── _gear_size_help.html.haml
│ │ │ ├── _persisted.html.haml
│ │ │ ├── _tile.html.haml
│ │ │ ├── index.html.haml
│ │ │ ├── search.html.haml
│ │ │ └── show.html.haml
│ │ ├── applications
│ │ │ ├── _account_state.html.haml
│ │ │ ├── _application.html.haml
│ │ │ ├── _application2.html.haml
│ │ │ ├── _applications_filter.html.haml
│ │ │ ├── _cartridge_type_details.html.haml
│ │ │ ├── _cartridge_type_details_link.html.haml
│ │ │ ├── _footer.html.haml
│ │ │ ├── _name.html.haml
│ │ │ ├── delete.html.haml
│ │ │ ├── first_steps.html.haml
│ │ │ ├── get_started.html.haml
│ │ │ ├── index.html.haml
│ │ │ ├── show.html.haml
│ │ │ └── upload_key.html.haml
│ │ ├── authorizations
│ │ │ ├── _usage.html.haml
│ │ │ ├── edit.html.haml
│ │ │ ├── new.html.haml
│ │ │ └── show.html.haml
│ │ ├── building
│ │ │ ├── delete.html.haml
│ │ │ ├── new.html.haml
│ │ │ └── show.html.haml
│ │ ├── cartridge_types
│ │ │ ├── _cartridge_type.html.haml
│ │ │ ├── _cartridge_type_notifications.html.haml
│ │ │ ├── _external_cartridges_info.html.haml
│ │ │ ├── index.html.haml
│ │ │ └── show.html.haml
│ │ ├── cartridges
│ │ │ ├── next_steps.html.haml
│ │ │ └── show.html.haml
│ │ ├── console
│ │ │ ├── error.html.haml
│ │ │ ├── help
│ │ │ │ ├── _create.html.haml
│ │ │ │ ├── _engage.html.haml
│ │ │ │ ├── _learn.html.haml
│ │ │ │ └── _troubleshoot.html.haml
│ │ │ ├── help.html.haml
│ │ │ ├── not_found.html.haml
│ │ │ ├── server_unavailable.html.haml
│ │ │ └── unauthorized.html.haml
│ │ ├── domains
│ │ │ ├── _domain.html.haml
│ │ │ ├── _form.html.haml
│ │ │ ├── delete.html.haml
│ │ │ ├── edit.html.haml
│ │ │ ├── index.html.haml
│ │ │ ├── new.html.haml
│ │ │ └── show.html.haml
│ │ ├── keys
│ │ │ ├── _form.html.haml
│ │ │ ├── _simple_form.html.haml
│ │ │ └── new.html.haml
│ │ ├── layouts
│ │ │ ├── _footer.html.haml
│ │ │ ├── _head.html.haml
│ │ │ ├── console
│ │ │ │ ├── _header.html.haml
│ │ │ │ ├── _identity.html.haml
│ │ │ │ ├── _javascripts.html.haml
│ │ │ │ └── _stylesheets.html.haml
│ │ │ └── console.html.haml
│ │ ├── members
│ │ │ ├── _leave_domain_button.html.haml
│ │ │ ├── _leave_domain_form.html.haml
│ │ │ ├── _leave_team_button.html.haml
│ │ │ ├── _leave_team_form.html.haml
│ │ │ ├── _members_form.html.haml
│ │ │ ├── leave_domain.html.haml
│ │ │ └── leave_team.html.haml
│ │ ├── restarts
│ │ │ ├── _form.html.haml
│ │ │ └── show.html.haml
│ │ ├── scaling
│ │ │ ├── delete.html.haml
│ │ │ ├── new.html.haml
│ │ │ └── show.html.haml
│ │ ├── settings
│ │ │ ├── _add_domain.html.haml
│ │ │ ├── _add_key.html.haml
│ │ │ ├── _authorizations.html.haml
│ │ │ ├── _domains.html.haml
│ │ │ ├── _keys.html.haml
│ │ │ ├── _teams.html.haml
│ │ │ ├── _user.html.haml
│ │ │ └── show.html.haml
│ │ ├── shared
│ │ │ └── _tracking.html.haml
│ │ ├── storage
│ │ │ ├── _increase_storage.html.haml
│ │ │ └── show.html.haml
│ │ └── teams
│ │ ├── delete.html.haml
│ │ ├── index.html.haml
│ │ ├── new.html.haml
│ │ └── show.html.haml
│ ├── bin
│ │ ├── man
│ │ │ ├── oo-admin-console-cache.8
│ │ │ └── oo-admin-console-cache.txt2man
│ │ └── oo-admin-console-cache
│ ├── conf
│ │ ├── console.conf.example
│ │ └── openshift_console.conf
│ ├── config
│ │ ├── cartridge_types.yml
│ │ ├── compass.rb
│ │ ├── initializers
│ │ │ ├── barista_config.rb
│ │ │ ├── cache_silence.rb
│ │ │ ├── cartridge_types.rb
│ │ │ ├── console_security.rb
│ │ │ ├── date_helper.rb
│ │ │ ├── extended_logger.rb
│ │ │ ├── features.rb
│ │ │ ├── formtastic.rb
│ │ │ ├── inflections.rb
│ │ │ ├── pry_console.rb
│ │ │ ├── rest_api.rb
│ │ │ ├── sass.rb
│ │ │ ├── session_trace.rb
│ │ │ ├── singular_resources.rb
│ │ │ └── x_frame_options.rb
│ │ └── locales
│ │ └── en.yml
│ ├── config.ru
│ ├── lib
│ │ ├── active_resource
│ │ │ ├── associations
│ │ │ │ └── builder
│ │ │ │ ├── association.rb
│ │ │ │ ├── belongs_to.rb
│ │ │ │ ├── has_many.rb
│ │ │ │ └── has_one.rb
│ │ │ ├── associations.rb
│ │ │ ├── persistent_connection.rb
│ │ │ ├── persistent_http_mock.rb
│ │ │ └── reflection.rb
│ │ ├── console
│ │ │ ├── config_file.rb
│ │ │ ├── configuration.rb
│ │ │ ├── engine.rb
│ │ │ ├── formtastic
│ │ │ │ └── bootstrap_form_builder.rb
│ │ │ ├── rails
│ │ │ │ ├── app_redirector.rb
│ │ │ │ ├── filter_hash.rb
│ │ │ │ └── routes.rb
│ │ │ └── version.rb
│ │ ├── console.rb
│ │ └── tasks
│ │ ├── assets.rake
│ │ ├── stats.rake
│ │ └── test_suites.rake
│ ├── openshift-origin-console.gemspec
│ ├── opensource.sh
│ ├── rubygem-openshift-origin-console.spec
│ ├── script
│ │ └── rails
│ ├── test
│ │ ├── coverage_helper.rb
│ │ ├── fixtures
│ │ │ ├── cartridges.json
│ │ │ ├── cert.crt
│ │ │ ├── cert_key_rsa
│ │ │ ├── empty.crt
│ │ │ ├── empty_cert_key_rsa
│ │ │ └── quickstarts.csv
│ │ ├── functional
│ │ │ ├── account_controller_test.rb
│ │ │ ├── aliases_controller_test.rb
│ │ │ ├── application_types_controller_test.rb
│ │ │ ├── applications_controller_sanity_test.rb
│ │ │ ├── applications_controller_test.rb
│ │ │ ├── authorizations_controller_test.rb
│ │ │ ├── building_controller_test.rb
│ │ │ ├── cartridge_types_controller_isolation_test.rb
│ │ │ ├── cartridge_types_controller_test.rb
│ │ │ ├── cartridges_controller_test.rb
│ │ │ ├── console_auth_basic_controller_test.rb
│ │ │ ├── console_auth_remote_user_controller_test.rb
│ │ │ ├── console_index_controller_test.rb
│ │ │ ├── domain_members_controller_test.rb
│ │ │ ├── domains_controller_test.rb
│ │ │ ├── keys_controller_test.rb
│ │ │ ├── oauth_controller_test.rb
│ │ │ ├── quickstarts.json
│ │ │ ├── restarts_controller_test.rb
│ │ │ ├── scaling_controller_test.rb
│ │ │ ├── settings_controller_test.rb
│ │ │ ├── storage_controller_test.rb
│ │ │ ├── team_members_controller_test.rb
│ │ │ └── teams_controller_test.rb
│ │ ├── integration
│ │ │ ├── assets_test.rb
│ │ │ ├── help_link_test.rb
│ │ │ ├── quickstarts_test.rb
│ │ │ ├── rescue_from_test.rb
│ │ │ ├── rest_api
│ │ │ │ ├── application_test.rb
│ │ │ │ ├── authorization_test.rb
│ │ │ │ ├── cartridge_test.rb
│ │ │ │ ├── cartridge_type_test.rb
│ │ │ │ ├── custom_cart_test.rb
│ │ │ │ ├── domain_test.rb
│ │ │ │ ├── info_test.rb
│ │ │ │ ├── key_test.rb
│ │ │ │ └── membership_test.rb
│ │ │ ├── singular_resources_test.rb
│ │ │ └── static_pages_test.rb
│ │ ├── rails_app
│ │ │ ├── Rakefile
│ │ │ ├── app
│ │ │ │ └── controllers
│ │ │ │ └── application_controller.rb
│ │ │ ├── config
│ │ │ │ ├── application.rb
│ │ │ │ ├── boot.rb
│ │ │ │ ├── database.yml
│ │ │ │ ├── environment.rb
│ │ │ │ ├── environments
│ │ │ │ │ ├── development.rb
│ │ │ │ │ ├── production.rb
│ │ │ │ │ └── test.rb
│ │ │ │ ├── initializers
│ │ │ │ │ ├── auth.rb
│ │ │ │ │ ├── backtrace_silencers.rb
│ │ │ │ │ ├── inflections.rb
│ │ │ │ │ ├── mime_types.rb
│ │ │ │ │ ├── secret_token.rb
│ │ │ │ │ └── session_store.rb
│ │ │ │ ├── locales
│ │ │ │ │ └── en.yml
│ │ │ │ └── routes.rb
│ │ │ ├── config.ru
│ │ │ ├── public
│ │ │ └── script
│ │ │ └── rails
│ │ ├── support
│ │ │ ├── auth.rb
│ │ │ ├── base.rb
│ │ │ ├── capybara.rb
│ │ │ ├── errors.rb
│ │ │ ├── garbage_collection.rb
│ │ │ └── rest_api.rb
│ │ ├── test_helper.rb
│ │ └── unit
│ │ ├── active_model_compliance_test.rb
│ │ ├── async_aware_test.rb
│ │ ├── bootstrap_form_builder_test.rb
│ │ ├── capability_aware_test.rb
│ │ ├── configuration_test.rb
│ │ ├── filter_hash_test.rb
│ │ ├── helpers
│ │ │ ├── log_helper_test.rb
│ │ │ └── model_helper_test.rb
│ │ ├── overrides_test.rb
│ │ ├── rest_api_test.rb
│ │ └── singular_resources_test.rb
│ └── vendor
│ └── assets
│ └── javascripts
│ ├── MIT-LICENSE.txt
│ ├── jquery.spin.js
│ ├── jquery.ui.widget.js
│ ├── jquery_cookie.js
│ ├── jquery_placeholder.js
│ ├── jquery_validate_min.js
│ ├── modernizr.min.js
│ ├── plugins.js
│ └── typeahead_bundle_min.js
├── controller
│ ├── COPYRIGHT
│ ├── Gemfile
│ ├── LICENSE
│ ├── README.auth_plugin.md
│ ├── README.comm_plugin.md
│ ├── README.dns_plugin.md
│ ├── README.md
│ ├── README.models.md
│ ├── README.rest_api.md
│ ├── Rakefile
│ ├── app
│ │ ├── controllers
│ │ │ ├── alias_controller.rb
│ │ │ ├── api_controller.rb
│ │ │ ├── app_events_controller.rb
│ │ │ ├── application_members_controller.rb
│ │ │ ├── applications_controller.rb
│ │ │ ├── authorizations_controller.rb
│ │ │ ├── base_controller.rb
│ │ │ ├── cartridges_controller.rb
│ │ │ ├── deployments_controller.rb
│ │ │ ├── descriptors_controller.rb
│ │ │ ├── dns_resolvable_controller.rb
│ │ │ ├── domain_members_controller.rb
│ │ │ ├── domains_controller.rb
│ │ │ ├── emb_cart_controller.rb
│ │ │ ├── emb_cart_events_controller.rb
│ │ │ ├── environment_controller.rb
│ │ │ ├── environment_variables_controller.rb
│ │ │ ├── gear_groups_controller.rb
│ │ │ ├── gears_controller.rb
│ │ │ ├── keys_controller.rb
│ │ │ ├── members_controller.rb
│ │ │ ├── oauth_controller.rb
│ │ │ ├── quickstarts_controller.rb
│ │ │ ├── regions_controller.rb
│ │ │ ├── team_members_controller.rb
│ │ │ ├── teams_controller.rb
│ │ │ └── user_controller.rb
│ │ ├── helpers
│ │ │ ├── admin_helper.rb
│ │ │ ├── aged_cache.rb
│ │ │ ├── cartridge_cache.rb
│ │ │ ├── enumerator_array.rb
│ │ │ ├── mongoid_atomic_update.rb
│ │ │ ├── name_server_cache.rb
│ │ │ ├── oauth_helper.rb
│ │ │ ├── pre_and_post_condition.rb
│ │ │ ├── rest_model_helper.rb
│ │ │ └── typed_array.rb
│ │ ├── models
│ │ │ ├── ability.rb
│ │ │ ├── access_controllable.rb
│ │ │ ├── access_controlled.rb
│ │ │ ├── admin
│ │ │ │ ├── stats
│ │ │ │ │ └── maker.rb
│ │ │ │ └── suggestion
│ │ │ │ ├── advisor
│ │ │ │ │ └── capacity.rb
│ │ │ │ ├── advisor.rb
│ │ │ │ └── params.rb
│ │ │ ├── alias.rb
│ │ │ ├── application.rb
│ │ │ ├── application_ssh_key.rb
│ │ │ ├── authorization.rb
│ │ │ ├── cartridge_instance.rb
│ │ │ ├── cartridge_type.rb
│ │ │ ├── cloud_user.rb
│ │ │ ├── component_instance.rb
│ │ │ ├── component_move.rb
│ │ │ ├── component_order.rb
│ │ │ ├── component_override_spec.rb
│ │ │ ├── component_spec.rb
│ │ │ ├── connection_instance.rb
│ │ │ ├── deployment.rb
│ │ │ ├── district.rb
│ │ │ ├── domain.rb
│ │ │ ├── gear.rb
│ │ │ ├── group_change.rb
│ │ │ ├── group_instance.rb
│ │ │ ├── group_override.rb
│ │ │ ├── lock.rb
│ │ │ ├── member.rb
│ │ │ ├── membership.rb
│ │ │ ├── pending_app_op.rb
│ │ │ ├── pending_app_op_group.rb
│ │ │ ├── pending_domain_ops.rb
│ │ │ ├── pending_team_ops.rb
│ │ │ ├── pending_user_op.rb
│ │ │ ├── pending_user_op_group.rb
│ │ │ ├── port_interface.rb
│ │ │ ├── region.rb
│ │ │ ├── remote_job.rb
│ │ │ ├── result_io.rb
│ │ │ ├── role.rb
│ │ │ ├── scope
│ │ │ │ ├── application.rb
│ │ │ │ ├── domain.rb
│ │ │ │ ├── domain_builder.rb
│ │ │ │ ├── oauth_access_token.rb
│ │ │ │ ├── read.rb
│ │ │ │ ├── session.rb
│ │ │ │ ├── sso.rb
│ │ │ │ └── userinfo.rb
│ │ │ ├── scope.rb
│ │ │ ├── server.rb
│ │ │ ├── ssh_key.rb
│ │ │ ├── system_ssh_key.rb
│ │ │ ├── team.rb
│ │ │ ├── usage.rb
│ │ │ ├── usage_record.rb
│ │ │ ├── user_ssh_key.rb
│ │ │ └── zone.rb
│ │ ├── pending_ops_models
│ │ │ ├── activate_op.rb
│ │ │ ├── activate_op_group.rb
│ │ │ ├── add_alias_op.rb
│ │ │ ├── add_alias_op_group.rb
│ │ │ ├── add_broker_auth_key_op.rb
│ │ │ ├── add_broker_auth_key_op_group.rb
│ │ │ ├── add_comp_op.rb
│ │ │ ├── add_env_vars_domain_op.rb
│ │ │ ├── add_features_op_group.rb
│ │ │ ├── add_ssh_keys_user_op.rb
│ │ │ ├── add_ssh_keys_user_op_group.rb
│ │ │ ├── add_ssl_cert_op.rb
│ │ │ ├── add_ssl_cert_op_group.rb
│ │ │ ├── add_system_ssh_keys_domain_op.rb
│ │ │ ├── change_addtl_fs_gb_op.rb
│ │ │ ├── change_max_untracked_storage_op_group.rb
│ │ │ ├── change_members_domain_op.rb
│ │ │ ├── change_members_op_group.rb
│ │ │ ├── change_members_team_op.rb
│ │ │ ├── create_gear_op.rb
│ │ │ ├── create_group_instance_op.rb
│ │ │ ├── delete_app_op_group.rb
│ │ │ ├── delete_comp_op.rb
│ │ │ ├── delete_gear_op.rb
│ │ │ ├── delete_group_instance_op.rb
│ │ │ ├── deploy_op.rb
│ │ │ ├── deploy_op_group.rb
│ │ │ ├── deregister_dns_op.rb
│ │ │ ├── deregister_routing_dns_op.rb
│ │ │ ├── destroy_gear_op.rb
│ │ │ ├── execute_connections_op.rb
│ │ │ ├── execute_connections_op_group.rb
│ │ │ ├── expose_port_op.rb
│ │ │ ├── init_gear_op.rb
│ │ │ ├── make_app_ha_op_group.rb
│ │ │ ├── new_comp_op.rb
│ │ │ ├── notify_add_alias_op.rb
│ │ │ ├── notify_app_create_op.rb
│ │ │ ├── notify_app_delete_op.rb
│ │ │ ├── notify_remove_alias_op.rb
│ │ │ ├── notify_ssl_cert_add_op.rb
│ │ │ ├── notify_ssl_cert_remove_op.rb
│ │ │ ├── patch_user_env_vars_op.rb
│ │ │ ├── patch_user_env_vars_op_group.rb
│ │ │ ├── post_configure_comp_op.rb
│ │ │ ├── publish_routing_info_op.rb
│ │ │ ├── register_dns_op.rb
│ │ │ ├── register_routing_dns_op.rb
│ │ │ ├── reload_app_config_op_group.rb
│ │ │ ├── reload_comp_config_op.rb
│ │ │ ├── reload_comp_config_op_group.rb
│ │ │ ├── reload_feature_config_op_group.rb
│ │ │ ├── remove_alias_op.rb
│ │ │ ├── remove_alias_op_group.rb
│ │ │ ├── remove_comp_op.rb
│ │ │ ├── remove_env_vars_domain_op.rb
│ │ │ ├── remove_features_op_group.rb
│ │ │ ├── remove_gear_op_group.rb
│ │ │ ├── remove_ssh_keys_user_op.rb
│ │ │ ├── remove_ssh_keys_user_op_group.rb
│ │ │ ├── remove_ssl_cert_op.rb
│ │ │ ├── remove_ssl_cert_op_group.rb
│ │ │ ├── remove_system_ssh_keys_domain_op.rb
│ │ │ ├── replace_all_ssh_keys_op.rb
│ │ │ ├── replace_all_ssh_keys_op_group.rb
│ │ │ ├── resend_aliases_op.rb
│ │ │ ├── resend_ssl_certs_op.rb
│ │ │ ├── reserve_gear_uid_op.rb
│ │ │ ├── restart_app_op_group.rb
│ │ │ ├── restart_comp_op.rb
│ │ │ ├── restart_comp_op_group.rb
│ │ │ ├── restart_feature_op_group.rb
│ │ │ ├── rolling_restart_comp_op.rb
│ │ │ ├── scale_op_group.rb
│ │ │ ├── set_addtl_fs_gb_op.rb
│ │ │ ├── set_group_overrides_op.rb
│ │ │ ├── set_ha_op.rb
│ │ │ ├── start_app_op_group.rb
│ │ │ ├── start_comp_op.rb
│ │ │ ├── start_comp_op_group.rb
│ │ │ ├── start_feature_op_group.rb
│ │ │ ├── stop_app_op_group.rb
│ │ │ ├── stop_comp_op.rb
│ │ │ ├── stop_comp_op_group.rb
│ │ │ ├── stop_feature_op_group.rb
│ │ │ ├── tidy_app_op_group.rb
│ │ │ ├── tidy_comp_op.rb
│ │ │ ├── track_usage_op.rb
│ │ │ ├── unreserve_gear_uid_op.rb
│ │ │ ├── unsubscribe_connections_op.rb
│ │ │ ├── update_app_config_op.rb
│ │ │ ├── update_app_config_op_group.rb
│ │ │ ├── update_capabilities_domain_op.rb
│ │ │ ├── update_cluster_op.rb
│ │ │ ├── update_cluster_op_group.rb
│ │ │ ├── update_comp_ids.rb
│ │ │ └── update_comp_limits_op_group.rb
│ │ ├── plugin_models
│ │ │ ├── application_properties.rb
│ │ │ ├── component_properties.rb
│ │ │ ├── gear_properties.rb
│ │ │ ├── node_properties.rb
│ │ │ └── user_properties.rb
│ │ ├── rest_models
│ │ │ ├── link.rb
│ │ │ ├── message.rb
│ │ │ ├── optional_param.rb
│ │ │ ├── param.rb
│ │ │ ├── rest_alias.rb
│ │ │ ├── rest_alias15.rb
│ │ │ ├── rest_application.rb
│ │ │ ├── rest_application10.rb
│ │ │ ├── rest_application13.rb
│ │ │ ├── rest_application15.rb
│ │ │ ├── rest_authorization.rb
│ │ │ ├── rest_cartridge.rb
│ │ │ ├── rest_cartridge10.rb
│ │ │ ├── rest_cartridge16.rb
│ │ │ ├── rest_deployment.rb
│ │ │ ├── rest_domain.rb
│ │ │ ├── rest_domain10.rb
│ │ │ ├── rest_domain12.rb
│ │ │ ├── rest_domain15.rb
│ │ │ ├── rest_embedded_cartridge.rb
│ │ │ ├── rest_embedded_cartridge10.rb
│ │ │ ├── rest_embedded_cartridge15.rb
│ │ │ ├── rest_environment_variable.rb
│ │ │ ├── rest_environment_variable15.rb
│ │ │ ├── rest_gear_group.rb
│ │ │ ├── rest_gear_group15.rb
│ │ │ ├── rest_key.rb
│ │ │ ├── rest_member.rb
│ │ │ ├── rest_region.rb
│ │ │ ├── rest_reply.rb
│ │ │ ├── rest_team.rb
│ │ │ ├── rest_user.rb
│ │ │ └── rest_user10.rb
│ │ └── validators
│ │ ├── application_config_validator.rb
│ │ ├── application_metadata_validator.rb
│ │ ├── capabilities_validator.rb
│ │ └── key_type_validator.rb
│ ├── config
│ │ ├── initializers
│ │ │ ├── cache_silence.rb
│ │ │ ├── deep_dup.rb
│ │ │ ├── mongoid_overrides.rb
│ │ │ ├── oauth.rb
│ │ │ ├── pry_console.rb
│ │ │ ├── singular_resources.rb
│ │ │ ├── usage_audit_log.rb
│ │ │ └── user_action_log.rb
│ │ └── routes.rb
│ ├── lib
│ │ ├── admin
│ │ │ ├── stats
│ │ │ │ └── results.rb
│ │ │ └── suggestion
│ │ │ └── types.rb
│ │ ├── controller_engine.rb
│ │ ├── openshift
│ │ │ ├── analytics_tracker.rb
│ │ │ ├── application_container_proxy.rb
│ │ │ ├── auth
│ │ │ │ └── broker_key.rb
│ │ │ ├── auth_service.rb
│ │ │ ├── billing_service.rb
│ │ │ ├── controller
│ │ │ │ ├── action_log.rb
│ │ │ │ ├── api_behavior.rb
│ │ │ │ ├── api_responses.rb
│ │ │ │ ├── authentication.rb
│ │ │ │ ├── configuration.rb
│ │ │ │ ├── oauth.rb
│ │ │ │ ├── routing.rb
│ │ │ │ └── scope_authorization.rb
│ │ │ ├── data_store.rb
│ │ │ ├── distributed_lock.rb
│ │ │ ├── dns_service.rb
│ │ │ ├── exceptions.rb
│ │ │ ├── routing_service.rb
│ │ │ ├── syslog.rb
│ │ │ ├── usage_audit_log.rb
│ │ │ └── user_action_log.rb
│ │ └── openshift-origin-controller.rb
│ ├── openshift-origin-controller.gemspec
│ ├── rubygem-openshift-origin-controller.spec
│ └── test
│ ├── cucumber
│ │ ├── acceptance-scripts.feature
│ │ ├── application-container-proxy.feature
│ │ ├── cartridge-lifecycle-diy.feature
│ │ ├── cartridge-lifecycle-jbossas.feature
│ │ ├── cartridge-lifecycle-jbosseap.feature
│ │ ├── cartridge-lifecycle-jbossews.feature
│ │ ├── cartridge-lifecycle-jenkins.feature
│ │ ├── cartridge-lifecycle-mysql.feature
│ │ ├── cartridge-lifecycle-nodejs.feature
│ │ ├── cartridge-lifecycle-perl.feature
│ │ ├── cartridge-lifecycle-php.feature
│ │ ├── cartridge-lifecycle-python.feature
│ │ ├── cartridge-lifecycle-ruby.feature
│ │ ├── env-var-subscription.feature
│ │ ├── gear-supplementary-group.feature
│ │ ├── misc
│ │ │ ├── descriptor
│ │ │ │ └── manifest.yml
│ │ │ └── php
│ │ │ └── db_test.php
│ │ ├── platform-basic.feature
│ │ ├── platform-builds.feature
│ │ ├── platform-endpoints.feature
│ │ ├── platform-idler.feature
│ │ ├── platform-node.feature
│ │ ├── platform-oo-admin.feature
│ │ ├── platform-oo-tools.feature
│ │ ├── platform-plugin.feature
│ │ ├── platform-scalable-snapshot.feature
│ │ ├── platform-scaling.feature
│ │ ├── platform-snapshot-restore.feature
│ │ ├── platform-ssh.feature
│ │ ├── platform-upgrade.feature
│ │ ├── platform-user-ssh.feature
│ │ ├── rest-applications.feature
│ │ ├── rest-auth.feature
│ │ ├── rest-cartridge-types.feature
│ │ ├── rest-domains.feature
│ │ ├── rest-keys.feature
│ │ ├── rest-quickstarts.feature
│ │ ├── rest-workflow.feature
│ │ ├── routing.feature
│ │ ├── runtime-cartridge-diy.feature
│ │ ├── runtime-cartridge-jbossas.feature
│ │ ├── runtime-cartridge-jbosseap.feature
│ │ ├── runtime-cartridge-jenkins-client.feature
│ │ ├── runtime-cartridge-jenkins.feature
│ │ ├── runtime-cartridge-mongodb.feature
│ │ ├── runtime-cartridge-mysql.feature
│ │ ├── runtime-cartridge-nodejs.feature
│ │ ├── runtime-cartridge-perl.feature
│ │ ├── runtime-cartridge-php.feature
│ │ ├── runtime-cartridge-phpmyadmin.feature
│ │ ├── runtime-cartridge-postgresql.feature
│ │ ├── runtime-cartridge-python.feature
│ │ ├── runtime-cartridge-ruby.feature
│ │ ├── runtime-cartridge-switchyard.feature
│ │ ├── runtime-district-info.feature
│ │ ├── step_definitions
│ │ │ ├── acceptance-scripts_steps.rb
│ │ │ ├── api_steps.rb
│ │ │ ├── application-container-proxy_steps.rb
│ │ │ ├── application-estimate-steps.rb
│ │ │ ├── application_steps.rb
│ │ │ ├── cartridge-10gen-mms-agent_steps.rb
│ │ │ ├── cartridge-cron_steps.rb
│ │ │ ├── cartridge-haproxy_steps.rb
│ │ │ ├── cartridge-jboss_steps.rb
│ │ │ ├── cartridge-jenkins_steps.rb
│ │ │ ├── cartridge-lifecycle-nodejs_steps.rb
│ │ │ ├── cartridge-mock_steps.rb
│ │ │ ├── cartridge-mongodb_steps.rb
│ │ │ ├── cartridge-mysql-extended_steps.rb
│ │ │ ├── cartridge-mysql_steps.rb
│ │ │ ├── cartridge-perl_steps.rb
│ │ │ ├── cartridge-php_steps.rb
│ │ │ ├── cartridge-phpmyadmin_steps.rb
│ │ │ ├── cartridge-postgresql-extended_steps.rb
│ │ │ ├── cartridge-postgresql_steps.rb
│ │ │ ├── cartridge-python_steps.rb
│ │ │ ├── cartridge-switchyard_steps.rb
│ │ │ ├── client_steps.rb
│ │ │ ├── descriptor_step.rb
│ │ │ ├── embedded_steps.rb
│ │ │ ├── env_var_subscription_steps.rb
│ │ │ ├── idler_steps.rb
│ │ │ ├── node_steps.rb
│ │ │ ├── routing_steps.rb
│ │ │ ├── runtime-district-info_steps.rb
│ │ │ ├── runtime-extended-cartridge_steps.rb
│ │ │ ├── runtime_steps.rb
│ │ │ ├── runtime_url_steps.rb
│ │ │ └── upgrade_steps.rb
│ │ └── support
│ │ ├── 00_setup_helper.rb
│ │ ├── app_helper.rb
│ │ ├── assertions.rb
│ │ ├── cart_repo_helper.rb
│ │ ├── command_helper.rb
│ │ ├── env.rb
│ │ ├── gear_upgrade_helper.rb
│ │ ├── permissions_helper.rb
│ │ ├── process_helper.rb
│ │ ├── runtime_support.rb
│ │ ├── sql_helper.rb
│ │ ├── unused.rb
│ │ └── user_helper.rb
│ ├── ddns
│ │ ├── 1.168.192-rev.db.init
│ │ ├── HOWTO.txt
│ │ ├── Kexample.com.+157+06142.key
│ │ ├── Kexample.com.+157+06142.private
│ │ ├── authconfig.rb
│ │ ├── example.com.db.init
│ │ ├── example.com.key
│ │ ├── named.ca
│ │ ├── named.conf
│ │ ├── named.empty
│ │ ├── named.localhost
│ │ ├── named.loopback
│ │ ├── named.rfc1912.zones
│ │ ├── named.root.key
│ │ └── named_service.rb
│ ├── support
│ │ └── node_stubs.rb
│ └── unit
│ └── bind_dns_service_test.rb
├── documentation
│ ├── Gemfile
│ ├── Guardfile
│ ├── README.md
│ ├── Rakefile
│ ├── _origin_hangouts_footer.adoc
│ ├── _origin_hangouts_header.adoc
│ ├── archive
│ │ ├── api_documentation.md
│ │ ├── cgroups.md
│ │ ├── how_nodes_act_on_behalf_of_users.md
│ │ ├── install_origin_manually.md
│ │ ├── learning_openshift_origin.md
│ │ └── scaling.md
│ ├── files
│ │ ├── activemq.xml
│ │ ├── jetty-realm.properties
│ │ └── jetty.xml
│ ├── fonts
│ │ ├── sourcecodepro-regular-webfont.eot
│ │ ├── sourcecodepro-regular-webfont.svg
│ │ ├── sourcecodepro-regular-webfont.ttf
│ │ ├── sourcecodepro-regular-webfont.woff
│ │ └── stylesheet.css
│ ├── images
│ │ ├── 06_bonfire_large.jpg
│ │ ├── activemqconsole.png
│ │ ├── application_overview.png
│ │ ├── architecture_overview.png
│ │ ├── bootcamp_3_fork.jpg
│ │ ├── cert.png
│ │ ├── console-diy.png
│ │ ├── console-jboss.png
│ │ ├── console.png
│ │ ├── consoleAuth.png
│ │ ├── consoleDashboard.png
│ │ ├── db1.png
│ │ ├── db2.png
│ │ ├── deployment_guide_vm
│ │ │ ├── virtualbox_config_network_dialog.png
│ │ │ ├── virtualbox_memsize.png
│ │ │ ├── virtualbox_new_vm.png
│ │ │ ├── virtualbox_oo_console.png
│ │ │ ├── virtualbox_select_vhd.png
│ │ │ ├── virtualbox_select_vhd_create.png
│ │ │ ├── virtualbox_select_vhd_dialog.png
│ │ │ └── virtualbox_vm_prestart.png
│ │ ├── descriptors_and_gears.png
│ │ ├── firstphp.png
│ │ ├── firstphpOSE.png
│ │ ├── firstphpTime.png
│ │ ├── jbosstools1.png
│ │ ├── jbosstools2.png
│ │ ├── jbosstools3.png
│ │ ├── jbosstools4.png
│ │ ├── jbosstools5.png
│ │ ├── jbosstools6.png
│ │ ├── jbosstools7.png
│ │ ├── jbosstools8.png
│ │ ├── jenkins.png
│ │ ├── jenkins2.png
│ │ ├── jenkins3.png
│ │ ├── jenkins4.png
│ │ ├── jenkins5.png
│ │ ├── jenkins6.png
│ │ ├── jenkins7.png
│ │ ├── jenkins_build.png
│ │ ├── logo.png
│ │ ├── network.png
│ │ ├── network2.png
│ │ ├── network3.png
│ │ ├── network4.png
│ │ ├── origin_logo.png
│ │ ├── os_minimal_install.png
│ │ ├── panda.png
│ │ ├── php2.1.1.png
│ │ ├── php2.1.png
│ │ ├── php2.2.png
│ │ ├── php2.3.png
│ │ ├── php2.4.png
│ │ ├── php2.5.png
│ │ ├── php2.6.png
│ │ ├── php2.png
│ │ ├── piwik.png
│ │ ├── piwik2.png
│ │ ├── piwik3.png
│ │ ├── platform_containers.png
│ │ ├── platform_overview.png
│ │ ├── port_proxy.png
│ │ ├── quickstart.png
│ │ ├── scaledApp.png
│ │ ├── scaledApp2.png
│ │ ├── scaledApp3.png
│ │ ├── scaledApp4.png
│ │ ├── scaled_application.png
│ │ ├── simple_application_creation.png
│ │ ├── sshkeys.png
│ │ ├── tools1.png
│ │ ├── tools2.png
│ │ ├── tools3.png
│ │ ├── virt_manager_select_image.png
│ │ ├── virt_manager_start.png
│ │ ├── virt_manager_step_1.png
│ │ ├── virt_manager_step_2.png
│ │ ├── virt_manager_step_3.png
│ │ ├── virt_manager_step_4.png
│ │ └── virt_manager_vm_running.png
│ ├── index.adoc
│ ├── oo_administration_guide.adoc
│ ├── oo_build_environment_guide.adoc
│ ├── oo_cartridge_developers_guide.adoc
│ ├── oo_cartridge_guide.adoc
│ ├── oo_client_tools_installation_guide.adoc
│ ├── oo_contributors_guide.adoc
│ ├── oo_deployment_guide_comprehensive.adoc
│ ├── oo_deployment_guide_puppet.adoc
│ ├── oo_deployment_guide_vagrant.adoc
│ ├── oo_deployment_guide_vm.adoc
│ ├── oo_install_users_guide.adoc
│ ├── oo_notes_building_rpms_from_source.adoc
│ ├── oo_notes_running_a_local_ddns.adoc
│ ├── oo_system_architecture_guide.adoc
│ ├── oo_troubleshooting_guide.adoc
│ ├── oo_user_guide.adoc
│ ├── origin_hangouts.csv
│ ├── stylesheets
│ │ ├── foundation.css
│ │ ├── origin.css
│ │ └── sass
│ │ ├── fonts
│ │ │ ├── _overpass.scss
│ │ │ └── _sourcecode.scss
│ │ ├── origin.scss
│ │ └── settings
│ │ └── _origin.scss
│ └── templates
│ └── document.html.haml
├── extras
│ ├── avahi-cname-manager
│ │ ├── LICENSE
│ │ ├── README
│ │ ├── avahi-cname-manager.spec
│ │ ├── bin
│ │ │ └── avahi-cname-manager
│ │ ├── conf
│ │ │ └── cname-manager.conf
│ │ ├── init.d
│ │ │ └── avahi-cname-manager
│ │ └── systemd
│ │ ├── avahi-cname-manager.env
│ │ └── avahi-cname-manager.service
│ └── nsjoin
│ ├── Makefile
│ └── nsjoin.c
├── logshifter
│ ├── README.md
│ ├── config.go
│ ├── core_test.go
│ ├── file_writer.go
│ ├── input.go
│ ├── logshifter.spec
│ ├── main.go
│ ├── output.go
│ ├── perf_test.go
│ ├── rm_roller.go
│ ├── shifter.go
│ ├── size_roll_detector.go
│ ├── size_roll_detector_test.go
│ ├── syslog_writer.go
│ └── test_support.go
├── msg-common
│ ├── agent
│ │ └── openshift.ddl
│ └── openshift-origin-msg-common.spec
├── node
│ ├── COPYRIGHT
│ ├── Gemfile
│ ├── LICENSE
│ ├── README.md
│ ├── README.node_module_design.md
│ ├── README.writing_applications.md
│ ├── README.writing_cartridges.md
│ ├── Rakefile
│ ├── conf
│ │ ├── env
│ │ │ ├── OPENSHIFT_BROKER_HOST
│ │ │ ├── OPENSHIFT_CLOUD_DOMAIN
│ │ │ ├── OPENSHIFT_UMASK
│ │ │ └── PATH
│ │ ├── iptables.filter.rules
│ │ ├── iptables.nat.rules
│ │ ├── logshifter.conf
│ │ ├── node.conf
│ │ └── resource_limits.conf
│ ├── jobs
│ │ ├── 1minutely
│ │ ├── openshift-origin-cron-daily
│ │ ├── openshift-origin-cron-hourly
│ │ ├── openshift-origin-cron-minutely
│ │ ├── openshift-origin-cron-monthly
│ │ ├── openshift-origin-cron-weekly
│ │ └── openshift-origin-stale-lockfiles
│ ├── lib
│ │ ├── openshift-origin-node
│ │ │ ├── config.rb
│ │ │ ├── environment.rb
│ │ │ ├── model
│ │ │ │ ├── application_container.rb
│ │ │ │ ├── application_container_ext
│ │ │ │ │ ├── cartridge_actions.rb
│ │ │ │ │ ├── deployments.rb
│ │ │ │ │ ├── environment.rb
│ │ │ │ │ ├── kerberos.rb
│ │ │ │ │ ├── metrics.rb
│ │ │ │ │ ├── setup.rb
│ │ │ │ │ ├── snapshots.rb
│ │ │ │ │ └── ssh_authorized_keys.rb
│ │ │ │ ├── application_repository.rb
│ │ │ │ ├── cartridge_repository.rb
│ │ │ │ ├── deployment_metadata.rb
│ │ │ │ ├── frontend
│ │ │ │ │ └── http
│ │ │ │ │ └── plugins
│ │ │ │ │ └── frontend_http_base.rb
│ │ │ │ ├── frontend_httpd.rb
│ │ │ │ ├── frontend_proxy.rb
│ │ │ │ ├── gear_registry.rb
│ │ │ │ ├── node.rb
│ │ │ │ ├── pub_sub_connector.rb
│ │ │ │ ├── upgrade.rb
│ │ │ │ ├── v2_cart_model.rb
│ │ │ │ └── watchman
│ │ │ │ └── watchman_plugin.rb
│ │ │ ├── utils
│ │ │ │ ├── application_state.rb
│ │ │ │ ├── cgroups
│ │ │ │ │ ├── README_libcgroup.md
│ │ │ │ │ └── libcgroup.rb
│ │ │ │ ├── cgroups.rb
│ │ │ │ ├── environ.rb
│ │ │ │ ├── hourglass.rb
│ │ │ │ ├── logger
│ │ │ │ │ ├── logger_support.rb
│ │ │ │ │ ├── null_logger.rb
│ │ │ │ │ ├── split_trace_logger.rb
│ │ │ │ │ ├── stderr_logger.rb
│ │ │ │ │ ├── stdout_logger.rb
│ │ │ │ │ └── syslog_logger.rb
│ │ │ │ ├── managed_files.rb
│ │ │ │ ├── metrics_helper.rb
│ │ │ │ ├── node_logger.rb
│ │ │ │ ├── sanitize.rb
│ │ │ │ ├── sdk.rb
│ │ │ │ ├── selinux.rb
│ │ │ │ ├── selinux_context.rb
│ │ │ │ ├── shell_exec.rb
│ │ │ │ ├── tc.rb
│ │ │ │ ├── threads.rb
│ │ │ │ ├── upgrade_itinerary.rb
│ │ │ │ └── upgrade_progress.rb
│ │ │ └── version.rb
│ │ └── openshift-origin-node.rb
│ ├── misc
│ │ ├── bin
│ │ │ ├── gear
│ │ │ ├── oo-cgroup-disable
│ │ │ ├── oo-cgroup-enable
│ │ │ ├── oo-cgroup-read
│ │ │ ├── oo-cgroup-reclassify
│ │ │ ├── oo-cgroup-template
│ │ │ ├── oo-devel-node
│ │ │ ├── oo-frontend-plugin-modify
│ │ │ ├── oo-get-mcs-level
│ │ │ ├── oo-iptables-port-proxy
│ │ │ ├── oo-pam-disable
│ │ │ ├── oo-pam-enable
│ │ │ ├── oo-scheduled-jobs
│ │ │ ├── oo-ssh
│ │ │ ├── oo-trap-user
│ │ │ └── rhcsh
│ │ ├── doc
│ │ │ └── cgconfig.conf
│ │ ├── etc
│ │ │ ├── openshift-origin-node.logrotate.service
│ │ │ ├── openshift-origin-node.logrotate.systemd
│ │ │ ├── openshift-run.conf
│ │ │ └── system-config-firewall-compat
│ │ ├── init
│ │ │ ├── openshift-iptables-port-proxy
│ │ │ └── openshift-tc
│ │ ├── libexec
│ │ │ └── lib
│ │ │ ├── archive_git_submodules.sh
│ │ │ └── quota_attrs.sh
│ │ ├── sbin
│ │ │ ├── oo-admin-ctl-iptables-port-proxy
│ │ │ └── oo-admin-ctl-tc
│ │ ├── services
│ │ │ ├── openshift-iptables-port-proxy.service
│ │ │ └── openshift-tc.service
│ │ └── usr
│ │ └── lib
│ │ └── cartridge_sdk
│ │ ├── bash
│ │ │ └── sdk
│ │ └── ruby
│ │ └── sdk.rb
│ ├── openshift-origin-node.gemspec
│ ├── rubygem-openshift-origin-node.spec
│ └── test
│ ├── coverage
│ ├── coverage_helper.rb
│ ├── gear_functional
│ │ ├── application_repository_func_test.rb
│ │ ├── application_state_func_test.rb
│ │ ├── bash_sdk_test.rb
│ │ ├── metrics_func_test.rb
│ │ ├── multi_ha_func_test.rb
│ │ ├── platform_binary_deploy_test.rb
│ │ ├── platform_deploy_ext_test.rb
│ │ ├── platform_deployment_integrity_test.rb
│ │ ├── scaling_func_test.rb
│ │ ├── v2_cart_model_func_test.rb
│ │ └── version_func_test.rb
│ ├── node_functional
│ │ ├── application_container_func_test.rb
│ │ ├── cached_config_func_test.rb
│ │ ├── cartridge_repository_func_test.rb
│ │ ├── cartridge_repository_web_func_test.rb
│ │ ├── deployment_metadata_func_test.rb
│ │ ├── jboss_plugin_test.rb
│ │ ├── node_func_test.rb
│ │ ├── path_utils_test.rb
│ │ ├── shell_exec_func_test.rb
│ │ ├── syslog_plugin_test.rb
│ │ ├── tc_func_test.rb
│ │ ├── unix_user_func_test.rb
│ │ └── watchman_func_test.rb
│ ├── support
│ │ ├── deployment_tester.rb
│ │ ├── functional_api.rb
│ │ └── support.rb
│ ├── test_helper.rb
│ └── unit
│ ├── application_container_test.rb
│ ├── application_state_test.rb
│ ├── build_lifecycle_test.rb
│ ├── cartridge_repository_test.rb
│ ├── cgroup_test.rb
│ ├── data
│ │ ├── k5login_test_modify_read
│ │ ├── krb5.conf-k5login_directory
│ │ └── ssh_authorized_keys_init
│ ├── deployments_test.rb
│ ├── env_plugin_test.rb
│ ├── environ_test.rb
│ ├── frontend_httpd_test.rb
│ ├── frontend_proxy_test.rb
│ ├── gear_registry_test.rb
│ ├── gear_state_plugin_test.rb
│ ├── helpers
│ │ ├── test_bash_sdk_version_gt.sh
│ │ ├── test_bash_sdk_version_in_range.sh
│ │ └── test_bash_sdk_version_lt.sh
│ ├── kerberos.rb
│ ├── managed_files_test.rb
│ ├── metrics_helper_test.rb
│ ├── metrics_plugin_test.rb
│ ├── metrics_test.rb
│ ├── monitored_gear_test.rb
│ ├── node_test.rb
│ ├── oom_plugin_test.rb
│ ├── openshift_test.rb
│ ├── sanitize_test.rb
│ ├── sdk_test.rb
│ ├── selinux_context_test.rb
│ ├── ssh_authorized_keys.rb
│ ├── throttler_plugin_test.rb
│ ├── throttler_test.rb
│ ├── upgrade_test.rb
│ └── v2_cart_model_test.rb
├── node-proxy
│ ├── LICENSE
│ ├── README
│ ├── TODOs
│ ├── bin
│ │ └── web-proxy.js
│ ├── config
│ │ ├── logrotate.d
│ │ │ ├── openshift-node-web-proxy.service
│ │ │ └── openshift-node-web-proxy.systemd
│ │ ├── test
│ │ │ ├── config.json
│ │ │ └── routes-vhost.json
│ │ ├── unused
│ │ │ └── config.router.json
│ │ └── web-proxy-config.json
│ ├── index.js
│ ├── lib
│ │ ├── logger
│ │ │ ├── Logger.js
│ │ │ └── log-constants.js
│ │ ├── node-proxy.js
│ │ ├── plugins
│ │ │ └── ws-request-logger.js
│ │ ├── proxy
│ │ │ ├── ProxyRoutes.js
│ │ │ └── ProxyServer.js
│ │ └── utils
│ │ ├── constants.js
│ │ ├── date-utils.js
│ │ ├── error-pages.js
│ │ ├── http-utils.js
│ │ ├── misc-utils.js
│ │ └── status-codes.js
│ ├── openshift-origin-node-proxy.spec
│ ├── scripts
│ │ ├── bin
│ │ │ └── node-find-proxy-route-files
│ │ ├── init.d
│ │ │ └── openshift-node-web-proxy
│ │ └── systemd
│ │ ├── openshift-node-web-proxy.env
│ │ └── openshift-node-web-proxy.service
│ └── test
│ ├── client.js.todo
│ ├── test_client.js
│ └── wsapp.js
├── node-util
│ ├── LICENSE
│ ├── README-Idler.md
│ ├── bin
│ │ ├── oo-binary-deploy
│ │ ├── oo-config-eval
│ │ ├── oo-gear-registry
│ │ ├── oo-restore
│ │ ├── oo-snapshot
│ │ ├── rhc-list-ports
│ │ └── unidle_gear.sh
│ ├── conf
│ │ ├── oddjob
│ │ │ ├── oddjobd-restorer.conf
│ │ │ └── openshift-restorer.conf
│ │ ├── sysconfig
│ │ │ └── watchman
│ │ └── watchman
│ │ └── plugins.d
│ │ ├── env_plugin.rb
│ │ ├── gear_state_plugin.rb
│ │ ├── jboss_plugin.rb
│ │ ├── metrics_plugin.rb
│ │ ├── monitored_gear.rb
│ │ ├── oom_plugin.rb
│ │ ├── syslog_plugin.rb.disabled
│ │ └── throttler_plugin.rb
│ ├── init.d
│ │ ├── openshift-gears
│ │ └── openshift-watchman
│ ├── man8
│ │ ├── oo-accept-node.8
│ │ ├── oo-accept-node.txt2man
│ │ ├── oo-admin-cartridge.8
│ │ ├── oo-admin-cartridge.txt2man
│ │ ├── oo-admin-ctl-gears.8
│ │ ├── oo-admin-gear.8
│ │ ├── oo-auto-idler.8
│ │ ├── oo-auto-idler.txt2man
│ │ ├── oo-cartridge.8
│ │ ├── oo-cartridge.txt2man
│ │ ├── oo-httpd-singular.8
│ │ ├── oo-httpd-singular.txt2man
│ │ ├── oo-idler-stats.8
│ │ ├── oo-idler-stats.txt2man
│ │ ├── oo-init-quota.8
│ │ ├── oo-init-quota.txt2man
│ │ ├── oo-last-access.8
│ │ ├── oo-last-access.txt2man
│ │ ├── oo-list-access.8
│ │ ├── oo-restorecon.8
│ │ ├── oo-restorecon.txt2man
│ │ ├── oo-restorer-wrapper.sh.8
│ │ ├── oo-restorer-wrapper.sh.txt2man
│ │ ├── oo-restorer.8
│ │ ├── oo-restorer.txt2man
│ │ ├── oo-su.8
│ │ ├── oo-su.txt2man
│ │ ├── oo-watchman.8
│ │ ├── rhc-list-ports.8
│ │ └── rhc-list-ports.txt2man
│ ├── openshift-origin-node-util.spec
│ ├── sbin
│ │ ├── oo-accept-node
│ │ ├── oo-admin-cartridge
│ │ ├── oo-admin-ctl-gears
│ │ ├── oo-admin-gear
│ │ ├── oo-admin-repair-node
│ │ ├── oo-auto-idler
│ │ ├── oo-cartridge
│ │ ├── oo-httpd-singular.apache-2.3
│ │ ├── oo-httpd-singular.apache-2.4
│ │ ├── oo-idler-stats
│ │ ├── oo-init-quota
│ │ ├── oo-last-access
│ │ ├── oo-list-access
│ │ ├── oo-restorecon
│ │ ├── oo-restorer
│ │ ├── oo-restorer-wrapper.sh
│ │ ├── oo-su
│ │ └── oo-watchman
│ ├── services
│ │ ├── openshift-gears.service
│ │ └── openshift-watchman.service
│ └── www
│ └── html
│ ├── health.txt
│ └── restorer.php
├── openshift-console
│ ├── Gemfile
│ ├── README.rdoc
│ ├── Rakefile
│ ├── app
│ │ ├── assets
│ │ │ ├── images
│ │ │ │ ├── favicon-32.png
│ │ │ │ └── rails.png
│ │ │ ├── javascripts
│ │ │ │ └── application.js
│ │ │ └── stylesheets
│ │ │ └── application.css
│ │ ├── controllers
│ │ │ └── application_controller.rb
│ │ ├── helpers
│ │ │ └── application_helper.rb
│ │ ├── mailers
│ │ ├── models
│ │ └── views
│ │ └── layouts
│ │ └── application.html.erb
│ ├── config
│ │ ├── application.rb
│ │ ├── boot.rb
│ │ ├── compass.rb
│ │ ├── environment.rb
│ │ ├── environments
│ │ │ ├── development.rb
│ │ │ ├── production.rb
│ │ │ └── test.rb
│ │ ├── initializers
│ │ │ ├── auth.rb
│ │ │ ├── backtrace_silencers.rb
│ │ │ ├── inflections.rb
│ │ │ ├── mime_types.rb
│ │ │ ├── secret_token.rb
│ │ │ ├── session_store.rb
│ │ │ └── wrap_parameters.rb
│ │ ├── locales
│ │ │ └── en.yml
│ │ └── routes.rb
│ ├── config.ru
│ ├── etc
│ │ └── openshift
│ │ └── console.conf
│ ├── httpd
│ │ ├── conf.d
│ │ │ ├── README-KERB
│ │ │ ├── README-LDAP
│ │ │ ├── ldap-user-sample.ldiff
│ │ │ ├── openshift-origin-auth-remote-user-basic.conf.sample
│ │ │ ├── openshift-origin-auth-remote-user-kerberos.conf.sample
│ │ │ └── openshift-origin-auth-remote-user-ldap.conf.sample
│ │ ├── console-scl-ruby193.conf
│ │ ├── console.conf
│ │ ├── httpd.conf.apache-2.3
│ │ └── httpd.conf.apache-2.4
│ ├── init.d
│ │ └── openshift-console
│ ├── log
│ ├── openshift-origin-console.spec
│ ├── public
│ │ ├── 422.html
│ │ ├── favicon.ico
│ │ └── robots.txt
│ ├── script
│ │ ├── console_ruby
│ │ └── rails
│ ├── systemd
│ │ ├── openshift-console.env
│ │ └── openshift-console.service
│ ├── test
│ │ ├── fixtures
│ │ ├── functional
│ │ ├── integration
│ │ ├── performance
│ │ │ └── browsing_test.rb
│ │ ├── test_helper.rb
│ │ └── unit
│ └── vendor
│ ├── assets
│ │ ├── javascripts
│ │ └── stylesheets
│ └── plugins
├── pam_openshift
│ ├── AUTHORS
│ ├── COPYING
│ ├── ChangeLog
│ ├── Makefile
│ ├── README
│ ├── README.xml
│ ├── oo-namespace-init
│ ├── oo-namespace-init.8
│ ├── oo-namespace-init.txt2man
│ ├── pam_openshift.8
│ ├── pam_openshift.8.xml
│ ├── pam_openshift.c
│ └── pam_openshift.spec
├── plugin-examples
│ └── gear-placement
│ ├── COPYRIGHT
│ ├── Gemfile
│ ├── LICENSE
│ ├── README
│ ├── README.md
│ ├── Rakefile
│ ├── conf
│ │ └── openshift-origin-gear-placement.conf.example
│ ├── config
│ │ └── initializers
│ │ └── openshift-origin-gear-placement.rb
│ ├── lib
│ │ ├── gear_placement_engine.rb
│ │ ├── openshift
│ │ │ └── gear_placement_plugin.rb
│ │ └── openshift-origin-gear-placement.rb
│ ├── openshift-origin-gear-placement.gemspec
│ └── rubygem-openshift-origin-gear-placement.spec
├── plugins
│ ├── auth
│ │ ├── kerberos
│ │ │ ├── COPYRIGHT
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── app
│ │ │ │ ├── controllers
│ │ │ │ │ └── account_controller.rb
│ │ │ │ └── models
│ │ │ │ └── rest_account.rb
│ │ │ ├── conf
│ │ │ │ └── openshift-origin-auth-kerberos.conf.example
│ │ │ ├── config
│ │ │ │ ├── initializers
│ │ │ │ │ └── openshift-origin-auth-kerberos.rb
│ │ │ │ └── routes.rb
│ │ │ ├── doc
│ │ │ │ └── README
│ │ │ ├── lib
│ │ │ │ ├── kerberos_auth_engine.rb
│ │ │ │ ├── openshift
│ │ │ │ │ └── kerberos_auth_service.rb
│ │ │ │ └── openshift-origin-auth-kerberos.rb
│ │ │ ├── openshift-origin-auth-kerberos.gemspec
│ │ │ └── rubygem-openshift-origin-auth-kerberos.spec
│ │ ├── mongo
│ │ │ ├── COPYRIGHT
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── app
│ │ │ │ ├── controllers
│ │ │ │ │ └── account_controller.rb
│ │ │ │ └── models
│ │ │ │ ├── rest_account.rb
│ │ │ │ └── user_account.rb
│ │ │ ├── bin
│ │ │ │ └── oo-register-user
│ │ │ ├── conf
│ │ │ │ └── openshift-origin-auth-mongo.conf.example
│ │ │ ├── config
│ │ │ │ ├── initializers
│ │ │ │ │ └── openshift-origin-auth-mongo.rb
│ │ │ │ └── routes.rb
│ │ │ ├── doc
│ │ │ │ └── README
│ │ │ ├── lib
│ │ │ │ ├── mongo_auth_engine.rb
│ │ │ │ ├── openshift
│ │ │ │ │ └── mongo_auth_service.rb
│ │ │ │ └── openshift-origin-auth-mongo.rb
│ │ │ ├── openshift-origin-auth-mongo.gemspec
│ │ │ ├── rubygem-openshift-origin-auth-mongo.spec
│ │ │ └── test
│ │ │ ├── dummy
│ │ │ │ ├── Gemfile
│ │ │ │ ├── README
│ │ │ │ ├── Rakefile
│ │ │ │ ├── app
│ │ │ │ │ ├── controllers
│ │ │ │ │ │ └── application_controller.rb
│ │ │ │ │ ├── helpers
│ │ │ │ │ │ └── application_helper.rb
│ │ │ │ │ └── views
│ │ │ │ │ └── layouts
│ │ │ │ │ └── application.html.erb
│ │ │ │ ├── config
│ │ │ │ │ ├── application.rb
│ │ │ │ │ ├── boot.rb
│ │ │ │ │ ├── database.yml
│ │ │ │ │ ├── environment.rb
│ │ │ │ │ ├── environments
│ │ │ │ │ │ └── test.rb
│ │ │ │ │ ├── initializers
│ │ │ │ │ │ ├── backtrace_silencers.rb
│ │ │ │ │ │ ├── inflections.rb
│ │ │ │ │ │ ├── mime_types.rb
│ │ │ │ │ │ ├── secret_token.rb
│ │ │ │ │ │ └── session_store.rb
│ │ │ │ │ ├── locales
│ │ │ │ │ │ └── en.yml
│ │ │ │ │ └── routes.rb
│ │ │ │ ├── config.ru
│ │ │ │ ├── db
│ │ │ │ │ └── seeds.rb
│ │ │ │ ├── doc
│ │ │ │ │ └── README_FOR_APP
│ │ │ │ ├── lib
│ │ │ │ │ └── tasks
│ │ │ │ ├── public
│ │ │ │ │ ├── 404.html
│ │ │ │ │ ├── 422.html
│ │ │ │ │ ├── 500.html
│ │ │ │ │ ├── favicon.ico
│ │ │ │ │ ├── images
│ │ │ │ │ │ └── rails.png
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── javascripts
│ │ │ │ │ │ ├── application.js
│ │ │ │ │ │ ├── controls.js
│ │ │ │ │ │ ├── dragdrop.js
│ │ │ │ │ │ ├── effects.js
│ │ │ │ │ │ ├── prototype.js
│ │ │ │ │ │ └── rails.js
│ │ │ │ │ ├── robots.txt
│ │ │ │ │ └── stylesheets
│ │ │ │ ├── script
│ │ │ │ │ └── rails
│ │ │ │ ├── test
│ │ │ │ │ ├── performance
│ │ │ │ │ │ └── browsing_test.rb
│ │ │ │ │ └── test_helper.rb
│ │ │ │ └── vendor
│ │ │ │ └── plugins
│ │ │ ├── functional
│ │ │ │ └── account_controller_test.rb
│ │ │ └── test_helper.rb
│ │ └── remote-user
│ │ ├── COPYRIGHT
│ │ ├── Gemfile
│ │ ├── LICENSE
│ │ ├── README-KERB
│ │ ├── README-LDAP
│ │ ├── README.md
│ │ ├── Rakefile
│ │ ├── conf
│ │ │ ├── openshift-origin-auth-remote-user-basic.conf.sample
│ │ │ ├── openshift-origin-auth-remote-user-kerberos.conf.sample
│ │ │ ├── openshift-origin-auth-remote-user-ldap.conf.sample
│ │ │ └── openshift-origin-auth-remote-user.conf.example
│ │ ├── config
│ │ │ ├── initializers
│ │ │ │ └── openshift-origin-auth-remote-user.rb
│ │ │ └── routes.rb
│ │ ├── doc
│ │ │ └── README
│ │ ├── ldap-user-sample.ldif
│ │ ├── lib
│ │ │ ├── openshift
│ │ │ │ └── remote_user_auth_service.rb
│ │ │ ├── openshift-origin-auth-remote-user.rb
│ │ │ └── remote_user_auth_engine.rb
│ │ ├── openshift-origin-auth-remote-user.gemspec
│ │ ├── rubygem-openshift-origin-auth-remote-user.spec
│ │ └── test
│ │ ├── dummy
│ │ │ ├── Gemfile
│ │ │ ├── README
│ │ │ ├── Rakefile
│ │ │ ├── app
│ │ │ │ ├── controllers
│ │ │ │ │ └── application_controller.rb
│ │ │ │ ├── helpers
│ │ │ │ │ └── application_helper.rb
│ │ │ │ └── views
│ │ │ │ └── layouts
│ │ │ │ └── application.html.erb
│ │ │ ├── config
│ │ │ │ ├── application.rb
│ │ │ │ ├── boot.rb
│ │ │ │ ├── database.yml
│ │ │ │ ├── environment.rb
│ │ │ │ ├── environments
│ │ │ │ │ └── test.rb
│ │ │ │ ├── initializers
│ │ │ │ │ ├── backtrace_silencers.rb
│ │ │ │ │ ├── inflections.rb
│ │ │ │ │ ├── mime_types.rb
│ │ │ │ │ ├── secret_token.rb
│ │ │ │ │ └── session_store.rb
│ │ │ │ ├── locales
│ │ │ │ │ └── en.yml
│ │ │ │ └── routes.rb
│ │ │ ├── config.ru
│ │ │ ├── db
│ │ │ │ └── seeds.rb
│ │ │ ├── doc
│ │ │ │ └── README_FOR_APP
│ │ │ ├── lib
│ │ │ │ └── tasks
│ │ │ ├── public
│ │ │ │ ├── 404.html
│ │ │ │ ├── 422.html
│ │ │ │ ├── 500.html
│ │ │ │ ├── favicon.ico
│ │ │ │ ├── images
│ │ │ │ │ └── rails.png
│ │ │ │ ├── index.html
│ │ │ │ ├── javascripts
│ │ │ │ │ ├── application.js
│ │ │ │ │ ├── controls.js
│ │ │ │ │ ├── dragdrop.js
│ │ │ │ │ ├── effects.js
│ │ │ │ │ ├── prototype.js
│ │ │ │ │ └── rails.js
│ │ │ │ ├── robots.txt
│ │ │ │ └── stylesheets
│ │ │ ├── script
│ │ │ │ └── rails
│ │ │ ├── test
│ │ │ │ ├── performance
│ │ │ │ │ └── browsing_test.rb
│ │ │ │ └── test_helper.rb
│ │ │ └── vendor
│ │ │ └── plugins
│ │ ├── functional
│ │ │ └── authenticate_test.rb
│ │ ├── test_helper.rb
│ │ └── unit
│ │ └── broker_auth_test.rb
│ ├── container
│ │ ├── libvirt
│ │ │ ├── COPYRIGHT
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── conf
│ │ │ │ └── openshift-origin-container-libvirt.conf.example
│ │ │ ├── lib
│ │ │ │ ├── openshift
│ │ │ │ │ └── runtime
│ │ │ │ │ └── containerization
│ │ │ │ │ └── libvirt_container.rb
│ │ │ │ └── openshift-origin-container-libvirt.rb
│ │ │ ├── misc
│ │ │ │ └── gear-init
│ │ │ │ ├── Makefile
│ │ │ │ └── oo-gear-init.c
│ │ │ ├── openshift-origin-container-libvirt.gemspec
│ │ │ └── rubygem-openshift-origin-container-libvirt.spec
│ │ └── selinux
│ │ ├── COPYRIGHT
│ │ ├── Gemfile
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── Rakefile
│ │ ├── conf
│ │ │ └── openshift-origin-container-selinux.conf.example
│ │ ├── lib
│ │ │ ├── openshift
│ │ │ │ └── runtime
│ │ │ │ └── containerization
│ │ │ │ └── selinux_container.rb
│ │ │ └── openshift-origin-container-selinux.rb
│ │ ├── openshift-origin-container-selinux.gemspec
│ │ └── rubygem-openshift-origin-container-selinux.spec
│ ├── dns
│ │ ├── avahi
│ │ │ ├── COPYRIGHT
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── conf
│ │ │ │ └── openshift-origin-dns-avahi.conf.example
│ │ │ ├── config
│ │ │ │ └── initializers
│ │ │ │ └── openshift-origin-dns-avahi.rb
│ │ │ ├── lib
│ │ │ │ ├── avahi_dns_engine.rb
│ │ │ │ ├── openshift
│ │ │ │ │ └── avahi_plugin.rb
│ │ │ │ └── openshift-origin-dns-avahi.rb
│ │ │ ├── openshift-origin-dns-avahi.gemspec
│ │ │ └── rubygem-openshift-origin-dns-avahi.spec
│ │ ├── bind
│ │ │ ├── COPYRIGHT
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── conf
│ │ │ │ └── openshift-origin-dns-bind.conf.example
│ │ │ ├── config
│ │ │ │ └── initializers
│ │ │ │ └── openshift-origin-dns-bind.rb
│ │ │ ├── doc
│ │ │ │ ├── README.local_dns
│ │ │ │ └── examples
│ │ │ │ ├── 192.168.0.reverse.db
│ │ │ │ ├── Kexample.com.+157+37399.key
│ │ │ │ ├── Kexample.com.+157+37399.private
│ │ │ │ ├── dhclient-up-hooks
│ │ │ │ ├── dhclient.conf
│ │ │ │ ├── dhcpnamedforward.fc
│ │ │ │ ├── dhcpnamedforward.te
│ │ │ │ ├── example.com.db
│ │ │ │ └── named.conf
│ │ │ ├── lib
│ │ │ │ ├── bind_dns_engine.rb
│ │ │ │ ├── openshift
│ │ │ │ │ └── bind_plugin.rb
│ │ │ │ └── openshift-origin-dns-bind.rb
│ │ │ ├── openshift-origin-dns-bind.gemspec
│ │ │ └── rubygem-openshift-origin-dns-bind.spec
│ │ ├── nsupdate
│ │ │ ├── COPYRIGHT
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── conf
│ │ │ │ └── openshift-origin-dns-nsupdate.conf.example
│ │ │ ├── config
│ │ │ │ └── initializers
│ │ │ │ └── openshift-origin-dns-nsupdate.rb
│ │ │ ├── lib
│ │ │ │ ├── nsupdate_dns_engine.rb
│ │ │ │ ├── openshift
│ │ │ │ │ └── nsupdate_plugin.rb
│ │ │ │ └── openshift-origin-dns-nsupdate.rb
│ │ │ ├── openshift-origin-dns-nsupdate.gemspec
│ │ │ ├── rubygem-openshift-origin-dns-nsupdate.spec
│ │ │ └── spec
│ │ │ └── unit
│ │ │ └── openshift-origin-dns-nsupdate_spec.rb
│ │ └── route53
│ │ ├── COPYRIGHT
│ │ ├── Gemfile
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── Rakefile
│ │ ├── conf
│ │ │ └── openshift-origin-dns-route53.conf.example
│ │ ├── config
│ │ │ └── initializers
│ │ │ └── openshift-origin-dns-route53.rb
│ │ ├── lib
│ │ │ ├── openshift
│ │ │ │ └── route53_plugin.rb
│ │ │ ├── openshift-origin-dns-route53.rb
│ │ │ └── route53_dns_engine.rb
│ │ ├── openshift-origin-dns-route53.gemspec
│ │ ├── rubygem-openshift-origin-dns-route53.spec
│ │ └── spec
│ │ └── unit
│ │ ├── route53_mocked_spec.rb
│ │ └── route53_spec.rb
│ ├── frontend
│ │ ├── README.frontend_httpd_plugins.md
│ │ ├── apache-mod-rewrite
│ │ │ ├── COPYRIGHT
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── conf
│ │ │ │ └── openshift-origin-frontend-apache-mod-rewrite.conf.example
│ │ │ ├── httpd
│ │ │ │ ├── 000001_openshift_origin_node.conf
│ │ │ │ ├── frontend-mod-rewrite-https-template.erb
│ │ │ │ ├── openshift_route.include
│ │ │ │ └── openshift_route_logconf.include
│ │ │ ├── lib
│ │ │ │ ├── openshift
│ │ │ │ │ └── runtime
│ │ │ │ │ └── frontend
│ │ │ │ │ └── http
│ │ │ │ │ └── plugins
│ │ │ │ │ └── apache-mod-rewrite.rb
│ │ │ │ └── openshift-origin-frontend-apache-mod-rewrite.rb
│ │ │ ├── openshift-origin-frontend-apache-mod-rewrite.gemspec
│ │ │ ├── rubygem-openshift-origin-frontend-apache-mod-rewrite.spec
│ │ │ └── test
│ │ │ └── functional
│ │ │ └── apache_mod_rewrite_test.rb
│ │ ├── apache-vhost
│ │ │ ├── COPYRIGHT
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── conf
│ │ │ │ └── openshift-origin-frontend-apache-vhost.conf.example
│ │ │ ├── httpd
│ │ │ │ ├── 000001_openshift_origin_frontend_vhost.conf
│ │ │ │ ├── frontend-vhost-http-template.erb
│ │ │ │ ├── frontend-vhost-https-template.erb
│ │ │ │ └── openshift-vhost-logconf.include
│ │ │ ├── lib
│ │ │ │ ├── openshift
│ │ │ │ │ └── runtime
│ │ │ │ │ └── frontend
│ │ │ │ │ └── http
│ │ │ │ │ └── plugins
│ │ │ │ │ └── apache-vhost.rb
│ │ │ │ └── openshift-origin-frontend-apache-vhost.rb
│ │ │ ├── openshift-origin-frontend-apache-vhost.gemspec
│ │ │ ├── rubygem-openshift-origin-frontend-apache-vhost.spec
│ │ │ └── test
│ │ │ └── functional
│ │ │ └── apache_vhost_test.rb
│ │ ├── apachedb
│ │ │ ├── COPYRIGHT
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── conf
│ │ │ │ └── openshift-origin-frontend-apachedb.conf.example
│ │ │ ├── httpd
│ │ │ │ └── 000001_openshift_origin_node_servername.conf
│ │ │ ├── lib
│ │ │ │ ├── openshift
│ │ │ │ │ └── runtime
│ │ │ │ │ └── frontend
│ │ │ │ │ └── http
│ │ │ │ │ └── plugins
│ │ │ │ │ └── apachedb.rb
│ │ │ │ └── openshift-origin-frontend-apachedb.rb
│ │ │ ├── openshift-origin-frontend-apachedb.gemspec
│ │ │ ├── rubygem-openshift-origin-frontend-apachedb.spec
│ │ │ └── test
│ │ │ └── functional
│ │ │ ├── apachedb_test.rb
│ │ │ └── geardb_plugin_test.rb
│ │ ├── haproxy-sni-proxy
│ │ │ ├── COPYRIGHT
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── README.haproxy-sni-proxy.md
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── conf
│ │ │ │ └── openshift-origin-frontend-haproxy-sni-proxy.conf
│ │ │ ├── httpd
│ │ │ │ ├── sniproxy-cfg.erb
│ │ │ │ ├── sniproxy-listen.erb
│ │ │ │ ├── sniproxy-server.erb
│ │ │ │ └── sniproxy-sni.erb
│ │ │ ├── lib
│ │ │ │ ├── openshift
│ │ │ │ │ └── runtime
│ │ │ │ │ └── frontend
│ │ │ │ │ └── http
│ │ │ │ │ └── plugins
│ │ │ │ │ └── haproxy-sni-proxy.rb
│ │ │ │ └── openshift-origin-frontend-haproxy-sni-proxy.rb
│ │ │ ├── openshift-origin-frontend-haproxy-sni-proxy.gemspec
│ │ │ ├── rubygem-openshift-origin-frontend-haproxy-sni-proxy.spec
│ │ │ ├── scripts
│ │ │ │ ├── oo-rebuild-haproxy-sni-proxy
│ │ │ │ └── openshift-sni-proxy
│ │ │ └── test
│ │ │ └── functional
│ │ │ └── haproxy_sni_proxy_test.rb
│ │ └── nodejs-websocket
│ │ ├── COPYRIGHT
│ │ ├── Gemfile
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── Rakefile
│ │ ├── conf
│ │ │ └── openshift-origin-frontend-nodejs-websocket.conf.example
│ │ ├── lib
│ │ │ ├── openshift
│ │ │ │ └── runtime
│ │ │ │ └── frontend
│ │ │ │ └── http
│ │ │ │ └── plugins
│ │ │ │ └── nodejs-websocket.rb
│ │ │ └── openshift-origin-frontend-nodejs-websocket.rb
│ │ ├── openshift-origin-frontend-nodejs-websocket.gemspec
│ │ ├── rubygem-openshift-origin-frontend-nodejs-websocket.spec
│ │ └── test
│ │ └── functional
│ │ └── nodejs_websocket_functional_test.rb
│ ├── msg-broker
│ │ └── mcollective
│ │ ├── COPYRIGHT
│ │ ├── Gemfile
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── Rakefile
│ │ ├── conf
│ │ │ └── openshift-origin-msg-broker-mcollective.conf.example
│ │ ├── config
│ │ │ └── initializers
│ │ │ └── openshift-origin-msg-broker-mcollective.rb
│ │ ├── lib
│ │ │ ├── mcollective_msg_broker_engine.rb
│ │ │ ├── openshift
│ │ │ │ └── mcollective_application_container_proxy.rb
│ │ │ └── openshift-origin-msg-broker-mcollective.rb
│ │ ├── openshift-origin-msg-broker-mcollective.gemspec
│ │ └── rubygem-openshift-origin-msg-broker-mcollective.spec
│ ├── msg-node
│ │ └── mcollective
│ │ ├── facts
│ │ │ ├── openshift-facts
│ │ │ ├── openshift_facts.rb
│ │ │ └── update_yaml.rb
│ │ ├── openshift-origin-msg-node-mcollective.spec
│ │ └── src
│ │ └── openshift.rb
│ └── routing
│ └── activemq
│ ├── COPYRIGHT
│ ├── Gemfile
│ ├── LICENSE
│ ├── README
│ ├── README.md
│ ├── Rakefile
│ ├── conf
│ │ └── openshift-origin-routing-activemq.conf.example
│ ├── config
│ │ └── initializers
│ │ └── openshift-origin-routing-activemq.rb
│ ├── lib
│ │ ├── activemq_routing_engine.rb
│ │ ├── openshift
│ │ │ └── activemq_routing_plugin.rb
│ │ └── openshift-origin-routing-activemq.rb
│ ├── openshift-origin-routing-activemq.gemspec
│ └── rubygem-openshift-origin-routing-activemq.spec
├── port-proxy
│ ├── LICENSE
│ ├── bin
│ │ └── openshift-port-proxy-cfg
│ ├── config
│ │ └── port-proxy.cfg
│ ├── init-scripts
│ │ └── openshift-port-proxy
│ ├── openshift-origin-port-proxy.spec
│ └── systemd
│ ├── openshift-port-proxy
│ ├── openshift-port-proxy.env
│ └── openshift-port-proxy.service
├── rel-eng
│ ├── misc
│ │ └── convert_man_pages.sh
│ ├── packages
│ │ ├── avahi-cname-manager
│ │ ├── openshift-origin-broker
│ │ ├── openshift-origin-broker-util
│ │ ├── openshift-origin-cartridge-10gen-mms-agent
│ │ ├── openshift-origin-cartridge-abstract
│ │ ├── openshift-origin-cartridge-cron
│ │ ├── openshift-origin-cartridge-dependencies
│ │ ├── openshift-origin-cartridge-diy
│ │ ├── openshift-origin-cartridge-haproxy
│ │ ├── openshift-origin-cartridge-jbossas
│ │ ├── openshift-origin-cartridge-jbosseap
│ │ ├── openshift-origin-cartridge-jbossews
│ │ ├── openshift-origin-cartridge-jenkins
│ │ ├── openshift-origin-cartridge-jenkins-client
│ │ ├── openshift-origin-cartridge-mariadb
│ │ ├── openshift-origin-cartridge-mock
│ │ ├── openshift-origin-cartridge-mock-plugin
│ │ ├── openshift-origin-cartridge-mongodb
│ │ ├── openshift-origin-cartridge-mysql
│ │ ├── openshift-origin-cartridge-nodejs
│ │ ├── openshift-origin-cartridge-perl
│ │ ├── openshift-origin-cartridge-php
│ │ ├── openshift-origin-cartridge-phpmyadmin
│ │ ├── openshift-origin-cartridge-postgresql
│ │ ├── openshift-origin-cartridge-python
│ │ ├── openshift-origin-cartridge-ruby
│ │ ├── openshift-origin-cartridge-switchyard
│ │ ├── openshift-origin-console
│ │ ├── openshift-origin-logshifter
│ │ ├── openshift-origin-msg-common
│ │ ├── openshift-origin-msg-node-mcollective
│ │ ├── openshift-origin-node-proxy
│ │ ├── openshift-origin-node-util
│ │ ├── openshift-origin-port-proxy
│ │ ├── openshift-origin-util
│ │ ├── openshift-origin-util-scl
│ │ ├── pam_openshift
│ │ ├── rubygem-openshift-origin-admin-console
│ │ ├── rubygem-openshift-origin-auth-kerberos
│ │ ├── rubygem-openshift-origin-auth-mongo
│ │ ├── rubygem-openshift-origin-auth-remote-user
│ │ ├── rubygem-openshift-origin-common
│ │ ├── rubygem-openshift-origin-console
│ │ ├── rubygem-openshift-origin-container-selinux
│ │ ├── rubygem-openshift-origin-controller
│ │ ├── rubygem-openshift-origin-dns-avahi
│ │ ├── rubygem-openshift-origin-dns-bind
│ │ ├── rubygem-openshift-origin-dns-nsupdate
│ │ ├── rubygem-openshift-origin-dns-route53
│ │ ├── rubygem-openshift-origin-frontend-apache-mod-rewrite
│ │ ├── rubygem-openshift-origin-frontend-apache-vhost
│ │ ├── rubygem-openshift-origin-frontend-apachedb
│ │ ├── rubygem-openshift-origin-frontend-haproxy-sni-proxy
│ │ ├── rubygem-openshift-origin-frontend-nodejs-websocket
│ │ ├── rubygem-openshift-origin-msg-broker-mcollective
│ │ ├── rubygem-openshift-origin-node
│ │ └── rubygem-openshift-origin-routing-activemq
│ ├── releasers.conf
│ └── tito.props
├── rsyslog-plugin
│ ├── README.md
│ ├── mmopenshift
│ │ ├── Makefile.am
│ │ └── mmopenshift.c
│ └── rsyslog-openshift.patch
├── util
│ ├── oo-erb
│ ├── oo-exec-ruby
│ ├── oo-mco
│ ├── oo-ruby
│ └── openshift-origin-util.spec
└── util-scl
├── oo-erb
├── oo-exec-ruby
├── oo-mco
├── oo-ruby
└── openshift-origin-util-scl.spec
'밤을 지새다 > OpenShift Origin' 카테고리의 다른 글
OpenShift Origin 설치 트러블 슈팅: Node (0) | 2014.09.22 |
---|---|
OpenShift Node Host 설치 [1] - 작성 중 (0) | 2014.08.18 |
OpenShift Origin V3 (2) | 2014.08.14 |
ApplicationsController- create (0) | 2014.08.05 |
공부할 것들 (0) | 2014.07.28 |