https://github.com/jonnydgreen/ktool
A simplified toolkit for kubernetes
https://github.com/jonnydgreen/ktool
kubectl kubernetes toolkit
Last synced: 11 months ago
JSON representation
A simplified toolkit for kubernetes
- Host: GitHub
- URL: https://github.com/jonnydgreen/ktool
- Owner: jonnydgreen
- License: mit
- Created: 2019-04-04T21:52:45.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-21T17:09:55.000Z (over 6 years ago)
- Last Synced: 2025-01-10T15:35:00.337Z (about 1 year ago)
- Topics: kubectl, kubernetes, toolkit
- Language: Go
- Homepage:
- Size: 24.5 MB
- Stars: 3
- Watchers: 0
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ktool CLI
A CLI that calls common kubernetes commands to make managing it easier.
## Install
```bash
git clone https://github.com/projectjudge/ktool.git
cp ktool/bin/ktool /ktool
```
Or
```bash
go get github.com/projectjudge/ktool
```
## Usage
Open a new pane/terminal and run:
```shell
$ ktool -h
Ktool is a simplified kubectl
Usage:
ktool [flags]
ktool [command]
Available Commands:
a Watch all the pods in a k8s cluster
help Help about any command
l Watch a pods logs
Flags:
-h, --help help for ktool
Use "ktool [command] --help" for more information about a command.
```
## Devving
### Single build
```bash
./build.sh
```
### Watcher build
```bash
gomon **/*.go -- go build -o bin/ktool .
```