kuba 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- kuba-0.1.0/PKG-INFO +50 -0
- kuba-0.1.0/README.md +36 -0
- kuba-0.1.0/kuba/__init__.py +0 -0
- kuba-0.1.0/kuba/cli.py +3613 -0
- kuba-0.1.0/pyproject.toml +18 -0
kuba-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: kuba
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: The kuba-mazing kubectl companion
|
|
5
|
+
Author: Hunter Gatewood
|
|
6
|
+
Author-email: hgatewood@gmail.com
|
|
7
|
+
Requires-Python: >=3.12,<4.0
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
10
|
+
Requires-Dist: click (>=8.0.0,<9.0.0)
|
|
11
|
+
Requires-Dist: pyyaml (>=6.0,<7.0)
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# Kuba
|
|
15
|
+
|
|
16
|
+
The kuba-amazing kubectl companion with [fzf](https://github.com/junegunn/fzf), [fx](https://github.com/antonmedv/fx), [aliases](https://github.com/ahmetb/kubectl-aliases), and more!
|
|
17
|
+
|
|
18
|
+
<p align="center"><img src="https://raw.githubusercontent.com/hcgatewood/kuba/main/assets/logo_transparent_purple.png" alt="Kuba logo" width="300"/></p>
|
|
19
|
+
|
|
20
|
+
## Features
|
|
21
|
+
|
|
22
|
+
<p align="center"><img src="https://raw.githubusercontent.com/hcgatewood/kuba/main/assets/demo.gif" alt="Kuba demo" width="1000"/></p>
|
|
23
|
+
|
|
24
|
+
- ☁️ **Fuzzy commands** like get and describe
|
|
25
|
+
- 🧠 **Guess pod containers** automagically
|
|
26
|
+
- ✈️ **Cross namespaces and clusters** in one command
|
|
27
|
+
- ⚡ **Cut down on keystrokes** with an alias language
|
|
28
|
+
- 🧪 **Simulate scheduling** without the scheduler
|
|
29
|
+
- 🔁 **And lots more**!
|
|
30
|
+
|
|
31
|
+
## Install
|
|
32
|
+
|
|
33
|
+
Quick-install:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
pip install kuba
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Kuba makes use of the following tools you'll likely want to install as well: [fzf](https://github.com/junegunn/fzf#installation), [fx](https://fx.wtf/install), and [krew](https://krew.sigs.k8s.io/docs/user-guide/setup/install) for [stern](https://github.com/stern/stern) and [lineage](https://github.com/tohjustin/kube-lineage). On macOS, you can install these tools with [Homebrew](https://brew.sh/):
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
brew install fzf fx krew && kubectl krew install stern lineage
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Usage
|
|
46
|
+
|
|
47
|
+
Start by using `kuba get` and `kuba describe` as a ~drop-in replacements for `kubectl get` and `kubectl describe`.
|
|
48
|
+
|
|
49
|
+
Then check out the help pages for next steps, including using the alias language.
|
|
50
|
+
|
kuba-0.1.0/README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# Kuba
|
|
2
|
+
|
|
3
|
+
The kuba-amazing kubectl companion with [fzf](https://github.com/junegunn/fzf), [fx](https://github.com/antonmedv/fx), [aliases](https://github.com/ahmetb/kubectl-aliases), and more!
|
|
4
|
+
|
|
5
|
+
<p align="center"><img src="https://raw.githubusercontent.com/hcgatewood/kuba/main/assets/logo_transparent_purple.png" alt="Kuba logo" width="300"/></p>
|
|
6
|
+
|
|
7
|
+
## Features
|
|
8
|
+
|
|
9
|
+
<p align="center"><img src="https://raw.githubusercontent.com/hcgatewood/kuba/main/assets/demo.gif" alt="Kuba demo" width="1000"/></p>
|
|
10
|
+
|
|
11
|
+
- ☁️ **Fuzzy commands** like get and describe
|
|
12
|
+
- 🧠 **Guess pod containers** automagically
|
|
13
|
+
- ✈️ **Cross namespaces and clusters** in one command
|
|
14
|
+
- ⚡ **Cut down on keystrokes** with an alias language
|
|
15
|
+
- 🧪 **Simulate scheduling** without the scheduler
|
|
16
|
+
- 🔁 **And lots more**!
|
|
17
|
+
|
|
18
|
+
## Install
|
|
19
|
+
|
|
20
|
+
Quick-install:
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
pip install kuba
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Kuba makes use of the following tools you'll likely want to install as well: [fzf](https://github.com/junegunn/fzf#installation), [fx](https://fx.wtf/install), and [krew](https://krew.sigs.k8s.io/docs/user-guide/setup/install) for [stern](https://github.com/stern/stern) and [lineage](https://github.com/tohjustin/kube-lineage). On macOS, you can install these tools with [Homebrew](https://brew.sh/):
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
brew install fzf fx krew && kubectl krew install stern lineage
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Usage
|
|
33
|
+
|
|
34
|
+
Start by using `kuba get` and `kuba describe` as a ~drop-in replacements for `kubectl get` and `kubectl describe`.
|
|
35
|
+
|
|
36
|
+
Then check out the help pages for next steps, including using the alias language.
|
|
File without changes
|