kubify


Namekubify JSON
Version 9020.0.29 PyPI version JSON
download
home_pagehttps://github.com/willyguggenheim/kubify
SummaryRapid Testing Framework for Kubernetes
upload_time2023-03-11 20:14:16
maintainer
docs_urlNone
authorkubify
requires_python>=3.7
licenseBSD license
keywords kubify
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            dev toolkit for kubernetes multi-cloud multi-service

release targets
===============

* conda https://anaconda.org/kubify/kubify
* docker/podman https://hub.docker.com/repository/docker/willy0912/kubify
* pip/pypa/poerty https://pypi.org/project/kubify

.. |artifacts_release| image:: https://github.com/willyguggenheim/kubify/actions/workflows/docker-pypi-conda.yml/badge.svg?branch=main
   :target: https://hub.docker.com/repository/docker/willy0912/kubify
.. |docs_release| image:: https://readthedocs.org/projects/kubify-os/badge/?version=latest
   :target: https://kubify.readthedocs.io/en/latest/?version=latest

on-boarding
===========

1. ``make clouds``
2. ``kubfiy start-all``

welcome
=======

kubify os oss, version: 9020.0.29

getting started
===============

local
=======

.. code-block:: bash

   $ [pip|conda] install kubify
   $ kubify --up
   $ kubify --start-all
   $ cd services[][] && kubify --start
   $ kubify --down

compatible with cloud providers
    * aws
    * gcp
    * azure

compatible with devops tools
    * terraform
    * terraform cdk
    * cloudformation
    * serverless framework
    * helm and kustomize

"if it works on my computer, it will work in the cloud"

cloud
=====

.. code-block:: bash

   $ make clouds
   $ make clouds-delete

docs
====

1. https://kubify-os.readthedocs.io
2. CONTRIBUTING.rst
3. USAGE.rst

.. figure:: ./docs/img/README_md_imgs/kubify-arch.drawio.png
   :alt: TURN_KEY_DEVOPS_RAPID_TESTER

aws partner
===========

.. figure:: ./docs/img/README_md_imgs/AWS-Partner.jpeg
   :alt: AWSPARTNER

enjoy the fun

To use the python package
=========================

You can ``import kubify`` (we ship to PyPi), and then you can override
any folder (such as terraform or services folders) by having folder with
the same name in your repo.

See ``./examples/simple`` for Python Package usage example.

To run this repo directly
=========================

To contribute to Kubify Open Source (and I hope you do), then clone this
repo and:

1. ``make cloud cloud=[aws|gcp|azure]``
2. ``make local``
3. ``make local start-all``
4. ``make local [service]``

All the dependant services will start and will listen for code changes
as well. Efficiently edit the entire codebase.

To install directly on workstation
==================================

To install directly on your workstation (instead of just using the
container):

1. apple: ``make mac``
2. ubuntu, debian and other debian-based: ``make deb``
3. rhel, centos and other epel-based: ``make epel``

Environment Isolation
~~~~~~~~~~~~~~~~~~~~~

Security Minute: You should not give prod access to anyone (but devs
need to debug urgent issue in prod). Zero Trust, With No Data Access, yet Identical Env. How?

.. code:: bash

   cd services/example-node-complex-svc
   make local prod

What Just Happened?
===================

You are hot patching many services locally (and with the full real
environment) without access to data, but with the full real prod!
Kubernetes can be amazing, and it is, with Kubify..

Contributing Workflow Patterns
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

1. DevContainer
2. Invoke Python Directly (pull image if missing tools)
3. Tox (multi-python testing)
4. Install Directly and Invoke Python Directly


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/willyguggenheim/kubify",
    "name": "kubify",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "kubify",
    "author": "kubify",
    "author_email": "w@kubify.com",
    "download_url": "https://files.pythonhosted.org/packages/c2/92/a98d50c8e7e5dbd51fd12c28f37644b1ab687b053fbb087e2796eb5dd1dd/kubify-9020.0.29.tar.gz",
    "platform": null,
    "description": "dev toolkit for kubernetes multi-cloud multi-service\n\nrelease targets\n===============\n\n* conda https://anaconda.org/kubify/kubify\n* docker/podman https://hub.docker.com/repository/docker/willy0912/kubify\n* pip/pypa/poerty https://pypi.org/project/kubify\n\n.. |artifacts_release| image:: https://github.com/willyguggenheim/kubify/actions/workflows/docker-pypi-conda.yml/badge.svg?branch=main\n   :target: https://hub.docker.com/repository/docker/willy0912/kubify\n.. |docs_release| image:: https://readthedocs.org/projects/kubify-os/badge/?version=latest\n   :target: https://kubify.readthedocs.io/en/latest/?version=latest\n\non-boarding\n===========\n\n1. ``make clouds``\n2. ``kubfiy start-all``\n\nwelcome\n=======\n\nkubify os oss, version: 9020.0.29\n\ngetting started\n===============\n\nlocal\n=======\n\n.. code-block:: bash\n\n   $ [pip|conda] install kubify\n   $ kubify --up\n   $ kubify --start-all\n   $ cd services[][] && kubify --start\n   $ kubify --down\n\ncompatible with cloud providers\n    * aws\n    * gcp\n    * azure\n\ncompatible with devops tools\n    * terraform\n    * terraform cdk\n    * cloudformation\n    * serverless framework\n    * helm and kustomize\n\n\"if it works on my computer, it will work in the cloud\"\n\ncloud\n=====\n\n.. code-block:: bash\n\n   $ make clouds\n   $ make clouds-delete\n\ndocs\n====\n\n1. https://kubify-os.readthedocs.io\n2. CONTRIBUTING.rst\n3. USAGE.rst\n\n.. figure:: ./docs/img/README_md_imgs/kubify-arch.drawio.png\n   :alt: TURN_KEY_DEVOPS_RAPID_TESTER\n\naws partner\n===========\n\n.. figure:: ./docs/img/README_md_imgs/AWS-Partner.jpeg\n   :alt: AWSPARTNER\n\nenjoy the fun\n\nTo use the python package\n=========================\n\nYou can ``import kubify`` (we ship to PyPi), and then you can override\nany folder (such as terraform or services folders) by having folder with\nthe same name in your repo.\n\nSee ``./examples/simple`` for Python Package usage example.\n\nTo run this repo directly\n=========================\n\nTo contribute to Kubify Open Source (and I hope you do), then clone this\nrepo and:\n\n1. ``make cloud cloud=[aws|gcp|azure]``\n2. ``make local``\n3. ``make local start-all``\n4. ``make local [service]``\n\nAll the dependant services will start and will listen for code changes\nas well. Efficiently edit the entire codebase.\n\nTo install directly on workstation\n==================================\n\nTo install directly on your workstation (instead of just using the\ncontainer):\n\n1. apple: ``make mac``\n2. ubuntu, debian and other debian-based: ``make deb``\n3. rhel, centos and other epel-based: ``make epel``\n\nEnvironment Isolation\n~~~~~~~~~~~~~~~~~~~~~\n\nSecurity Minute: You should not give prod access to anyone (but devs\nneed to debug urgent issue in prod). Zero Trust, With No Data Access, yet Identical Env. How?\n\n.. code:: bash\n\n   cd services/example-node-complex-svc\n   make local prod\n\nWhat Just Happened?\n===================\n\nYou are hot patching many services locally (and with the full real\nenvironment) without access to data, but with the full real prod!\nKubernetes can be amazing, and it is, with Kubify..\n\nContributing Workflow Patterns\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n1. DevContainer\n2. Invoke Python Directly (pull image if missing tools)\n3. Tox (multi-python testing)\n4. Install Directly and Invoke Python Directly\n\n",
    "bugtrack_url": null,
    "license": "BSD license",
    "summary": "Rapid Testing Framework for Kubernetes",
    "version": "9020.0.29",
    "split_keywords": [
        "kubify"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "88ed0f74d81448548d401cc59fc684eab5a9288fda5605e3ec8f08a09f2cacc1",
                "md5": "483587e86f6f651176a292e7dd384114",
                "sha256": "598b706b6c92a9793305ab5c51c1fafacde78463e7818fcf92e0f4f082c3c44f"
            },
            "downloads": -1,
            "filename": "kubify-9020.0.29-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "483587e86f6f651176a292e7dd384114",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.7",
            "size": 1236169,
            "upload_time": "2023-03-11T20:14:14",
            "upload_time_iso_8601": "2023-03-11T20:14:14.695190Z",
            "url": "https://files.pythonhosted.org/packages/88/ed/0f74d81448548d401cc59fc684eab5a9288fda5605e3ec8f08a09f2cacc1/kubify-9020.0.29-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c292a98d50c8e7e5dbd51fd12c28f37644b1ab687b053fbb087e2796eb5dd1dd",
                "md5": "b492282a4076186613f1a3eec41b44b8",
                "sha256": "f906ec397e88fcf0168a4a411be19f8b378d936599b8981800dc5ab54a180115"
            },
            "downloads": -1,
            "filename": "kubify-9020.0.29.tar.gz",
            "has_sig": false,
            "md5_digest": "b492282a4076186613f1a3eec41b44b8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 16132039,
            "upload_time": "2023-03-11T20:14:16",
            "upload_time_iso_8601": "2023-03-11T20:14:16.768748Z",
            "url": "https://files.pythonhosted.org/packages/c2/92/a98d50c8e7e5dbd51fd12c28f37644b1ab687b053fbb087e2796eb5dd1dd/kubify-9020.0.29.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-03-11 20:14:16",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "willyguggenheim",
    "github_project": "kubify",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "kubify"
}
        
Elapsed time: 0.04439s