Metadata-Version: 2.1
Name: gefyra
Version: 0.8.4
Summary: Gefyra runs all developer machine side components of Gefyra's Kubernetes-based development infrastructure
Home-page: https://gefyra.dev
Keywords: Kubernetes,Development,Cloud-native
Author: Michael Schilonka
Author-email: michael@unikube.io
Requires-Python: >=3.8,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Build Tools
Requires-Dist: docker (>=5.0.3,<6.0.0)
Requires-Dist: kubernetes (>=19.15.0,<20.0.0)
Requires-Dist: tabulate (>=0.8.10,<0.9.0)
Project-URL: Documentation, https://gefyra.dev
Project-URL: Repository, https://github.com/gefyrahq/gefyra
Project-URL: issues, https://github.com/gefyrahq/gefyra/issues
Description-Content-Type: text/markdown

<p align="center">
  <img src="https://github.com/Schille/gefyra/raw/main/docs/static/img/logo.png" alt="Gefyra Logo"/>
</p>

# Gefyra
Gefyra gives Kubernetes-("cloud-native")-developers a completely new way of writing and testing their applications. 
Gone are the times of custom Docker-compose setups, Vagrants, custom scrips or other scenarios in order to develop (micro-)services
for Kubernetes.  

# Gefyra Client
The Gefyra client contains a library and a CLI to run Gefyra on a developmer machine. Its main tasks are installation of
the Gefyra Operator and the setup of the Docker network and the Cargo sidecar to prepare Gefyra's development 
infrastructure. For more information please go to: https://gefyra.dev

## Commands
- `up`: setup local development infrastructure
- `run`: deploy a new app container into the cluster
- `bridge`: intercept the traffic to a container that's running in the cluster and send it to the development container
- `unbridge`: remove active traffic intercepts and reset the cluster to its original state
- `down`: remove Gefyra's development infrastructure
- `list`: list running containers and active bridges
- `check`: check local system dependencies 
- `version`: print the current version and exit

## Run new app container in cluster
The Gefyra client can run a new app container in the Kubernetes cluster with `gefyra run ...`. 
A typical use case is a completely new application that doesn't have any deployed containers in the cluster yet.

Requirements:
- running local cluster or available remote cluster
- `kubectl` connection to development cluster is active
- a successful `gefyra up`

## Bridge a container
The Gefyra client can bridge (i.e. intercept) a container that is already running in the Kubernetes cluster with `gefyra bridge`.
The container needs to be specified and can be any deployed container of any pod.

Requirements:
- running local cluster or available remote cluster
- `kubectl` connection to development cluster is active
- successful `gefyra up`
- successful `gefyra run ...`

# More Information
Find more information and issues on Github: https://github.com/gefyrahq/gefyra
