Metadata-Version: 1.1
Name: kubeconfig
Version: 1.1.0
Summary: A simple wrapper around Kubernetes kubectl
Home-page: http://kubeconfig-python.readthedocs.io
Author: Greg Taylor
Author-email: greg@gctaylor.com
License: BSD
Description: kubeconfig
        ==========
        
        kubeconfig is a simple Python module for manipulating Kubernetes kubeconfig
        files.
        
        .. code-block:: py
        
            from kubeconfig import KubeConfig
        
            conf = KubeConfig()
            conf.set_context('new-context', cluster='other-cluster', user='my-user')
            conf.use_context('new-context')
            print(conf.view())
        
        Installing
        ----------
        
        .. code-block:: shell
        
            pip install kubeconfig
        
        Example usage cases
        -------------------
        
        * Generating configs for users
        * Tooling that manages switching between multiple clusters or users
        * Cycling credentials out in a config
        * Updating CA cert entries in your config
        
        Documentation
        -------------
        
        See the documentation_ for more details on usage.
        
        License
        -------
        
        kubeconfig is licensed under the BSD 3-Clause License.
        
        .. _documentation: http://kubeconfig-python.readthedocs.io
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development :: Libraries
