Metadata-Version: 1.1
Name: kqueen
Version: 0.13
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.13.tar.gz
Description-Content-Type: UNKNOWN
Description: KQueen - Kubernetes cluster manager
        ===================================
        
        
        .. image:: https://travis-ci.org/Mirantis/kqueen.svg?branch=master
            :target: https://travis-ci.org/Mirantis/kqueen
        
        .. image:: https://badge.fury.io/py/kqueen.svg
            :target: https://badge.fury.io/py/kqueen
        
        .. image:: https://coveralls.io/repos/github/Mirantis/kqueen/badge.svg?branch=master
            :target: https://coveralls.io/github/Mirantis/kqueen?branch=master
        
        Overview
        --------
        
        More information about KQueen Architecture and use cases is described in `RATIONALE <RATIONALE.md>`_ file.
        
        Development
        -----------
        
        -  Bootstrap kqueen environment
        
        ::
        
            mkvirtualenv -p /usr/bin/python3 kqueen
            pip3 install -e ".[dev]"
            pip3 install --editable .
            # start etcd in container
            docker-compose up -d # start
            kqueen
        
        -  Clean etcd storage and prepare examples
        
        `devenv.py` will create few objects to provides basic developer environment. It will also try to download `kubeconfig` file for real cluster but it requires access to Mirantis VPN. However, it can be workarounded by creating file `kubeconfig_remote` in repository root and this file will be used instead of downloading it.
        
        ::
        
            etcdctl rm --recursive /kqueen
            ./devenv.py
        
        Demo environment
        ----------------
        
        - Make sure you can reach Jenkins server defined in `JENKINS_API_URL` variable in file `kqueen/config/prod.py`.
        - Run these commands to run Kqueen API and UI in containers.
        
        ::
        
            docker-compose -f docker-compose.yml -f docker-compose.demo.yml up
        
        - You can login using user `admin` and password `default`. Default username and password can be changed in `docker-compose.demo.yml` file before first start of API.
        
        
        Configuration
        -------------
        
        We load configuration from file ``config/dev.py`` by default and this
        can be configured by ``KQUEEN_CONFIG_FILE`` environment variable. Any
        environment variable matching name ``KQUEEN_*`` will be loaded and saved
        to configuration.
        
        Documentation
        -------------
        
        For full documenation please refer to
        `kqueen.readthedocs.io <http://kqueen.readthedocs.io>`__.
        
        .. |Build Status| image:: https://travis-ci.org/Mirantis/kqueen.svg?branch=master
           :target: https://travis-ci.org/Mirantis/kqueen
        .. |PyPI version| image:: https://badge.fury.io/py/kqueen.svg
           :target: https://badge.fury.io/py/kqueen
        .. |Coverage Status| image:: https://coveralls.io/repos/github/Mirantis/kqueen/badge.svg?branch=master
           :target: https://coveralls.io/github/Mirantis/kqueen?branch=master
        
        DEMOs
        -----
        
        **Generic KQueen Overview**
        
        .. image:: https://img.youtube.com/vi/PCAwCxPQc2A/0.jpg
           :target: https://www.youtube.com/watch?v=PCAwCxPQc2A&t=1s
        
        **AKS (Azure) in KQueen**
        
        .. image:: https://img.youtube.com/vi/xHydnJGcs2k/0.jpg
           :target: https://youtu.be/xHydnJGcs2k
        
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
