Metadata-Version: 1.1
Name: kqueen
Version: 0.5
Summary: Kubernetes cluster orchestrator
Home-page: https://github.com/Mirantis/kqueen/
Author: Tomáš Kukrál
Author-email: tomas.kukral@6shore.net
License: MIT
Download-URL: https://github.com/Mirantis/kqueen/archive/v0.5.tar.gz
Description-Content-Type: UNKNOWN
Description: # KQueen - Kubernetes cluster manager
        
        [![Build Status](https://travis-ci.org/Mirantis/kqueen.svg?branch=master)](https://travis-ci.org/Mirantis/kqueen)
        [![PyPI version](https://badge.fury.io/py/kqueen.svg)](https://badge.fury.io/py/kqueen)
        [![Coverage Status](https://coveralls.io/repos/github/Mirantis/kqueen/badge.svg?branch=master)](https://coveralls.io/github/Mirantis/kqueen?branch=master)
        
        ## Development
        
        * Bootstrap environment
        
        ```
        mkvirtualenv -p /usr/bin/python3 kqueen
        pip3 install -r requirements.txt
        pip3 install --editable .
        docker-compose up -d
        kqueen
        ```
        
        * Clean etcd storage and prepare examples
        
        ```
        etcdctl rm --recursive /kqueen
        ./devenv.py
        ```
        
        * Prepare JS building environment
        
        ```
        npm install
        ```
        
        * Build static resources
        
        ```
        gulp build
        ```
        
        * Start local development server with auto-restart
        
        ```
        gulp dev
        ```
        
        
        ## Configuration
        
        We load configuration from file `config/dev.py` by default and this can be configured by `KQUEEN_CONFIG_FILE` environment varialbe.
        
        | Configuration option | Type | Default value | Description |
        | --- | --- | --- | --- |
        | `KQUEEN_CONFIG_FILE` | Environment variable | `config/dev.py` | Configuration file to load |
        
        ## Documentation
        
        For full documenation please refer to [kqueen.readthedocs.io](http://kqueen.readthedocs.io).
        
Platform: UNKNOWN
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
