Metadata-Version: 2.0
Name: k8s
Version: 0.9.0
Summary: Python client library for the Kubernetes API
Home-page: https://github.com/fiaas/k8s
Author: FiaaS developers
Author-email: fiaas@googlegroups.com
License: Apache License
Description-Content-Type: UNKNOWN
Keywords: kubernetes fiaas
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Clustering
Classifier: Topic :: System :: Distributed Computing
Requires-Dist: six (==1.10.0)
Requires-Dist: requests (==2.13.0)
Requires-Dist: pyrfc3339 (==1.0)
Requires-Dist: cachetools (==2.0.1)
Provides-Extra: codacy
Requires-Dist: codacy-coverage; extra == 'codacy'
Provides-Extra: dev
Requires-Dist: tox (==2.7.0); extra == 'dev'
Requires-Dist: mock; extra == 'dev'
Requires-Dist: pytest-sugar; extra == 'dev'
Requires-Dist: pytest-html; extra == 'dev'
Requires-Dist: pytest-cov; extra == 'dev'
Requires-Dist: pytest-helpers-namespace; extra == 'dev'
Requires-Dist: pytest (==3.3.2); extra == 'dev'
Requires-Dist: gitpython; extra == 'dev'
Requires-Dist: prospector; extra == 'dev'
Provides-Extra: docs
Requires-Dist: Sphinx (>=1.6.3); extra == 'docs'
Provides-Extra: release
Requires-Dist: gitpython; extra == 'release'
Requires-Dist: twine; extra == 'release'

k8s - Python client library for the Kubernetes API
--------------------------------------------------

|Build Status| |Codacy Quality Badge| |Codacy Coverage Badge|

.. |Build Status| image:: https://semaphoreci.com/api/v1/fiaas/k8s/branches/master/badge.svg
    :target: https://semaphoreci.com/fiaas/k8s
.. |Codacy Quality Badge| image:: https://api.codacy.com/project/badge/Grade/cb51fc9f95464f22b6084379e88fad77
    :target: https://www.codacy.com/app/mortenlj/k8s?utm_source=github.com&utm_medium=referral&utm_content=fiaas/k8s&utm_campaign=badger
.. |Codacy Coverage Badge| image:: https://api.codacy.com/project/badge/Coverage/cb51fc9f95464f22b6084379e88fad77
    :target: https://www.codacy.com/app/mortenlj/k8s?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=fiaas/k8s&amp;utm_campaign=Badge_Coverage

Documentation
    https://k8s.readthedocs.io
Code
    https://github.com/fiaas/k8s

k8s is a python client library for Kubernetes developed as part of the FiaaS project at FINN.no, Norway's leading classifieds site. The library tries to provide an intuitive developer experience, rather than modelling the REST API directly. Our approach does not allow us to use Swagger to auto-generate a library that covers the entire API, but the parts we have implemented are (in our opinion) easier to work with than the client you get when using Swagger.

Check out the tutorial_ to find out how to use the library, or the `developer guide`_ to learn how to extend the library to cover parts of the API we haven't gotten around to yet.

.. _tutorial: http://k8s.readthedocs.io/en/latest/tutorial.html
.. _developer guide: http://k8s.readthedocs.io/en/latest/developer.html


Changes since last version
--------------------------

* `3bae5d5`_: Handle Field(dict) similar to other types
* `32b6e96`_: Add a few more volume types to Pod
* `de6d28b`_: Add support for more fields on ObjectMeta, in particular OwnerReference

.. _32b6e96: https://github.com/fiaas/k8s/commit/32b6e96
.. _3bae5d5: https://github.com/fiaas/k8s/commit/3bae5d5
.. _de6d28b: https://github.com/fiaas/k8s/commit/de6d28b

