All Projects → borntyping → Sous Chef

borntyping / Sous Chef

A web frontend for the Chef server index

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Sous Chef

Chef Dk
DEPRECATED: A streamlined development and deployment workflow for Chef Infra platform.
Stars: ✭ 396 (+4850%)
Mutual labels:  chef
K8s Mastery
Repository for the article "Learn Kubernetes in Under 3 Hours"
Stars: ✭ 750 (+9275%)
Mutual labels:  flask-application
Fullstack
Full-stack DevOps demo
Stars: ✭ 19 (+137.5%)
Mutual labels:  chef
Food Recipe Cnn
food image to recipe with deep convolutional neural networks.
Stars: ✭ 448 (+5500%)
Mutual labels:  chef
Pentest Env
Pentest environment deployer (kali linux + targets) using vagrant and chef.
Stars: ✭ 610 (+7525%)
Mutual labels:  chef
Chef
Chef Infra, a powerful automation platform that transforms infrastructure into code automating how infrastructure is configured, deployed and managed across any environment, at any scale
Stars: ✭ 6,766 (+84475%)
Mutual labels:  chef
Java
Development repository for the java cookbook
Stars: ✭ 365 (+4462.5%)
Mutual labels:  chef
Choregraphie
Choregraphie offers primitive to coordinate convergence of chef resources.
Stars: ✭ 24 (+200%)
Mutual labels:  chef
Ohai
Ohai profiles your system and emits JSON
Stars: ✭ 641 (+7912.5%)
Mutual labels:  chef
Contextualise
Contextualise is a simple but effective tool particularly suited for organising information-heavy projects and activities consisting of unstructured and widely diverse data and information resources
Stars: ✭ 899 (+11137.5%)
Mutual labels:  flask-application
Aws
Development repository for the aws cookbook
Stars: ✭ 473 (+5812.5%)
Mutual labels:  chef
Nginx
Development repository for the nginx cookbook
Stars: ✭ 528 (+6500%)
Mutual labels:  chef
Chef Crowd
Chef cookbook to install Atlassian Crowd
Stars: ✭ 5 (-37.5%)
Mutual labels:  chef
Jenkins
Development repository for the jenkins cookbook
Stars: ✭ 416 (+5100%)
Mutual labels:  chef
Activemq
Development repository for activemq Chef Cookbook
Stars: ✭ 19 (+137.5%)
Mutual labels:  chef
Chef Os Hardening
This chef cookbook provides numerous security-related configurations, providing all-round base protection.
Stars: ✭ 386 (+4725%)
Mutual labels:  chef
Vagrant Lamp
My default LAMP development stack for Vagrant
Stars: ✭ 765 (+9462.5%)
Mutual labels:  chef
Intro To Apis Flask
Starter repository for the Introductions to API course
Stars: ✭ 26 (+225%)
Mutual labels:  flask-application
Whatis
Whatis bot server for Slack!
Stars: ✭ 22 (+175%)
Mutual labels:  flask-application
Chefspec
Write RSpec examples and generate coverage reports for Chef recipes!
Stars: ✭ 825 (+10212.5%)
Mutual labels:  chef

Sous-chef

.. image:: http://img.shields.io/pypi/v/sous-chef.svg :target: https://pypi.python.org/pypi/sous-chef :alt: Sous-chef on PyPI

.. image:: http://img.shields.io/pypi/l/sous-chef.svg :target: https://pypi.python.org/pypi/sous-chef :alt: Sous-chef on PyPI

.. image:: http://img.shields.io/travis/borntyping/sous-chef/master.svg :target: https://travis-ci.org/borntyping/sous-chef :alt: Travis-CI build status for Sous-chef

.. image:: https://img.shields.io/github/issues/borntyping/sous-chef.svg :target: https://github.com/borntyping/sous-chef/issues :alt: GitHub issues for Sous-chef

|

A web frontend for the Chef server index, displaying nodes, roles and environments, as well as data collected by Ohai plugins (in particular, installed package versions).

Installation

Install Sous-chef and Gunicorn with::

pip install 'sous-chef[deploy]'

Requirements ^^^^^^^^^^^^

Requires Flask_ and PyChef. Gunicorn is the simplest method of deployment, but is not a requirement (allowing alternate WSGI servers to be used). Optionally uses Flask Debug Toolbar_ using the debug application.

.. _Flask: http://flask.pocoo.org/ .. _PyChef: https://github.com/coderanger/pychef .. _Gunicorn: http://gunicorn.org/ .. _Flask Debug Toolbar: https://pypi.python.org/pypi/Flask-DebugToolbar

Compatibility ^^^^^^^^^^^^^

Targets Python 2.7, due to the dependency on PyChef_.

Usage

Run Sous-chef using Gunicorn_::

gunicorn 'sous_chef:create_app()'

Configuration ^^^^^^^^^^^^^

Sous-chef will read it's configuration from one of two places, depending on how it was installed::

# Global install
/usr/var/sous_chef-instance/config.py

# Virtualenv install
$VIRTUALENV/var/sous_chef-instance/config.py

An example configuration file might look like this::

# The URL of the Chef server
CHEF_URL = 'http://chef.example.com'

# The client name and key to use
CHEF_CLIENT = 'sous'
CHEF_KEY = '/usr/var/sous_chef-instance/sous.pem'

If these are not set, PyChef's autoconfigure function is used as a fallback, and will try and load it's configuration from ~/.chef/knife.rb or /etc/chef/client.rb.

Package versions ^^^^^^^^^^^^^^^^

Sous-chef will display package metadata from nodes if available. It expects this data to be in the following format::

"packages": {
	"<package_type>": {
		"<package_name>": {
			"version": "<package_version"
		},
		...
	},
	...
}

For example, an RPM Ohai plugin could set the following node attributes::

"packages": {
	"rpm": {
		"package-one": {
			"version": "0.1.0",
		},
		"package-two": {
			"version": "2.0.1",
		}
	}
}

Debug mode ^^^^^^^^^^

The application can be run in debug mode by using the create_debug_app function::

gunicorn 'sous_chef:create_debug_app()'

If the flask-debugtoolbar package is available, the DebugToolbar_ extension will be loaded and can be used to show debug information in a browser.

.. _DebugToolbar: http://flask-debugtoolbar.readthedocs.org/en/latest/

Contributing

Contributions are very welcome - issues and feature requests should use the github issue tracker_, and pull requests should be made against the develop branch.

Issues are assigned tags of easy, medium and hard, giving some indication of how easy a feature request should be to implement or how hard a bug will be to fix. Fixes or implementations for any unassigned issues are welcome.

Bear in mind that new functionality should be useful for all users of the application - features that can only be used with internal components or that require significant infrastructure beyond a Chef server are unlikely to be approved (though are still open to discussion).

.. _github issue tracker: https://github.com/datasift/sous-chef/issues

Code Style and Design ^^^^^^^^^^^^^^^^^^^^^

Python code should use the style from PEP8, and preferably pass all flake8 tests. Version numbers should use the Semantic Versioning_ specification, and are set in both setup.py and sous_chef/__init__.py.

As much functionality as possible should work 'out of the box' and run without needing explicit configuration - features that do require configuration to use should either fall back to an alternative or be off by default.

Optional integrations (such as the existing Flask DebugToolbar integration) should define requirements in extras_require instead of install_requires and ensure that they do not crash if the requirement is not present.

.. _PEP8: http://legacy.python.org/dev/peps/pep-0008/ .. _flake8: https://flake8.readthedocs.org/en/2.0/ .. _Semantic Versioning: http://semver.org/spec/v2.0.0.html

Licence

Sous-Chef is licensed under the MIT License.

This project includes copies of Bootstrap_ and jQuery_, both of which are also licensed under the MIT Licence.

.. _Bootstrap: http://getbootstrap.com/ .. _jQuery: http://jquery.com/

Copyright (c) 2014 DataSift [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Authors

sous-chef was written by Sam Clements <[email protected]>_ at DataSift <https://datasift.com>_.

.. image:: https://gravatar.com/avatar/8dd5661684a7385fe723b7e7588e91ee?s=40 .. image:: https://gravatar.com/avatar/a3a6d949b43b6b880ffb3e277a65f49d?s=40

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].