Metadata-Version: 2.1
Name: ksv
Version: 0.1.7
Summary: ksv decodes/encodes entire Kubernetes secrets files
Home-page: https://github.com/metadave/ksv
Author: Dave Parfitt
Author-email: dparfitt@mozilla.com
License: Apache Software License 2.0
Keywords: ksv
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: Click (>=6.0)
Requires-Dist: pyyaml

ksv
===

 decodes/encodes entire Kubernetes secrets files

-  Free software: Apache Software License 2.0

Installation
------------

::

    pip install ksv
    # or pip3, ksv requires Python 3

Usage
-----

Decoding all secret values:

::

    ksv < some_secrets_file_with_base64_encoded_data_values.yaml

Encoding all secret values:

::

    ksv --encode < some_secrets_file_with_plaintext_data_values.yaml

Round trip:

::

    ksv < test.yaml | ksv --encode


Credits
-------

This package was created with
`Cookiecutter <https://github.com/audreyr/cookiecutter>`__ and the
`audreyr/cookiecutter-pypackage <https://github.com/audreyr/cookiecutter-pypackage>`__
project template.



=======
History
=======

0.1.0 (2018-02-21)
------------------

* First release on PyPI.


