Metadata-Version: 2.4
Name: kgrok
Version: 0.1.5
Summary: forward local processes into k8s cluster
Author: Daniel Golding
License-Expression: MIT
Project-URL: Homepage, https://github.com/cakemanny/kgrok
Project-URL: Repository, https://github.com/cakemanny/kgrok.git
Keywords: kubernetes,proxy
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: Proxy Servers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: click
Requires-Dist: lightkube
Requires-Dist: trio
Dynamic: license-file
Dynamic: requires-dist

# Kgrok

## Quick Start

```
kgrok my-svc localhost:8080
```

We assume you have a service already listening locally on port 8080
and you have your `kubectl` context configured for the cluster you want to
listen receive traffic from.


## Installation

Using [pipx] might be the most reliable.

```
pipx install kgrok
```

[pipx]: https://pipx.pypa.io/stable/

If you are however already in a Python 3.12 virtual environment, or inside
a container with pip, you can probably get away with it.

```
python3 -m pip install kgrok
```
