Metadata-Version: 2.1
Name: kubegpt
Version: 0.0.5
Summary: Using human language to interact with Kubernetes
Home-page: https://github.com/xeol-io/kubegpt
Author: Benji Visser
Author-email: benji@xeol.io
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# kubegpt

A command-line tool for using human language to interact with Kubernetes. Powered by OpenAI/GPT.

kubegpt will take your input like

```
kubegpt "Am I using GlusterFS as a storage class?"
```

It will generate a kubectl command to run to get information, read the results of the
command and then interpret the results. It will use your local kubectl config and context
to reach your k8s cluster.

```
kubectl get storageclass
```

An example of the output of the above command is:

```
$ kubegpt "Am I using GlusterFS as a storage class?"

> Entering new AgentExecutor chain...
 I need to use kubectl to query the storage class information.
Action: terminal
Action Input: kubectl get storageclass
Observation: NAME                 PROVISIONER          RECLAIMPOLICY   VOLUMEBINDINGMODE   ALLOWVOLUMEEXPANSION   AGE
hostpath (default)   docker.io/hostpath   Delete          Immediate           false                  14d

Thought: I can see the storage class is "hostpath" which is not GlusterFS.
Final Answer: No, you are not using GlusterFS as a storage class.

> Finished chain.
```

## Installation

```
pip install kubegpt
```

And then run

```
kubegpt "What kubernetes context am I using?"
```

## WARNING

Use at your own risk! We tell the OpenAI agent mutliple times to only run non-destructive
kubectl commands but this is not guaranteed. We are not responsible for any damage.
